/* ========================================
   ZycoSoft - Modern Futuristic Design
   Inspired by SciFlare's aesthetic
   ======================================== */

/* ========================================
   CSS Variables & Theme System
   ======================================== */
:root {
  /* Primary Colors - Electric Blue/Cyan Theme */
  --primary-color: #127ac1;
  --primary-dark: #0099cc;
  --primary-light: #33ddff;

  /* Secondary Colors - Purple Accent */
  --secondary-color: #6c5ce7;
  --secondary-dark: #5443c7;
  --secondary-light: #8b7aee;

  /* Accent Colors */
  --accent-color: #ff6b6b;
  --accent-success: #00ff88;
  --accent-warning: #ffd93d;

  /* Neutral Colors - Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a6a;
  --text-muted: #8a8aa0;
  --border-color: #e0e0e8;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #127ac1 0%, #146197 100%);
  --gradient-secondary: linear-gradient(135deg, #6c5ce7 0%, #ff6b6b 100%);
  --gradient-overlay: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.9) 0%,
    rgba(108, 92, 231, 0.9) 100%
  );

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);

  /* Typography */
  --font-primary: "Urbanist", sans-serif;
  --font-heading: "Red Hat Display", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 2rem;

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

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

  /* Container */
  --container-max-width: 1400px;
}

/* Dark Theme */
body.dark-theme {
  --bg-primary: #0f0f1e;
  --bg-secondary: #1a1a2e;
  --bg-tertiary: #25253e;
  --text-primary: #ffffff;
  --text-secondary: #b8b8d0;
  --text-muted: #8a8aa0;
  --border-color: #2a2a3e;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.7);
}

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

/* html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; 
  font-size: 16px;
} */

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition:
    background-color var(--transition-base),
    color var(--transition-base);
  padding-top: 73px; /* Height of fixed navbar */
}

/* Remove padding for pages with hero sections that handle it themselves */
body.hero-page {
  padding-top: 0;
}
.nav-wrapper {
  padding: 10px 0px;
}
/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--spacing-sm);
}

p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

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

/* ========================================
   Container & Layout
   ======================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
  position: relative;
  z-index: 1;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
}

body.dark-theme .navbar.scrolled {
  background: rgba(15, 15, 30, 0.95);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: var(--spacing-sm) 0; */
}

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

.logo-text {
  color: var(--text-primary);
}

.logo-accent {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  position: relative;
  z-index: 1001; /* Higher than mega menu to keep nav items visible */
}

.mega-menu-tab-title p {
  margin-bottom: 0;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  z-index: 1001; /* Ensure nav links are always visible */
  padding: 0.5rem 0;
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all var(--transition-base);
}

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

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

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

/* ===========================================
   Mega Menu Styles
   =========================================== */
.banner-about {
  height: 450px !important;
}
.banner-about .container {
  height: 450px !important;
}
.banner-about h1.main-heading-2 {
  font-size: 40px;
}
.mega-menu-item {
  position: relative;
}

.mega-arrow {
  font-size: 0.7rem;
  margin-left: 0.35rem;
  transition: transform var(--transition-base);
}

/* .mega-menu-item:hover .mega-arrow {
  transform: rotate(180deg);
} */

/* .mega-menu {
  position: absolute;

  left: 50%;
  transform: translateX(-60%);
  width: 1350px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  
  margin-top: 1rem;
  z-index: 999;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
} */
/* base state stays hidden */
/* .mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-60%);
  width: 1350px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  margin-top: 1rem;
  z-index: 999;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
} */
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  /* transform: translateX(-60%); */
  width: 100%;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  margin-top: 1rem;
  z-index: 999;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
}
/* REMOVE or comment out this, since mega is no longer inside li */
/* .mega-menu-item:hover .mega-menu { ... } */

/* new: opened state (desktop) */
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
  animation: megaMenuFadeIn 0.3s ease;
  display: block;
}

/* Mobile – override previous .mega-menu-item.active .mega-menu rules */

@media (max-width: 968px) {
  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: var(--bg-secondary);
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease;
    opacity: 0;
    position: relative; /* Keep in document flow */
    z-index: auto; /* Don't stack above other nav items */
    display: none;
  }
  .navbar {
    max-height: 100vh !important;
  }
  /* instead of .mega-menu-item.active .mega-menu */
  .mega-menu.is-open {
    /* Reduced from 70vh to leave room for other nav items */
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    overflow-y: auto; /* Enable scrolling on mobile */
    overflow-x: hidden;
    position: relative;
    display: block;
    width: 100%; /* Keep in document flow */
  }

  /* Custom scrollbar styling for mega menu on mobile */
  .mega-menu.is-open::-webkit-scrollbar {
    width: 6px;
  }

  .mega-menu.is-open::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
  }

  .mega-menu.is-open::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }

  .mega-menu.is-open::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
  }

  /* Ensure mega menu tabs content can scroll on mobile */
  .mega-menu-tabs.is-open {
    max-height: 100vh; /* Reduced from 70vh */
    overflow-y: auto;
    overflow-x: hidden;
    position: relative; /* Keep in flow */
  }
}
.mega-menu-small {
  width: 700px;
}

.mega-menu-compact {
  width: 400px;
}

/* .mega-menu-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
} */

.mega-menu-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--spacing-md);
  padding: 15px;
}

.mega-menu-small .mega-menu-container {
  grid-template-columns: 1fr 1fr auto;
}

.mega-menu-compact .mega-menu-container {
  grid-template-columns: 1fr;
  padding: 15px;
}

.mega-menu-section {
  min-width: 0;
}

.mega-menu-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* .mega-menu-list li {
  margin-bottom: 0.25rem;
} */

.mega-menu-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.2rem;
  border-radius: 5px;
  transition: all var(--transition-base);
  color: var(--text-primary);
  padding: 6px;
  padding-left: 15px;
}

.mega-menu-link:hover {
  background: var(--bg-secondary);
  transform: translateX(5px);
  padding: 6px;
}
.mega-menu-tab-title i {
  margin-right: 8px;
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s ease;
  padding: 7px;
  /* background-color: #1A65AF; */
  color: #000000;
  border-radius: 5px;
}

.mega-menu-tab-title:hover i,
.mega-menu-tab-title.active i {
  opacity: 1;
  transform: scale(1.1);
  /* background-color: #ffffff; */
  color: #264e77;
}
.mega-menu-link i {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.mega-menu-link div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mega-link-title {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-primary);
  display: block;
}

.mega-link-desc {
  font-size: 0.813rem;
  color: var(--text-muted);
  display: block;
}

.mega-menu-featured {
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  color: #ffffff;
}

.mega-featured-card {
  text-align: left;
}

.mega-featured-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.mega-featured-card h5 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.mega-featured-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.mega-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mega-featured-link:hover {
  text-decoration: none;
}

.mega-featured-link i {
  transition: transform var(--transition-base);
}

.mega-featured-link:hover i {
  transform: translateX(3px);
}

/* Mega Menu Animation */
@keyframes megaMenuFadeIn {
  from {
    opacity: 0;
    /* transform: translateY(-10px); */
    /* transform: translateX(-50%) translateY(-10px); */
  }
  to {
    opacity: 1;
    /* transform: translateY(0); */
  }
}

.mega-menu-item:hover .mega-menu {
  animation: megaMenuFadeIn 0.3s ease;
}

/* Mobile Mega Menu Styles */
@media (max-width: 968px) {
  .mega-menu {
    /* position: static; */
    width: 100%;
    transform: none;
    margin-top: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mega-menu-item.active .mega-menu {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
  }

  .mega-menu-container {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .mega-menu-small .mega-menu-container,
  .mega-menu-compact .mega-menu-container {
    grid-template-columns: 1fr;
  }

  .mega-menu-featured {
    margin-top: var(--spacing-md);
  }

  .mega-menu-link:hover {
    transform: none;
  }

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

  .mega-menu-item.active .mega-arrow {
    transform: rotate(180deg);
  }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

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

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

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

/* ========================================
   Theme Toggle
   ======================================== */
.theme-toggle {
  display: none !important;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: all var(--transition-base);
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-to-top {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  margin-bottom: 10px;
}

.scroll-to-top:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

/* ========================================
   Hero Section
   ======================================== */
/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  /* background: linear-gradient(135deg, #f5e6ff 0%, #e0f2fe 50%, #fce7f3 100%); */
  background-image: url("../images/banners.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 100px 80px;
}

/* .gradient-blob {
  position: absolute;
  top: -25%;
  right: -15%;
  width: 900px;
  height: 900px;
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 50%, #8b5cf6 100%);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
} */

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.content-nav {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 35px;
  margin: 0;
  margin-bottom: 80px;
  flex-wrap: wrap;
  width: 30%;
}

.content-nav a {
  color: rgba(0, 0, 0, 0.4);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 8px;
}

.content-nav a.active,
.content-nav a:hover {
  color: #000;
}

.content-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}

.hero-content {
  position: relative;
  z-index: 10;
  /* max-width: 1200px; */
  /* text-align: center; */
}

.hero-title {
  font-size: 72px;
  line-height: 1.1;
  /* margin-bottom: 40px; */
}

.hero-title .light {
  font-weight: 300;
  font-style: italic;
  display: block;
  color: #1e293b;
}

.hero-title .bold {
  font-weight: 900;
  font-size: 200px;
  display: block;
  letter-spacing: -3px;
  color: #0a0e27;
}

/* .typing-container {
  margin: 40px 0;
} */

.typing-text {
  font-size: 48px;
  font-weight: 700;
  color: #06b6d4;
  display: inline-block;
  /* min-height: 70px; */
}
h1.hero-title {
  margin-bottom: 0;
}
.cursor {
  display: inline-block;
  width: 3px;
  height: 50px;
  background: #06b6d4;
  margin-left: 5px;
  animation: blink 0.7s infinite;
  vertical-align: middle;
}

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

.hero-description {
  font-size: 20px;
  line-height: 1.8;
  color: #000000;
  max-width: 700px;
  margin: 30px 0 50px 0;
}

.cta-button {
  background: #000;
  color: white;
  border: none;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  position: absolute;
  right: 0;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-button::after {
  content: "→";
  font-size: 20px;
}

.call-card {
  position: absolute;
  top: 120px;
  right: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 20;
  transition: all 0.3s;
}

.call-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.call-icon {
  background: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.call-text strong {
  display: block;
  color: #0a0e27;
  font-size: 15px;
  margin-bottom: 5px;
}

.call-text span {
  color: #10b981;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Animated SVG Container */
.hero-animation {
  position: absolute;
  right: 0;
  top: 25%;
  transform: translateX(-80%) translateY(-275px);
  width: 500px;
  /* height: 500px; */
  z-index: 15;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .dropdown {
    min-width: 500px;
  }

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

  .hero-title .bold {
    font-size: 100px;
  }

  .hero-animation {
    right: 40px;
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    padding: 15px 40px;
  }

  .main-nav.scrolled {
    width: 100%;
    left: 0;
    border-radius: 0;
  }

  .nav-links {
    gap: 25px;
  }

  .hero-section {
    padding: 80px 40px;
  }

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

  .hero-title .bold {
    font-size: 80px;
  }

  .typing-text {
    font-size: 36px;
  }

  .call-card {
    top: 80px;
    right: 40px;
  }

  .dropdown {
    min-width: 450px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .main-nav {
    padding: 15px 20px;
    position: relative;
  }

  .nav-center {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-center.mobile-active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: flex-start;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-links a {
    padding: 15px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .has-dropdown > a {
    justify-content: space-between;
  }

  .dropdown {
    position: static !important;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    padding: 15px 0 15px 20px;
    margin-top: 0;
    display: none;
    box-shadow: none;
    border-radius: 0;
    background: #f8fafc;
  }

  .dropdown.active {
    display: grid;
    opacity: 1;
    visibility: visible;
  }

  .dropdown::before {
    display: none;
  }

  .dropdown-item {
    padding: 12px 0;
  }

  .dropdown-item h3 {
    font-size: 15px;
  }

  .dropdown-item p {
    font-size: 12px;
  }

  .dropdown-promo {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
    margin-top: 10px;
  }

  .dropdown-promo-content h4 {
    font-size: 18px;
  }

  .nav-buttons {
    width: 100%;
    flex-direction: column;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
  }

  .btn-outline,
  .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-section {
    padding: 60px 20px;
    min-height: auto;
  }

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

  .hero-title .bold {
    font-size: 56px;
  }

  .typing-text {
    font-size: 28px;
  }

  .cursor {
    height: 35px;
  }

  .hero-description {
    font-size: 16px;
  }

  .call-card {
    position: static;
    margin-bottom: 40px;
    width: 100%;
    justify-content: center;
  }

  .content-nav {
    gap: 20px;
  }

  .hero-animation {
    display: none;
  }
  .content-nav {
    width: 100%;
  }
}
.content-nav .swiper-slide {
  width: auto;
  padding: 10px 22px;
  border-radius: 30px;
  background: #f5f5f5;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.swiper {
  margin-left: 0 !important;
}
.content-nav .swiper-slide.active,
.content-nav .swiper-slide:hover {
  background: #000;
  color: #fff;
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-color);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: var(--spacing-sm);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.card-description {
  color: #000;
  line-height: 1.7;
}

/* ========================================
   Grid Layouts
   ======================================== */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

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

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

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-subtitle {
  font-size: 13px;
  color: #0b0b0b;
  font-weight: 400;
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  /* letter-spacing: 2px; */
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  background: #f1efef;
  border-radius: 20px;
}

.section-title {
  font-size: 42px;
  margin-bottom: var(--spacing-sm);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ========================================
   Service Cards
   ======================================== */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* ========================================
   Portfolio Cards
   ======================================== */
.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.portfolio-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-md);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: none;
}
.portfolio-card.aos-init.aos-animate h3 {
  font-size: 20px;
}
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-title {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.portfolio-category {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonial-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  border: 1px solid var(--border-color);
}

.testimonial-content {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-position {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

/* ========================================
   Home Testimonials
   ======================================== */
.home-testimonial-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: var(--spacing-xl) 0;
}

.home-testimonial-header {
  max-width: 760px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

.home-testimonial-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.08);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-testimonial-header h2 {
  margin: var(--spacing-sm) 0 var(--spacing-xs);
}

.home-testimonial-header p {
  color: var(--text-secondary);
}

.home-testimonial-swiper {
  position: relative;
  padding: 0 52px var(--spacing-lg);
}

.home-testimonial-swiper .swiper-slide {
  height: auto;
}

.home-testimonial-card {
  height: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-md);
}

.home-testimonial-quote {
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.home-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.home-testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-testimonial-author h3 {
  margin: 0;
  font-size: 0.95rem;
}

.home-testimonial-author span {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.home-testimonial-pagination.swiper-pagination {
  bottom: 0 !important;
}

.home-testimonial-pagination .swiper-pagination-bullet {
  background: var(--text-secondary);
  opacity: 0.35;
}

.home-testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

.home-testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 3;
}

.home-testimonial-nav:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.home-testimonial-prev {
  left: 0;
}

.home-testimonial-next {
  right: 0;
}

@media (max-width: 992px) {
  .home-testimonial-swiper {
    padding: 0 40px var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .home-testimonial-section {
    padding: var(--spacing-lg) 0;
  }

  .home-testimonial-swiper {
    padding: 0 0 var(--spacing-lg);
  }

  .home-testimonial-nav {
    display: none;
  }
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.footer-tagline {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.footer-column h4 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

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

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a,
.footer-contact li {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
}

.footer-contact i {
  color: var(--primary-color);
  width: 20px;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

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

.social-links a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
}

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

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

.footer-bottom-links {
  display: flex;
  gap: var(--spacing-md);
}

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

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

/* ========================================
   Stats Section
   ======================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

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

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 968px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .nav-menu {
    position: fixed;
    top: 100%;
    left: -100%;
    width: 90%;
    height: calc(100vh - 73px);
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--spacing-md) 0;
    transition: left var(--transition-base);
    border-top: 1px solid var(--border-color);
    overflow-y: auto; /* Ensure nav menu can scroll */
    overflow-x: hidden;
    z-index: 1000; /* Ensure nav menu is above other content */
  }

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

  /* Overlay when nav menu is active */
  body.menu-overlay::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition:
      opacity var(--transition-base),
      visibility var(--transition-base);
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1001; /* Keep nav links visible */
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    position: relative; /* Ensure proper stacking */
    z-index: auto;
  }

  .nav-link {
    padding: var(--spacing-sm) 0;
    font-size: 1.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    /* margin: var(--spacing-md); */
    width: calc(100% - var(--spacing-lg));
  }

  .hamburger {
    display: flex;
  }

  /* Mobile Mega Menu Adjustments */
  .mega-menu-item {
    position: relative;
    z-index: auto; /* Don't stack above other items */
  }

  .mega-menu-item > .nav-link {
    cursor: pointer;
  }

  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: var(--bg-secondary);
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease;
    opacity: 0;
    position: relative; /* Keep in flow, don't overlay */
    z-index: auto; /* Don't stack above other nav items */
  }

  /* instead of .mega-menu-item.active .mega-menu */
  .mega-menu-item.active .mega-menu,
  .mega-menu.is-open {
    max-height: 100vh; /* Reduced from 2000px to leave room for other nav items */
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    overflow-y: auto; /* Enable scrolling on mobile */
    overflow-x: hidden;
    position: relative;
    top: 10%;
    left: 0;
    z-index: 9999; /* Keep in flow, don't overlay */
  }

  /* Custom scrollbar styling for mega menu on mobile */
  .mega-menu-item.active .mega-menu::-webkit-scrollbar,
  .mega-menu.is-open::-webkit-scrollbar {
    width: 6px;
  }

  .mega-menu-item.active .mega-menu::-webkit-scrollbar-track,
  .mega-menu.is-open::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
  }

  .mega-menu-item.active .mega-menu::-webkit-scrollbar-thumb,
  .mega-menu.is-open::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }

  .mega-menu-item.active .mega-menu::-webkit-scrollbar-thumb:hover,
  .mega-menu.is-open::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
  }

  /* Ensure other nav items after mega menu are visible */
  .nav-links li:not(.mega-menu-item) {
    position: relative;
    z-index: auto;
  }

  /* Ensure nav items after active mega menu are visible */
  .mega-menu-item.active ~ li {
    position: relative;
    z-index: auto;
    display: block; /* Ensure they're displayed */
  }

  .mega-menu-container {
    grid-template-columns: 1fr;
    padding: 0;
    gap: var(--spacing-md);
  }

  .mega-menu-small .mega-menu-container,
  .mega-menu-compact .mega-menu-container {
    grid-template-columns: 1fr;
  }

  .mega-menu-title {
    font-size: 0.75rem;
    margin-top: var(--spacing-sm);
  }

  .mega-menu-link {
    padding: 0.625rem 0.5rem;
  }

  .mega-menu-link:hover {
    transform: none;
  }

  .mega-menu-featured {
    margin-top: var(--spacing-sm);
  }

  .mega-link-title {
    font-size: 0.875rem;
  }

  .mega-link-desc {
    font-size: 0.75rem;
  }

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

  .btn {
    width: 90%;
  }
}

@media (max-width: 768px) {
  /* .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  } */

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

  .theme-toggle,
  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
  }

  .scroll-to-top {
    bottom: 4rem;
  }
}

/* ========================================
   Animations & Effects
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient-animated {
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mb-1 {
  margin-bottom: var(--spacing-xs);
}
.mb-2 {
  margin-bottom: var(--spacing-sm);
}
.mb-3 {
  margin-bottom: var(--spacing-md);
}
.mb-4 {
  margin-bottom: var(--spacing-lg);
}

.mt-1 {
  margin-top: var(--spacing-xs);
}
.mt-2 {
  margin-top: var(--spacing-sm);
}
.mt-3 {
  margin-top: var(--spacing-md);
}
.mt-4 {
  margin-top: var(--spacing-lg);
}

/* Custom CSS */

/* .overview_section {
  background-color: #fff;
} */
.explore_btn {
  margin-top: 10px;
}
#web-development {
  background: #fff;
}
.about_img {
  border-radius: 10px;
  width: 100%;
}

.left-content {
  padding: 20px;
}

.main-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 60px;
}

.features-list {
  display: flex;
  flex-direction: column;
  /* gap: 40px; */
  padding-top: 25px;
}

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

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.icon {
  font-size: 24px;
}

.feature-content h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.right-content {
  position: relative;
}

.intro-text {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
}

.image-wrapper img {
  width: 100%;
  height: 400px;
  display: block;
}
.story-steps-line {
  display: block;
  width: 2px;
  height: 100%;
  min-height: 65px;
  margin-right: auto;
  margin-left: auto;
  border: 1px dashed #969aa0;
}
.stats-overlay {
  position: absolute;
  top: 40px;
  /* left: 50%; */
  transform: translateX(-50%);
  background: #418cf0;
  padding: 25px 40px;
  border-radius: 12px;
  display: flex;
  gap: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.75rem;
  color: #1a1a1a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.divider {
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 968px) {
  .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main-heading {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .stats-overlay {
    padding: 20px 30px;
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .stats-overlay {
    top: 20px;
    padding: 15px 20px;
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }
}
.container-why {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
img.over {
  position: absolute;
  top: 15%;
  z-index: -1;
  left: 40%;
}
.over-1 {
  position: absolute;
  top: 10%;
  z-index: -1;
  left: 20%;
}

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

.label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 20px;
}

.main-title {
  font-size: 48px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 60px;
  line-height: 1.3;
}

.main-title .italic {
  font-style: italic;
  font-weight: 300;
}

.services-grid {
  display: grid;
  gap: 2px;
  background: transparrent;
  position: relative;
}

.service-card {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 60px;
  align-items: center;
  padding: 15px;
  /* background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%); */
  border-top: 1px solid #d7d7d7;
  border-top-style: dashed;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card:nth-child(1)::before {
  background: linear-gradient(135deg, #5b7bd5 0%, #7b9af5 100%);
}

.service-card:nth-child(2)::before {
  background: linear-gradient(135deg, #5b7bd5 0%, #7b9af5 100%);
}

.service-card:nth-child(3)::before {
  background: linear-gradient(135deg, #5b7bd5 0%, #7b9af5 100%);
}

.service-card:nth-child(4)::before {
  background: linear-gradient(135deg, #5b7bd5 0%, #7b9af5 100%);
}

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

.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.number {
  font-size: 18px;
  color: #999;
  font-weight: 300;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.service-card:hover .number {
  color: #fff;
}

.service-name {
  font-size: 30px;
  font-weight: 500;
  color: #1a1a1a;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.service-card:hover .service-name {
  color: #fff;
}

.service-description {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.service-card:hover .service-description {
  color: #fff;
}

.arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.service-card:hover .arrow {
  transform: translateX(10px);
}

.arrow svg {
  width: 24px;
  height: 24px;
  stroke: #1a1a1a;
  transition: stroke 0.4s ease;
}

.service-card:hover .arrow svg {
  stroke: #fff;
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  z-index: 100;
  pointer-events: none;
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.center-image img.fade {
  opacity: 0;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 32px;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .service-name {
    font-size: 32px;
  }

  /* .center-image {
    width: 200px;
    height: 200px;
    margin-left: 20px;
  } */
}
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.left-content {
  padding-right: 40px;
}

.label {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.heading {
  font-size: 48px;
  font-weight: 300;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 24px;
}

.description {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn {
  background-color: #2563eb;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn:hover {
  background-color: #1d4ed8;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 64px;
  height: 64px;
  background-color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.stat-number {
  font-size: 42px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.stat-label {
  color: #6b7280;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 968px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .left-content {
    padding-right: 0;
  }

  .heading {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .heading {
    font-size: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
.about-content.aos-init.aos-animate {
  display: flex;
}

.highlight {
  color: #000000;

  font-weight: 400;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.services-panel {
  /* background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%); */
  border-radius: 20px;
  border: 2px solid #c6c6c6;
  padding: 40px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
  position: relative;
  overflow: hidden;
  color: #000;
}

.services-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  /* background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.1) 0%,
    transparent 20%
  ); */
  border-radius: 50%;
}

.panel-title {
  color: #ff6b35;
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 500;
  position: relative;
}

.panel-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #ff6b35, transparent);
}

.service-item {
  color: rgb(0, 0, 0);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 10px;
  font-size: 20px;
}

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

.service-item:hover {
  padding-left: 20px;
}

.service-item.active {
  color: #ffffff;
  padding-left: 20px;
  /* background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%); */
  background-color: #127ac1;
  border-radius: 20px;
}

.service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 100%;

  transition: width 0.3s ease;
  z-index: 0;
}

.service-item:hover::before,
.service-item.active::before {
  width: 100%;
}

.service-item span {
  position: relative;
  z-index: 1;
}

.right-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border: 2px solid #f5f5f5;
  border-radius: 25px;
  padding: 30px;
}
.header h1 {
  font-size: 42px;
}

.description {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
  color: #4a5568;
  font-size: 1.05rem;
  min-height: 150px;
}

.tools-section {
  display: none;
}

.tools-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tools-grids {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.tool-card {
  background: #f2f5fd;
  padding: 10px 20px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #ff6b35;
}

.tool-icon {
  /* width: 50px;
  height: 50px;
  border-radius: 12px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon {
  transform: scale(1.1) rotate(5deg);
}

.tool-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1.05rem;
}
.service-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
  padding: 70px 0 90px;
}
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 2.5rem;
  }
}

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

  h1 {
    font-size: 2rem;
  }

  .services-panel {
    padding: 30px 25px;
  }
  .tools-grids {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .service-hero {
    padding: 130px 0 90px !important;
  }
}

/* Animated background */

.background-animation {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

.network-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.services-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  padding-bottom: 120px;
  z-index: 1;
}

.section-titles {
  font-size: 3rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.services-container {
  width: 100%;
  position: relative;
}

.swiper {
  width: 100%;
  padding: 40px 0 80px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.swiper-slide-active {
  opacity: 1;
}

.service-cards {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 24px;
  padding: 30px 50px;
  width: 100%;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.icon-container {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  position: relative;
}

.icon-hexagon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.2),
    rgba(255, 107, 53, 0.1)
  );
  border: 2px solid #ff6b35;
  clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 10s linear infinite;
}

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

.icon-inner {
  font-size: 32px;
  color: #ff6b35;
}

.service-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 400;
}

.service-description {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.8;
}

.arrow-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid #ff6b35;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-icon:hover {
  background: rgba(255, 107, 53, 0.3);
  transform: translateX(5px);
}

.arrow-icon::before {
  content: ">";
  font-size: 24px;
  color: #ff6b35;
  font-weight: bold;
}

.explore-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: white;
  border: none;
  padding: 18px 45px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  z-index: 10;
}

.explore-btn:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

/* Custom Navigation */
.swiper-button-prev,
.swiper-button-next {
  width: 60px;
  height: 60px;
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(255, 107, 53, 0.5);
  border-radius: 50%;
  color: #ff6b35;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}

/* Decorative Elements */
.decorative-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
  filter: blur(60px);
  pointer-events: none;
}

.circle-left {
  top: -100px;
  left: -100px;
}

.circle-right {
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }

  .service-card {
    padding: 40px 30px;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .service-description {
    font-size: 1rem;
  }
}
.service-descriptions {
  color: #fff;
}
ul {
  list-style-type: none;
}
.about-us ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-us ul li i {
  color: #ff6b35;
  padding-right: 15px;
}
.section-title {
  color: #1e293b;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: #000;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: #000;
  font-size: 1.1rem;
  font-weight: 400;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.counter-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px dashed #ff6b35;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.counter-item:hover .counter-circle {
  border-color: #667eea;
  transform: scale(1.05);
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 0.9rem;
  color: #94a3b8;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .counter-section {
    padding: 40px 20px;
  }

  .counters-grid {
    gap: 30px;
  }

  .counter-circle {
    width: 150px;
    height: 150px;
  }

  .counter-number {
    font-size: 2.5rem;
  }
  .mega-menu-tabs-nav {
    padding: 0 !important;
  }
  .mega-menu-container {
    gap: 0 !important;
  }
  .mega-menu-list {
    gap: 0 !important;
  }
}

/* Mega Menu Back Button (Mobile) - Styled as tab title */
.mega-menu-back-btn {
  display: none !important; /* Hidden by default, shown via JavaScript on mobile when mega menu is open */
  align-items: center;
  gap: 15px;
  padding: 0;
  background: #f9f9f9;
  border: none;
  border-bottom: 2px solid transparent;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  transition: all var(--transition-base);
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: left;
  justify-content: flex-start;
}

.mega-menu-back-btn:hover,
.mega-menu-back-btn:active {
  color: #1468a2;
  background: #f9f9f9;
}

.mega-menu-back-btn i {
  font-size: 1.2rem;
  color: #333;
}

.mega-menu-back-btn:hover i,
.mega-menu-back-btn:active i {
  color: #ff6b35;
}

/* Show back button only on mobile when mega menu is open */
@media (max-width: 968px) {
  .mega-menu.is-open .mega-menu-back-btn {
    display: flex !important;
  }
}

/* Mega Menu Tabs Styles */
.mega-menu-tabs-nav {
  display: flex;
  /* border-bottom: 1px solid #eee; */
  margin-bottom: 10px;
  background: #f9f9f9;
  z-index: 2;
  position: relative;
  flex-direction: column;
  padding: 20px;
  gap: 12px;
  /* height: 100vh; */
}
.mega-menu-tab-title.active,
.mega-menu-tab-title:hover.mega-menu-tabs-nav {
  height: auto !important;
}
.mega-menu-tab-title span {
  /* padding: 10px 24px; */
  cursor: pointer;
  font-weight: 700;
  color: #333;
  border-bottom: 2px solid transparent;
  transition:
    border 0.2s,
    color 0.2s;
  background: none;
  outline: none;
  font-size: 14px;
  /* background-color: #F8F9FA; */
  margin-bottom: 14px;
  text-transform: uppercase;
}
.mega-menu-tab-title p {
  font-size: 12px;
  color: #666;
  text-transform: capitalize;
}
.mega-menu-tab-title.active,
.mega-menu-tab-title:hover {
  span {
    color: #1468a2;
  }
  /* border-bottom: 2px solid #ffffff; */
  /* background: #1a65af; */
}
.mega-menu-tab-title {
  display: flex;
  gap: 15px;
}
.svg-wrapper {
  width: 45px;
  height: 45px;
  background-color: #127ac1;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svg-wrapper svg {
  width: 25px;
  height: 25px;
}
.mega-menu-tabs-content {
  position: relative;
  z-index: 1;
}
.mega-menu-tab-content {
  display: none;
  animation: fadeIn 0.2s;
  padding-top: 15px;
}
.mega-menu-tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Full width grid layout for Software Testing and Web 3.0 tabs */
.mega-menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 9px;
  width: 100%;
}

.mega-menu-tab-content.mega-menu-full-width {
  width: 100%;
}

.mega-menu-grid li {
  margin: 0;
}

/* main-banner-index-main=========================================================================
=========================================================================================================================
====================================================================== */

.main-banner {
  /* max-width: 1400px; */
  width: 100%;
  background: #f8f5f2;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.1); */
  height: 780px;
}
.main-banner .container {
  display: flex;
  align-items: center;
  height: 780px;
}
/* ============ LEFT CONTENT SECTION ============ */
.content-wrapper-new {
  flex: 1;
  /* padding: 60px; */
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.circle-decoration {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 3px solid #e0e0e0;
  border-radius: 50%;
  opacity: 0.3;
  animation: circleRotate 20s linear infinite;
}

.category-tag {
  display: inline-block;
  background: #bfccf5;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #2d5016;
  margin-bottom: 30px;
  animation: tagBounce 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s
    backwards;
}

.main-heading {
  font-size: 68px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.1;
  animation: headingReveal 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.3s backwards;
}

.main-heading .highlight {
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.description-text {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  animation: descriptionFade 0.8s ease-out 0.4s backwards;
}

/* ============ ACTION BUTTONS ============ */
.action-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-button {
  background: #127ac1;
  color: white;
  padding: 16px 42px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  animation: buttonGlowIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s backwards;
}

.primary-button:hover {
  background: #163a2d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 77, 61, 0.3);
}

.play-button {
  width: 56px;
  height: 56px;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: playButtonSpin 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s
    backwards;
}

.play-button:hover {
  background: #f5f5f5;
  transform: scale(1.1);
  border-color: #1f4d3d;
}

.play-triangle {
  width: 0;
  height: 0;
  border-left: 12px solid #1a1a1a;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}
.tool-icon svg {
  width: 46px;
  height: 35px;
}
/* ============ RIGHT IMAGE SECTION ============ */
.image-section {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  /* padding: 40px; */
  animation: imageSectionSlide 0.9s ease-out;
}

.image-wrapper-main {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
}
.banner-two-shape {
  position: absolute;
  top: 20px;
  left: -55%;
  z-index: -1;
}
/* ============ CIRCLE BACKGROUND ============ */
.circle-background {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #7b9af5 0%, #d0dcff 100%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: circlePulse 3s ease-in-out infinite;
}

.profile-picture {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}

.profile-picture img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
}

/* ============ DATA CARDS ============ */
.data-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.revenue-card {
  top: 80px;
  right: -40px;
  width: 280px;
  animation: cardSlideLeft 0.8s ease-out 0.5s backwards;
}

.invoice-card {
  bottom: 100px;
  left: -60px;
  width: 240px;
  animation: cardSlideRight 0.8s ease-out 0.6s backwards;
}

.card-label {
  color: #999;
  font-size: 12px;
  margin-bottom: 8px;
  text-transform: capitalize;
  font-weight: 500;
}

.card-value {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.card-change {
  color: #666;
  font-size: 12px;
  margin-bottom: 12px;
}

/* ============ CHART BARS ============ */
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}

.bar-item {
  flex: 1;
  border-radius: 4px;
  transition: all 0.3s ease;
  animation: barGrow 0.6s ease-out backwards;
}

.bar-item.small {
  height: 30%;
}

.bar-item.medium {
  height: 55%;
}

.bar-item.large {
  height: 100%;
}

.bar-item:nth-child(1) {
  animation-delay: 0.7s;
}
.bar-item:nth-child(2) {
  animation-delay: 0.8s;
}
.bar-item:nth-child(3) {
  animation-delay: 0.9s;
}
.bar-item:nth-child(4) {
  animation-delay: 1s;
}
.bar-item:nth-child(5) {
  animation-delay: 1.1s;
}

/* ============ REPORT BADGE ============ */
.report-badge {
  position: absolute;
  bottom: 30px;
  right: 20px;
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  z-index: 10;
  animation: badgePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s backwards;
}

.user-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 14px;
}

/* ============ DECORATIVE STARS ============ */
.star-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #1a1a1a;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  animation: starTwinkle 2s ease-in-out infinite;
}

.star-top {
  top: 40px;
  right: 80px;
  animation-delay: 0s;
}

.star-bottom {
  bottom: 40px;
  right: 0px;
  animation-delay: 1s;
}

/* ============ ANIMATIONS ============ */
@keyframes circleRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes tagBounce {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(-30px);
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes headingReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes descriptionFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonGlowIn {
  0% {
    opacity: 0;
    transform: translateX(-30px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes playButtonSpin {
  0% {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes imageSectionSlide {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes circlePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes cardSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(50px) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes cardSlideRight {
  0% {
    opacity: 0;
    transform: translateX(-50px) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes barGrow {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes badgePop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-45deg);
  }
  60% {
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8) rotate(180deg);
  }
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1200px) {
  .content-wrapper-new {
    padding: 40px;
  }

  .main-heading {
    font-size: 56px;
  }

  .image-wrapper-main {
    max-width: 400px;
    height: 500px;
  }

  .circle-background {
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 992px) {
  .main-banner .container {
    flex-direction: column;
    height: auto;
    padding: 60px 20px;
  }

  .content-wrapper-new {
    padding: 30px 20px;
    text-align: center;
    max-width: 100%;
  }

  .main-heading {
    font-size: 48px;
  }

  .description-text {
    max-width: 100%;
  }

  .action-group {
    justify-content: center;
  }

  .image-section {
    margin-top: 60px;
    justify-content: center;
  }

  .image-wrapper-main {
    max-width: 350px;
    height: 450px;
  }

  .circle-background {
    width: 320px;
    height: 320px;
  }

  .revenue-card {
    right: -20px;
    width: 220px;
  }

  .invoice-card {
    left: -30px;
    width: 200px;
  }
}

@media (max-width: 768px) {
  .main-banner {
    height: auto;
  }

  .main-banner .container {
    height: auto;
  }

  .content-wrapper-new {
    padding: 20px;
  }

  .main-heading {
    font-size: 36px;
  }

  .description-text {
    font-size: 15px;
  }

  .action-group {
    flex-direction: column;
    gap: 15px;
  }

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

  .image-wrapper-main {
    max-width: 300px;
    height: 400px;
  }

  .circle-background {
    width: 280px;
    height: 280px;
  }

  .data-card {
    padding: 12px 15px;
  }

  .revenue-card,
  .invoice-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin: 10px auto;
    width: 90%;
    max-width: 280px;
  }

  .report-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 10px auto;
  }

  .star-icon {
    display: none;
  }
}

/* about us -section */

.consultez-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.consultez-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.consultez-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.consultez-revenue-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: inline-block;
  width: fit-content;
}

.consultez-revenue-label {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.consultez-revenue-amount {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.consultez-bars-container {
  display: flex;
  gap: 8px;
  height: 100px;
  align-items: flex-end;
}

.consultez-bar {
  width: 20px;
  border-radius: 4px 4px 0 0;
}

.consultez-bar-primary {
  background: #127ac1;
}

.consultez-bar-secondary {
  background: #bfccf5;
}

.consultez-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}

.consultez-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.consultez-experience-box {
  position: absolute;
  bottom: 20%;
  left: 10%;
  background: #bfccf5;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.consultez-experience-number {
  font-size: 48px;
  font-weight: bold;
  color: #000;
  line-height: 1;
}

.consultez-experience-text {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  margin-top: 8px;
}

.consultez-right {
  padding-top: 40px;
}

.consultez-badge {
  display: inline-block;
  background: #bfccf5;
  color: #127ac1;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.consultez-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #000;
}

.consultez-description-box {
  font-size: 16px;
  line-height: 1.8;
  color: #999;
  /* background: #f8f8f8; */
  /* padding: 25px; */
  border-radius: 10px;
  margin-bottom: 40px;
}

.consultez-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.consultez-feature-card {
  display: flex;
  gap: 15px;
}

.consultez-feature-icon-box {
  width: 70px;
  height: 70px;
  background: #bfccf5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.highlight-main {
  font-weight: 400;
}
.consultez-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.consultez-feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.consultez-feature-subtitle {
  font-size: 14px;
  color: #999;
}

.consultez-checks {
  display: flex;
  display: none !important;
  gap: 40px;
  margin-bottom: 40px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.consultez-check-item {
  display: flex;
  align-items: center;
}

.consultez-check-mark {
  color: #127ac1;
  font-weight: bold;
  margin-right: 8px;
  font-size: 16px;
}

.consultez-footer {
  display: flex;
  gap: 30px;
  align-items: center;
}

.consultez-btn {
  background: #127ac1;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}

.consultez-btn:hover {
  background: #0d5a9b;
}

.consultez-impact-group {
  display: flex;
  align-items: center;
  gap: 15px;
  display: none;
}

.consultez-avatars {
  display: flex;
  margin-right: 10px;
}

.consultez-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #127ac1, #bfccf5);
  border: 3px solid white;
  margin-left: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  font-weight: bold;
}

.consultez-avatar:first-child {
  margin-left: 0;
}

.consultez-impact-text {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

@media (max-width: 1024px) {
  .consultez-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .consultez-title {
    font-size: 36px;
  }

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

@media (max-width: 768px) {
  .consultez-wrapper {
    padding: 30px 20px;
    padding-top: 0;
  }

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

  .consultez-checks {
    flex-direction: column;
    gap: 10px;
  }

  .consultez-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .zyp-stat-item {
    display: flex;
    flex-direction: row;
    /* gap: 24px; */
    align-items: center;
    text-align: center;
    animation: zyp-fade-in-up 0.8s ease-out forwards;
    opacity: 0;
  }
}
/* STATS SECTION */
.bs__stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bs__stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  /* background: linear-gradient(135deg, #c4e538 0%, #b3d924 100%); */
  background-color: #127ac1;
  padding: 60px 50px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(196, 229, 56, 0.15);
  position: relative;
  overflow: hidden;
}

.bs__stats-grid::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.bs__stat-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bs__stat-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.bs__stat-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #ffffff;
}

.bs__stat-number {
  /* font-family: 'Outfit', sans-serif; */
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.bs__stat-label {
  font-size: 17px;
  color: #ffffff;
  font-weight: 500;
  /* letter-spacing: -0.3px; */
}

/* SERVICES SECTION */
.bs__services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bs__services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* margin-bottom: 60px; */
  gap: 40px;
}

.bs__services-header-content h1 {
  font-family: "Outfit", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.bs__services-tag {
  display: inline-block;
  background: #c4e538;
  color: #1a1a1a;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* SERVICES SECTION */
.bs__services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bs__services-tag {
  display: inline-block;
  background: #c4e538;
  color: #1a1a1a;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* SERVICE CARDS GRID */
.bs__services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.bs__service-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid #e8e8e8;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.bs__service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #127ac1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bs__service-card:hover {
  border-color: #127ac1;
  box-shadow: 0 20px 50px rgba(196, 229, 56, 0.12);
  transform: translateY(-8px);
}

.bs__service-card:hover::before {
  transform: scaleX(1);
}

.bs__service-icon-wrapper {
  width: 77px;
  height: 77px;
  background: #127ac1;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

.bs__service-card:hover .bs__service-icon-wrapper {
  transform: scale(1.08) rotate(2deg);
}

.bs__service-icon {
  width: 50px;
  height: 50px;
}

.bs__service-icon svg {
  width: 80%;
  height: 80%;
  stroke: #ffffff;
  fill: none;
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bs__service-title {
  /* font-family: 'Outfit', sans-serif; */
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.bs__service-description {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 500;
}

.bs__learn-more-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: all 0.3s ease;
}

.bs__learn-more-link::after {
  content: "→";
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.bs__service-card:hover .bs__learn-more-link::after {
  opacity: 1;
  transform: translateX(0);
}
.bs-main {
  background-color: #f8f5f2;
  padding-top: 200px;
  padding-bottom: 50px;
  /* margin-bottom: 50px; */
  margin-top: -130px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .bs__services-header {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .bs__services-header-content h1 {
    font-size: 42px;
  }

  .bs__stats-grid {
    padding: 40px 30px;
    gap: 30px;
  }

  .bs__stat-number {
    font-size: 36px;
  }

  .bs__services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (max-width: 480px) {
  body {
    padding: 40px 16px;
  }

  .bs__stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 20px;
    gap: 24px;
  }

  .bs__stat-number {
    font-size: 28px;
  }

  .bs__services-header-content h1 {
    font-size: 32px;
  }

  .bs__service-card {
    padding: 32px 24px;
  }
}

.steps-section .outer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.steps-block {
  max-width: 310px;
  text-align: center;
  position: relative;
  z-index: 1;
}
section.steps-section.pt-120.pb-120 {
  margin-bottom: 50px;
  margin-top: 50px;
}
.steps-block .icon {
  width: 150px;
  height: 150px;
  line-height: 180px;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  background-color: #127ac1;
  position: relative;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.icon svg {
  fill: #fff;
}
.steps-block .title {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 22px;
}
.steps-block .line {
  position: absolute;
  right: -40%;
  top: 75px;
  z-index: -1;
}
.line img {
  width: 71%;
}
.sec-title.center.mb-50 {
  text-align: center;
}

.steps-block .icon .number {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  color: var(--text-color1);
  background-color: #ffffff;
  position: absolute;
  bottom: 10px;
  right: -30px;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--title-font);
  color: var(--theme-color2);
  -webkit-box-shadow: 5px 5px 12px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 5px 5px 12px 0px rgba(0, 0, 0, 0.0509803922);
}

.faq-section-wrapper {
  width: 100%;
  background-image: url("../images/growth-two-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  margin-bottom: 80px;
  padding-bottom: 50px;
  /* background-color: #F8F5F2; */
}
.swiper-slide {
  img {
    /* aspect-ratio: 16 / 9; */
    /* width: 100%; */
    height: 50px;
    object-fit: cover;
  }
}
.faq-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 60px; */
  align-items: center;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left side - Image section */
.faq-image-section {
  position: relative;
  display: none;
}

@media (min-width: 769px) {
  .faq-image-section {
    display: block;
  }
}

.faq-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
}

.faq-image-placeholder {
  width: 100%;
  height: auto;
  background: linear-gradient(135deg, #c0c0c0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.faq-revenue-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  max-width: 180px;
  animation: faq-slideUp 0.8s ease-out 0.2s both;
}

.faq-revenue-label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.faq-revenue-amount {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.faq-revenue-change {
  font-size: 12px;
  color: #22c55e;
  font-weight: 500;
}

.faq-chart-bar {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  align-items: flex-end;
  height: 60px;
}

.faq-bar {
  flex: 1;
  background: #22c55e;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.faq-bar-dark {
  background: #065f46;
}

/* .faq-bar:hover {
  transform: scaleY(1.05);
} */

/* Right side - FAQ content */
.faq-content-section {
  animation: faq-fadeInUp 0.8s ease-out;
}

.faq-header {
  margin-bottom: 32px;
}

.faq-badge {
  display: inline-block;
  background: #b8d1ff;
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.faq-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* FAQ Items */
.faq-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-card:hover {
  border-color: #127ac1;
  box-shadow: 0 8px 24px rgba(200, 242, 29, 0.1);
}

.faq-item-card-active {
  border-color: #127ac1;
  box-shadow: 0 8px 24px rgba(200, 242, 29, 0.1);
}

.faq-item-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  background: white;
  transition: background 0.2s ease;
}

.faq-item-card:hover .faq-item-question {
  background: #fafafa;
}

.faq-item-number {
  background: #127ac1;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-right: 16px;
  flex-shrink: 0;
}

.faq-item-text {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  text-align: left;
  flex: 1;
}

.faq-item-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
  font-size: 20px;
}

.faq-item-card-active .faq-item-toggle {
  color: #c8f21d;
  transform: rotate(90deg);
}

.faq-item-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
}

.faq-item-card-active .faq-item-answer {
  max-height: 500px;
}

.faq-item-answer-content {
  padding: 0 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  animation: faq-fadeIn 0.3s ease 0.1s both;
}

.faq-item-answer-content p {
  margin-bottom: 12px;
}

.faq-item-answer-content p:last-child {
  margin-bottom: 0;
  padding-bottom: 16px;
}

/* Animations */
@keyframes faq-slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faq-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faq-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 32px;
  }

  .faq-item-question {
    padding: 14px 16px;
  }

  .faq-item-text {
    font-size: 15px;
  }
}
.faq-image-placeholder img {
  width: 100%;
}

.faq-content-section {
  background-color: #fff;
  margin-left: -50px;
  z-index: 12;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.features-container.container {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-bottom: 40px;
}
.feature-card {
  display: flex;
  gap: 30px;
}
.percentage-text {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 2;
}
.circle-inner {
  /* position: absolute; */
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #127ac1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zy-container {
  width: 100%;
  /* min-height: 100vh; */
  position: relative;
  /* background: linear-gradient(135deg, #094772 0%, #0d2a2a 50%, #0a1f1f 100%); */
  background-color: #127ac1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background decoration */
.zy-bg-element {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}

.zy-bg-circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid #7fff00;
  top: -100px;
  left: -150px;
  animation: zyFloatCircle 15s ease-in-out infinite;
}

@keyframes zyFloatCircle {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 30px);
  }
}

/* Content wrapper */
.zy-content-wrapper {
  width: 100%;
  max-width: 1400px;
  padding: 60px 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left section */
.zy-left-section {
  position: relative;
}

.zy-badge {
  display: inline-block;
  /* background: linear-gradient(135deg, #d4ff00 0%, #b8e600 100%); */
  background: #127ac1;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  margin-bottom: 30px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 81, 255, 0.3);
  animation: zyBadgePulse 2.5s ease-in-out infinite;
}

/* @keyframes zyBadgePulse {
  0%, 100% { 
      box-shadow: 0 4px 15px rgba(212, 255, 0, 0.3);
  }
  50% { 
      box-shadow: 0 4px 25px rgba(212, 255, 0, 0.5);
  }
} */

.zy-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 30px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: zyHeadlineSlide 0.8s ease-out;
}

@keyframes zyHeadlineSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zy-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #127ac1 0%, rgba(212, 255, 0, 0) 100%);
  margin-bottom: 30px;
  animation: zyDividerExpand 0.8s ease-out;
}

@keyframes zyDividerExpand {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.zy-cta-button {
  display: inline-block;
  background: #ffffff;
  color: #0f3a3a;
  padding: 14px 40px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.zy-cta-button:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 255, 0, 0.3);
}

/* Right section - Stats */
.zy-right-section {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.zy-stat-card {
  text-align: center;
  animation: zyStatFadeIn 0.8s ease-out backwards;
}

.zy-stat-card:nth-child(1) {
  animation-delay: 0.2s;
}
.zy-stat-card:nth-child(2) {
  animation-delay: 0.4s;
}
.zy-stat-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes zyStatFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Circular progress */
.zy-progress-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(
    #127ac1 var(--progress-angle),
    rgba(0, 119, 255, 0.2) 0deg
  );
  /* background-color: #127AC1; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  /* box-shadow: 0 0 40px rgba(212, 255, 0, 0.2); */
}

.zy-progress-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(26, 77, 77, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.zy-stat-card:nth-child(1) .zy-progress-circle {
  --progress-angle: 324deg;
}

.zy-stat-card:nth-child(2) .zy-progress-circle {
  --progress-angle: 342deg;
}

.zy-stat-card:nth-child(3) .zy-progress-circle {
  --progress-angle: 270deg;
}

.zy-stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.zy-stat-description {
  font-size: 13px;
  color: #b3b3b3;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* Right side image background */
.zy-image-section {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  /* background: linear-gradient(180deg, rgba(26, 77, 77, 0.4) 0%, rgba(26, 77, 77, 0.2) 100%), 
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23304040" width="800" height="600"/><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%231a4d4d" stroke-width="0.5"/></pattern></defs><rect width="800" height="600" fill="url(%23grid)"/></svg>'); */

  background-image:
    linear-gradient(
      180deg,
      rgba(26, 77, 77, 0.5) 0%,
      rgba(26, 77, 77, 0.4) 100%
    ),
    url("../images/businessman.jpg");
  background-size: cover;

  background-position: center;
  z-index: 0;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Responsive design */
@media (max-width: 1024px) {
  .zy-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }

  .zy-right-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .zy-headline {
    font-size: 2.8rem;
  }

  .zy-image-section {
    position: relative;
    width: 100%;
    height: 300px;
    clip-path: none;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .zy-content-wrapper {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .zy-right-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .zy-headline {
    font-size: 2.2rem;
  }

  .zy-progress-circle {
    width: 120px;
    height: 120px;
  }

  .zy-progress-inner {
    width: 100px;
    height: 100px;
    font-size: 1.8rem;
  }
}

/* Hover effect for stat cards */
.zy-stat-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.zy-stat-card:hover .zy-progress-circle {
  box-shadow: 0 0 60px rgba(0, 119, 255, 0.4);
}

.zy-slider-container {
  width: 100%;
  height: 100vh;
  background: rgba(26, 95, 95, 0.8);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.zy-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  position: relative;
  gap: 80px;
  width: 100%;
  height: 100%;
}

/* Left Profile Section */
.zy-profile-section {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zy-fadeInLeft 0.8s ease-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

@keyframes zy-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.zy-profile-background {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--zy-accent-lime) 0%, #a8e634 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(201, 255, 34, 0.2);
}

.zy-profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
}

/* Stats Cards */
.zy-stats-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}

.zy-stat-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  animation: zy-slideUp 0.6s ease-out forwards;
  opacity: 0;
}

.zy-stat-card:nth-child(1) {
  animation-delay: 0.4s;
}

.zy-stat-card:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes zy-slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zy-stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.zy-stat-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.zy-stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--zy-primary-teal);
}

.zy-stat-sublabel {
  font-size: 11px;
  color: #999;
}

.zy-stat-change {
  font-size: 12px;
  color: #4caf50;
  font-weight: 600;
  margin-left: 8px;
}

.zy-chart-bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  margin-top: 10px;
  height: 30px;
}

.zy-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--zy-accent-lime) 0%, #4caf50 100%);
  border-radius: 2px;
  opacity: 0.8;
}

.zy-bar:nth-child(odd) {
  background: var(--zy-primary-teal);
}

/* Right Content Section */
.zy-content-section {
  flex: 1;
  animation: zy-fadeInRight 0.8s ease-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.zy-content-section.zy-fade-out {
  animation: zy-fadeOut 0.4s ease-out forwards;
}

.zy-content-section.zy-fade-in {
  animation: zy-fadeIn 0.6s ease-out forwards;
}

@keyframes zy-fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes zy-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.zy-trustpilot-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: zy-slideDown 0.6s ease-out;
  animation-delay: 0.3s;
}

.zy-logo-star {
  width: 32px;
  height: 32px;
  fill: var(--zy-accent-lime);
}

.zy-logo-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--zy-text-light);
  letter-spacing: -0.5px;
}

@keyframes zy-slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zy-testimonial {
  color: var(--zy-text-light);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 100px;
  animation: zy-fadeIn 0.6s ease-out;
  animation-delay: 0.4s;
}

@keyframes zy-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.zy-reviewer-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  animation: zy-slideUp 0.6s ease-out;
  animation-delay: 0.5s;
}

.zy-reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  object-fit: cover;
  border: 2px solid var(--zy-accent-lime);
}

.zy-reviewer-details {
  display: flex;
  flex-direction: column;
}

.zy-reviewer-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--zy-text-light);
}

.zy-reviewer-title {
  font-size: 13px;
  color: var(--zy-text-gray);
  margin-top: 2px;
}

.zy-rating {
  display: flex;
  gap: 6px;
  animation: zy-slideUp 0.6s ease-out;
  animation-delay: 0.6s;
}

.zy-star {
  font-size: 22px;
  color: var(--zy-star-gold);
  transition: transform 0.2s ease;
}

.zy-star:hover {
  transform: scale(1.1);
}

/* Navigation Controls */
.zy-controls {
  display: flex;
  gap: 16px;
  position: absolute;
  right: 50px;
  top: 30px;
  z-index: 10;
}

.zy-nav-btn {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zy-text-light);
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.zy-nav-btn:hover {
  background: rgba(201, 255, 34, 0.2);
  border-color: var(--zy-accent-lime);
  transform: scale(1.05);
}

.zy-nav-btn:active {
  transform: scale(0.95);
}

.zy-nav-btn.zy-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
  .zy-slider-wrapper {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
    height: auto;
    min-height: 100vh;
  }

  .zy-profile-background {
    width: 220px;
    height: 220px;
  }

  .zy-controls {
    right: 30px;
    top: 20px;
  }

  .zy-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .zy-testimonial {
    font-size: 16px;
  }

  .zy-logo-text {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .zy-slider-wrapper {
    padding: 30px 20px;
  }

  .zy-profile-background {
    width: 180px;
    height: 180px;
  }

  .zy-stat-card {
    padding: 12px 16px;
  }

  .zy-stat-number {
    font-size: 18px;
  }

  .zy-testimonial {
    font-size: 14px;
    min-height: auto;
  }

  .zy-controls {
    gap: 12px;
    right: 20px;
  }

  .zy-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .shilpokars-hero {
    padding: 100px 0 64px;
  }
  .shilpokars-hero {
    padding: 100px 0 64px;
  }
}
@media (max-width: 900px) {
  .shilpokars-hero-visual {
    max-width: 100% !important;
    margin: 0 auto;
  }
  .shilpokars-hero-visual img {
    width: auto !important;
  }
}
@media (max-width: 600px) {
  .main-heading {
    font-size: 28px;
  }
  .description-text {
    margin-bottom: 15px;
  }
  .swiper {
    padding-bottom: 20px;
  }
  section.about-us-section-main .container {
    padding: 0;
  }
  .consultez-experience-box {
    display: none;
  }
  .consultez-image {
    height: 250px;
  }
  .consultez-right {
    padding-top: 0px;
  }
  body {
    padding: 0;
  }
  .consultez-description-box {
    margin-bottom: 15px;
  }
  .consultez-features-grid {
    margin-bottom: 15px;
  }
  .bs-main {
    padding-top: 160px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .bs__services-header {
    gap: 0;
    margin-bottom: 15px;
  }
  section.section-padding {
    padding: 30px 0 !important;
  }
  .header h1 {
    font-size: 25px;
  }
  .services-panel {
    padding: 20px 13px !important;
  }
  .service-item {
    padding: 16px 0;

    font-size: 16px;
  }
  .container {
    padding: 0 15px;
  }
  .right-content {
    padding: 20px;
  }
  .zy-container {
    flex-direction: column;
  }
  .zy-divider {
    display: none;
  }
  .zy-badge {
    margin-bottom: 0;
  }
  .zy-headline {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .steps-section .outer-box {
    flex-direction: column;
    gap: 0;
  }
  .steps-block .icon {
    width: 115px;
    height: 115px;
  }
  .features-container.container {
    flex-direction: column;
  }
  .faq-section-wrapper {
    padding-top: 30px;
  }
  .faq-content-section {
    margin-left: 0;
    padding: 20px;
  }
  .faq-section-wrapper {
    margin: 0;
  }
  .steps-block .line {
    display: none;
  }
  .image-section {
    margin-top: 0;
  }
  .content-wrapper-new {
    padding: 20px;
    margin-top: 35px;
  }
  .data-card.revenue-card {
    display: none;
  }
  .data-card.invoice-card {
    display: none;
  }
  .report-badge {
    position: absolute;
    bottom: 0;
  }
  .main-banner .container {
    padding-bottom: 0;
  }
}
/* ///////////////////////////////////////////////////////////////////////////////////////////////////contact-us page///////////////////////////////////////// */
.zyc-container {
  /* max-width: 1000px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* Left Section */
.zyc-left-section {
  padding: 20px 0;
}

.zyc-heading {
  font-size: 44px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.2;
}

.zyc-heading .zyc-expert {
  color: #000000;
  font-style: italic;
  font-weight: 400;
}

.zyc-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.zyc-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.zyc-feature {
  display: flex;
  gap: 15px;
}

.zyc-feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #127ac1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.zyc-feature-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.zyc-feature-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.zyc-support-link {
  margin-top: 30px;
  font-size: 13px;
  color: #666;
}

.zyc-support-link a {
  color: #4caf50;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #4caf50;
}

.zyc-support-link a:hover {
  color: #45a049;
}

/* Right Section */
.zyc-right-section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.zyc-form-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
}

.zyc-form-group {
  margin-bottom: 20px;
}

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

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

.zyc-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.zyc-input,
.zyc-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  color: #1a1a1a;
}

.zyc-input::placeholder,
.zyc-textarea::placeholder {
  color: #999;
}

.zyc-input:focus,
.zyc-textarea:focus {
  outline: none;
  border-color: #f29552;
  box-shadow: 0 0 0 3px rgba(175, 111, 76, 0.1);
}

.zyc-textarea {
  resize: vertical;
  min-height: 130px;
  font-family: inherit;
}

.zyc-message-group {
  margin-bottom: 25px;
}

.zyc-message-group .zyc-label {
  margin-bottom: 10px;
}

.zyc-submit-btn {
  width: 100%;
  padding: 14px 24px;
  /* background: linear-gradient(135deg, #4caf50 0%, #45a049 100%); */
  background-color: #0d5a9b;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.zyc-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.zyc-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .zyc-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zyc-heading {
    font-size: 36px;
  }

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

  .zyc-right-section {
    padding: 30px 20px;
  }
}
.zyc-hero-section {
  position: relative;
  min-height: 400px;
  /* background: linear-gradient(135deg, #15619f 0%, #0f72c3 100%); */
  background-image: url("../images/page-title-bg.jpg");
  overflow: hidden;
  margin-bottom: 50px;
  padding: 60px 20px;
}
.hero-portfolio {
  background-image: url("../images/banner-22.png");
}
.hero-contact {
  background-image: url("../images/banner-23.png");
}
/* Background Image & Overlay */
.zyc-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
    90deg,
    rgba(10, 30, 30, 0.7) 0%,
    rgba(10, 30, 30, 0.5) 50%,
    rgba(10, 30, 30, 0.3) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Grid Pattern Overlay */
.zyc-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(
      0deg,
      transparent 24%,
      rgba(255, 255, 255, 0.05) 25%,
      rgba(255, 255, 255, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(255, 255, 255, 0.05) 75%,
      rgba(255, 255, 255, 0.05) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(255, 255, 255, 0.05) 25%,
      rgba(255, 255, 255, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(255, 255, 255, 0.05) 75%,
      rgba(255, 255, 255, 0.05) 76%,
      transparent 77%,
      transparent
    );
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.8;
}

/* Decorative blurred shapes */
.zyc-shape-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -100px;
  right: -50px;
  filter: blur(40px);
  z-index: 0;
}

.zyc-shape-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(26, 77, 77, 0.4) 0%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: -50px;
  left: -100px;
  filter: blur(60px);
  z-index: 0;
}

/* Content Container */
.zyc-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  color: #fff;
}

/* Breadcrumb Navigation */
.zyc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  display: none;
}

.zyc-breadcrumb a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.zyc-breadcrumb a:hover {
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.zyc-breadcrumb span {
  color: var(--text-light);
  font-weight: 400;
}

.zyc-breadcrumb-separator {
  color: var(--accent-gold);
  font-weight: 300;
}

/* Main Title */
.zyc-hero-title {
  font-size: 60px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 0.8s ease-out;
  letter-spacing: -1px;
}

/* Decorative Line */
.zyc-title-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, transparent 100%);
  margin-top: 20px;
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out 0.2s both;
}

/* Floating Icon */
/* .zyc-floating-icon {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2) 0%,
    rgba(255, 215, 0, 0.05) 100%
  );
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  animation: float 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
  z-index: 3;
} */

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .zyc-hero-section {
    min-height: 350px;
    padding: 40px 20px;
  }

  .zyc-hero-content {
    min-height: 350px;
  }

  .zyc-hero-title {
    font-size: 48px;
  }

  .zyc-breadcrumb {
    font-size: 12px;
    margin-bottom: 20px;
    display: none;
  }

  .zyc-floating-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
    bottom: 20px;
    left: 20px;
  }

  .zyc-grid-overlay {
    background-size: 40px 40px;
  }
}

@media (max-width: 480px) {
  .zyc-hero-section {
    min-height: 280px;
    padding: 30px 15px;
  }

  .zyc-hero-title {
    font-size: 36px;
  }
  .nav-wrapper img {
    width: 150px;
  }
  .zyc-breadcrumb {
    /* flex-direction: column; */
    gap: 5px;
    font-size: 11px;
  }
  .accent-shape-1 {
    display: none;
  }
  .zyc-title-line {
    width: 80px;
  }
  .section {
    padding: 20px !important;
  }
  .image-side {
    height: 250px !important;
  }
  .zyc-shape-2 {
    display: none;
  }
  .zyc-shape-1 {
    display: none;
  }
}
.block-service .icon {
  width: 105px;
  height: 105px;
  border: 8px solid #def1ff82;
}
.zyx-circular-text {
  display: none !important;
}
.block-service .line {
  top: 44px;
}
.block-service .title {
  font-size: 20px;
}
.block-service p {
  font-size: 16px;
}
/* service page */
#service {
  background-color: #f8f5f2 !important;
}
p.card-description {
  border-left: 2px solid #f44336;
  padding-left: 15px;
}
.service-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
}
/* Right Image Side */
.image-side {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

/* Main Image with Organic Shape */
.image-container {
  /* position: absolute; */
  width: 100%;
  height: 100%;
  /* top: 5%;
  right: 5%; */
  /* border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  animation: floatUp 3s ease-in-out infinite;
  transform: rotate(8deg); */
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Accent Shape 1 - Orange Circle */
.accent-shape-1 {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #ff6b35;
  border-radius: 50%;
  bottom: 50px;
  left: -20px;
  animation: pulse 3s ease-in-out infinite;
  z-index: -1;
  display: none;
}

/* Accent Shape 2 - Light Blue Circle */
.accent-shape-2 {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    rgba(100, 150, 255, 0.3),
    rgba(150, 200, 255, 0.1)
  );
  border-radius: 50%;
  top: -50px;
  right: -30px;
  z-index: -1;
}

/* Secondary Image Shape */
.image-secondary {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: -30px;
  left: -50px;
  border-radius: 20% 80% 80% 20% / 60% 20% 80% 40%;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  animation: floatDown 3s ease-in-out infinite;
  transform: rotate(-15deg);
  z-index: 1;
  display: none;
}

.image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.zyx-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* ===== LEFT SECTION ===== */
.zyx-left-section {
  position: relative;
  animation: zyx-slideInLeft 0.8s ease-out;
}

@keyframes zyx-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.zyx-circular-text {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.zyx-circular-text svg {
  width: 100%;
  height: 100%;
  animation: zyx-rotate 30s linear infinite;
}

@keyframes zyx-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.zyx-image-container {
  position: relative;
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #1a5f5f 0%, #2a8a8a 100%);
  aspect-ratio: 4/3;
  animation: zyx-slideUp 0.8s ease-out 0.2s both;
  height: 350px;
  width: 90%;
}

@keyframes zyx-slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zyx-placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
}

.zyx-description {
  margin-top: 20px;
  color: #131313;
  font-size: 16px;
  line-height: 1.6;
  /* max-width: 450px; */
  animation: zyx-fadeIn 0.8s ease-out 0.4s both;
}

@keyframes zyx-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.zyx-bottom-section {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: zyx-fadeIn 0.8s ease-out 0.6s both;
}

.zyx-btn-more {
  background: #c8e64f;
  color: #333;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.zyx-btn-more:hover {
  background: #b8d640;
  transform: translateX(5px);
}

.zyx-btn-more::after {
  content: "↗";
  font-size: 16px;
}

.zyx-team-avatars {
  display: flex;
  align-items: center;
  gap: 0;
}

.zyx-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -15px;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
  transition: all 0.3s ease;
}

.zyx-avatar:hover {
  transform: scale(1.2) translateY(-8px);
  z-index: 10;
}

.zyx-avatar:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #c8e64f, #b8d640);
  color: #333;
}

.zyx-impact-text {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  margin-left: 15px;
}

/* ===== RIGHT SECTION ===== */
.zyx-right-section {
  padding: 40px;
  animation: zyx-slideInRight 0.8s ease-out;
}

@keyframes zyx-slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.zyx-badge {
  display: inline-block;
  background: #c8e64f;
  color: #333;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: zyx-slideDown 0.8s ease-out both;
}

@keyframes zyx-slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zyx-main-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #000;
  font-weight: 800;
  animation: zyx-slideDown 0.8s ease-out 0.1s both;
}

.zyx-main-title .zyx-highlight {
  font-weight: 400;
  color: #888;
}

.zyx-stats-container {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.zyx-stat-circle {
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  text-align: center;
  transition: all 0.4s ease;
  animation: zyx-zoomIn 0.8s ease-out both;
  width: 35%;
}

.zyx-stat-circle:nth-child(1) {
  animation: zyx-zoomIn 0.8s ease-out 0.3s both;
}

.zyx-stat-circle:nth-child(2) {
  animation: zyx-zoomIn 0.8s ease-out 0.4s both;
}

@keyframes zyx-zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.zyx-stat-circle:hover {
  border-color: #c8e64f;
  box-shadow: 0 15px 40px rgba(200, 230, 79, 0.25);
  transform: translateY(-12px);
}

.zyx-stat-number {
  font-size: 56px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
  letter-spacing: -2px;
}

.zyx-stat-suffix {
  font-size: 32px;
  margin-left: 4px;
}

.zyx-stat-text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .zyx-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zyx-main-title {
    font-size: 36px;
  }

  .zyx-right-section {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .zyx-main-title {
    font-size: 28px;
  }

  .zyx-stats-container {
    grid-template-columns: 1fr;
  }

  .zyx-bottom-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .zyx-circular-text {
    width: 150px;
    height: 150px;
    top: -30px;
    left: -30px;
  }
}

/* About Page – fine-tuned mobile layout */
@media (max-width: 768px) {
  .about-page .zyx-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }

  .about-page .zyx-left-section {
    order: 1;
  }

  .about-page .zyx-right-section {
    order: 2;
    padding: 0 4px;
  }

  .about-page .zyx-image-container {
    width: 100%;
    height: 260px;
    margin-top: 20px;
  }

  .about-page .zyx-stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.zyx-placeholder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zyp-hero-section {
  /* min-height: 100vh; */
  position: relative;
  background: linear-gradient(135deg, #1a4d4a 0%, #0f3835 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Image Effect */
.zyp-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&h=900&fit=crop")
    center/cover;
  opacity: 0.35;
  z-index: 1;
}

/* Overlay */
.zyp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    #1273b66e 0%,
    rgba(10, 38, 37, 0.85) 100%
  );
  z-index: 2;
}

.zyp-container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  width: 100%;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Left Content Section */
.zyp-left-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.zyp-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
  animation: zyp-slide-in-left 0.8s ease-out;
}

.zyp-main-heading {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  animation: zyp-slide-in-left 0.8s ease-out 0.2s both;
  letter-spacing: -1px;
}

.zyp-button {
  display: inline-block;
  background: #ffffff;
  color: #0f3835;
  padding: 16px 40px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
  animation: zyp-slide-in-left 0.8s ease-out 0.4s both;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.zyp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Right Stats Section */
.zyp-right-stats {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.zyp-stats-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 40px;
}

.zyp-stat-item {
  display: flex;
  flex-direction: row;
  /* gap: 24px; */
  align-items: center;
  text-align: center;
  animation: zyp-fade-in-up 0.8s ease-out forwards;
  opacity: 0;
}
.zyp-stat-circle {
  width: 100px !important;
  height: 71px !important;
}
.zyp-stat-item {
  margin-bottom: 15px;
}
.zyp-stat-item:nth-child(1) {
  animation-delay: 0.5s;
}
.zyp-hero-section {
  padding: 20px !important;
}
.zyp-percentage {
  font-size: 20px !important;
}
.zyp-stat-item:nth-child(2) {
  animation-delay: 0.7s;
}

.zyp-stat-item:nth-child(3) {
  animation-delay: 0.9s;
}

.zyp-stat-circle {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zyp-circle-border {
  position: absolute;
  inset: 0;
  border: 6px solid var(--primary-color);
  border-radius: 50%;
  animation: zyp-circle-pop 0.6s ease-out forwards;
  opacity: 0;
}

.zyp-stat-item:nth-child(1) .zyp-circle-border {
  animation-delay: 0.5s;
}

.zyp-stat-item:nth-child(2) .zyp-circle-border {
  animation-delay: 0.7s;
}

.zyp-stat-item:nth-child(3) .zyp-circle-border {
  animation-delay: 0.9s;
}

.zyp-circle-inner {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.zyp-percentage {
  font-size: 25px;
  font-weight: 700;
  color: #0f3835;
  line-height: 1;
}

.zyp-stat-label {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 16px;
}

.zyp-stat-description {
  font-size: 14px;
  color: #b0d4d1;
  line-height: 1.6;
  max-width: 200px;
}

/* Animations */
@keyframes zyp-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zyp-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zyp-circle-pop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .zyp-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 40px;
  }

  .zyp-main-heading {
    font-size: 48px;
  }

  .zyp-stats-container {
    display: block !important;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .zyp-hero-section {
    min-height: auto;
    padding: 40px 0;
  }

  .zyp-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }

  .zyp-main-heading {
    font-size: 36px;
  }

  .zyp-stat-circle {
    width: 120px;
    height: 120px;
  }

  .zyp-circle-inner {
    inset: 10px;
  }

  .zyp-percentage {
    font-size: 40px;
  }

  .zyp-stats-container {
    gap: 30px;
  }

  .zyp-stat-item {
    gap: 16px;
  }

  .zyp-right-stats {
    gap: 60px;
  }
}

@media (max-width: 480px) {
  .zyp-container {
    padding: 30px 16px;
  }

  .zyp-main-heading {
    font-size: 28px;
  }

  .zyp-left-content {
    gap: 24px;
  }

  .zyp-stat-circle {
    width: 100px;
    height: 100px;
  }

  .zyp-circle-inner {
    inset: 8px;
  }

  .zyp-percentage {
    font-size: 32px;
  }
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 0px !important;
  }
  .zyp-stat-label {
    font-size: 16px;
  }
  .about-page .zyx-image-container {
    margin-top: 0 !important;
  }

  .zyp-stat-description {
    font-size: 13px;
  }
  .about_img_container {
    height: 250px !important;
  }
  .zyx-stat-circle {
    width: 150px;
    height: 150px;
  }
  .zyx-stat-number {
    font-size: 30px;
    margin-bottom: 0px;
  }
  .zyx-stats-container {
    margin-top: 0;
  }
  p {
    font-size: 1rem;
  }
  .card {
    padding: 15px;
  }
  .section {
    padding: 0px !important;
  }
}
.portfolio-card.aos-init.aos-animate img {
  object-fit: contain;
  width: 100%;
  height: auto;
  object-position: 80% 100%;
}

/* sigmamobile */

.zyp-right-stats {
  display: none;
}
/* ===== MAIN CONTENT GRID ===== */
.main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* ===== LEFT COLUMN ===== */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* PROJECT CONTENT */
/* .project-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 20px;
        } */

.project-image {
  background: var(--primary-pale);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-image:hover img {
  transform: scale(1.08);
}

.project-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-text p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
  margin-top: 30px;
}

/* FEATURES LIST */
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  /* padding: 12px 0; */
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: #fff;
}

/* PROJECT GALLERY */
/* .gallery-section {
            margin: 40px 0;
        } */

/* .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--text-dark);
        } */

.gallery-description {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 600px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  /* height: 300px; */
}

.gallery-main {
  background: var(--primary-pale);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-main img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-main:hover img {
  transform: scale(1.08);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery-thumb {
  background: var(--primary-pale);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-thumb:hover {
  border-color: var(--primary);
}

.gallery-thumb:hover img {
  transform: scale(1.1);
}

/* ===== RIGHT COLUMN - PROJECT INFO ===== */
.right-column {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  height: fit-content;
  position: sticky;
  top: 120px;
  box-shadow: 0 4px 16px rgba(18, 122, 193, 0.06);
}

.info-section {
  /* margin-bottom: 28px; */
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.info-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.info-detail {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-detail-icon {
  width: 20px;
  height: 20px;
  background: var(--primary-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--primary);
}

.sidebar-image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--primary-pale);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  display: none;
}

.sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CTA SECTION ===== */
.cta-block {
  background: linear-gradient(135deg, var(--primary) 0%, #0d5a8f 100%);
  color: white;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-description {
  font-size: 16px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(6px);
}

.cta-arrow {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-banner {
  animation: fadeInUp 0.7s ease-out;
}

.main-grid {
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.gallery-section {
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.cta-block {
  animation: fadeInUp 0.7s ease-out 0.4s both;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container {
    padding: 40px 24px;
  }

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

  .right-column {
    position: static;
  }

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

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

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

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

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

@media (max-width: 768px) {
  .container {
    padding: 32px 16px;
  }

  .hero-banner {
    padding: 40px 24px;
  }

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

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

  .right-column {
    padding: 24px;
  }

  .cta-block {
    padding: 40px 24px;
  }

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

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

/* Main Content Section */
.zyd-main-content {
  padding: 60px 20px;
  /* background-color: #f8f8f8; */
}

.zyd-container {
  max-width: 1200px;
  margin: 0 auto;
}

.zyd-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Left Side Box */
.zyd-left-box {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 30px;
  background-color: #f8f8f8;
}

.zyd-info-card {
  padding: 20px;
  background: white;
  border-left: 4px solid #127ac1;
  cursor: pointer;
  transition: all 0.3s ease;
  /* margin-bottom: -1px; */
  border-bottom: 1px solid #9a9a9a !important;
}

.zyd-info-card:hover {
  background-color: #f0f0f0;
  transform: translateX(5px);
}

.zyd-info-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.zyd-info-card p {
  font-size: 12px;
  opacity: 0.8;
  color: #666;
}

/* Right Side Content */
.zyd-right-content {
  display: flex;
  flex-direction: column;
}

.zyd-content-image {
  width: 100%;
  height: 280px;
  background: #e0e0e0;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.zyd-content-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.3;
}

.zyd-content-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.zyd-content-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 0;
}

.zyd-list-item {
  font-size: 16px;
  color: #666;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.zyd-list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #127ac1;
  font-weight: bold;
}

/* Need Help Section */
.zyd-help-section {
  background: linear-gradient(135deg, #127ac1, #0e5a96);
  color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 40px;
}

.zyd-help-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.zyd-help-section p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.zyd-phone {
  font-size: 36px;
  font-weight: 300;
  margin: 20px 0;
  letter-spacing: 2px;
}

.zyd-icon-text {
  font-size: 12px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.zyd-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: white;
  color: #127ac1;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zyd-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.zyd-button-primary {
  background-color: #1a1a1a;
  color: white;
  border: 2px solid #1a1a1a;
}

.zyd-button-primary:hover {
  background-color: #333;
}

.zyd-button-secondary {
  background-color: #f97316;
  color: white;
  border: none;
}

.zyd-button-secondary:hover {
  background-color: #ea6d0b;
}

/* Download Section */
.zyd-download-section {
  background-color: white;
  padding: 30px;
  border-radius: 0;
  text-align: center;
  margin-bottom: 40px;
}

.zyd-download-section h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.zyd-download-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .container {
    padding: 16px 16px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 0px;
  }
}

/* ========================================
   Testimonials (above footer)
   ======================================== */
.testimonial-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: calc(var(--spacing-xl) * 1.2) 0;
}

.testimonial-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--spacing-xl);
}

.testimonial-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.08);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.2vw, 2.25rem);
  margin: var(--spacing-sm) 0 var(--spacing-xs);
  color: var(--text-primary);
}

.testimonial-header p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 5rem;
  color: rgba(148, 163, 184, 0.12);
  pointer-events: none;
}

.testimonial-quote {
  color: var(--text-primary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 0 0, var(--primary-color), transparent 60%),
    var(--bg-primary);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-meta h3 {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-primary);
}

.testimonial-meta p {
  font-size: 0.8rem;
  margin: 2px 0 0;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: var(--spacing-xl) 0;
  }
}

/* new----------------------- */

.marquee-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 229, 255, 0.03);
  padding: 16px 0;
  /* margin-top: 50px; */
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* SECTION COMMONS */
section {
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: "//";
  color: var(--accent2);
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
}

/* SERVICES */

.servicesss-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 50px;
  margin-bottom: 50px;
  /* padding-bottom: 60px; */
  border-bottom: 1px solid var(--border);
}

.servicesss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--border);
  border: 1px solid var(--border);
}

.servicess-card {
  background: var(--bg2);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: none;
}
.servicess-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.06),
    rgba(124, 58, 237, 0.04)
  );
  transition: opacity 0.4s;
}
.servicess-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  background: var(--surface);
}

.service-card:hover .service-line {
  width: 100%;
}
.service-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  width: 0;
  transition: width 0.5s ease;
}

.service-num {
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  opacity: 0.7;
}

.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  background: rgba(0, 229, 255, 0.05);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.servicess-card:hover .service-icon {
  border-color: var(--accent);
  background: rgba(0, 229, 255, 0.1);
}

.servicess-title {
  /* font-family: "Syne", sans-serif; */
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  /* margin-bottom: 24px; */
}
.service-desc p {
  margin-bottom: 0;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.tag {
  padding: 4px 10px;
  border: 1px solid #e2e8f0;
  /* font-family: "Space Mono", monospace; */
  font-size: 14;
  color: #94a3b8;
  letter-spacing: 0.05em;
  /* text-transform: uppercase; */
  background: #f1f4f8;
  transition: all 0.2s;
  border-radius: 4px;
  font-weight: 600;
}
/* .service-cardss:hover .tag {
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.08);
}
.service-cardss:hover .tag:hover {
  border-color: var(--accent);
  background: rgba(0, 229, 255, 0.15);
}
.service-cardss:hover .tag:active {
  background: rgba(0, 229, 255, 0.25);
} */
.service-cardss {
  transition: all 0.3s ease;
}
.service-cardss:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 24px rgba(0, 229, 255, 0.2); */
}
.service-cardss {
  background: var(--bg2);
  padding: 30px 30px;
  position: relative;
  overflow: hidden;
  /* cursor: none; */
  border: 1px solid var(--primary-color);
  border-radius: 20px;
}
.service-desc p {
  margin-bottom: 0 !important;
}
.service-cardss::before {
  content: "";
  position: absolute;
}
/* ── APPROACH ── */
.approach {
  background: #f8f8f8;
  padding: 50px 0;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  margin-top: 50px;
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.approach-step {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #dadada;
  transition: all 0.25s var(--ease);
  cursor: default;
}
span.ti-icon svg {
  width: 45px;
}
.approach-step:first-child {
  padding-top: 0;
}
.approach-step:last-child {
  border-bottom: none;
}

.approach-step:hover .step-num-box {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-dark);
}
.step-num-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink3);
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}

.step-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 18px;
  color: var(--ink2);
  line-height: 1.6;
}

/* ── TECH ── */
.tech {
  padding: 50px 0;
  background: var(--bg);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 52px;
}

.tech-item {
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s var(--ease);
  cursor: default;
}

.tech-item:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.tech-item .ti-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.tech-item .ti-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  letter-spacing: 0.02em;
}

.tech-item:hover .ti-name {
  color: var(--blue);
}
@media (max-width: 768px) {
  .servicesss-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .approach-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .servicesss-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .servicesss-header {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .approach {
    padding-top: 20px;
    padding-bottom: 0px;
    margin-top: 20px;
  }
  .tech {
    padding: 20px 0px;
  }
  .service-cardss {
    background: var(--bg2);
    padding: 24px 20px;
  }
  .step-content h4 {
    font-size: 18px;
  }
}
/* ── FAQ ── */
.zyp-faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.zyp-faq-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.zyp-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 17px;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  transition: color 0.2s;
}
.zyp-faq-q:hover {
  color: #f97316;
}
.zyp-faq-ico {
  font-size: 30px;
  color: #f97316;
  transition: transform 0.3s;
}
.zyp-faq-item.zyp-open .zyp-faq-ico {
  transform: rotate(45deg);
}
.zyp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  font-size: 18px;
  color: var(--zyp-text-sec);
  line-height: 1.8;
  padding: 0 17px;
}
.zyp-faq-item.zyp-open .zyp-faq-a {
  max-height: 200px;
  padding: 0 17px 15px;
}

/* new css for review and people area */
.review-and-people-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-and-people-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rating-area {
  display: flex;
  /* align-items: center; */
  gap: 7px;
  position: relative;
}
.rating-area .review p {
  color: #000;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin: 0;
}
.star i {
  color: #e62415;
  font-size: 12px;
}
.review-and-people-area {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.star {
  line-height: 0 !important;
  margin-bottom: 5px;
}
.review img {
  width: 90px;
}
.logos-slide .swiper-wrapper {
  align-items: center;
}
.logos-slide .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  padding: 10px 16px;
  margin: 0 10px;
  overflow: visible;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.logos-slide .swiper-slide:hover {
  transform: translateY(-3px);
  border-color: #d1d5db;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}
.logos-slide .swiper-slide img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.02);
}
article.container.legal-doc.aos-init.aos-animate h2 {
  font-size: 22px !important;
}

article.container.legal-doc.aos-init.aos-animate ul {
  margin-bottom: 15px !important;
}
.shilpokars-hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 64px;
  background: linear-gradient(125deg, #0f172a 0%, #1e293b 38%, #172554 100%);
  color: #f8fafc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shilpokars-hero-glow {
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.28) 0%,
    transparent 68%
  );
  top: -180px;
  right: -100px;
  pointer-events: none;
}

.shilpokars-hero-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
  pointer-events: none;
  opacity: 0.55;
}

.shilpokars-hero-inner {
  position: relative;
  z-index: 1;
}

.shilpokars-hero-crumb {
  margin-bottom: 1.35rem;
}

.shilpokars-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 400px);
  gap: 2.75rem;
  align-items: center;
}

.shilpokars-hero-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold, #fbbf24);
}

.shilpokars-hero-title {
  margin: 0 0 0.85rem;
  font-size: clamp(2.2rem, 4.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
}

.shilpokars-hero-title-accent {
  display: block;
  margin-top: 0.2rem;
  font-weight: 600;
  font-size: 0.38em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.shilpokars-hero-rule {
  width: 72px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    rgba(255, 107, 53, 0.35)
  );
  margin-bottom: 1.1rem;
}

.shilpokars-hero-lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.88);
}

.shilpokars-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.shilpokars-hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}

.shilpokars-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.shilpokars-hero-visual {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 107, 53, 0.45);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.shilpokars-hero-visual img {
  display: block;
  width: 100%;
  /* height: auto; */
  object-fit: cover;
}

@media (max-width: 900px) {
  .shilpokars-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .shilpokars-hero {
    padding: 100px 0 64px;
  }

  .shilpokars-hero-visual {
    max-width: 440px;
    margin: 0 auto;
  }
}
.alert {
  padding: 12px 15px;
  margin-top: 15px;
  border-radius: 4px;
  font-size: 14px;
}

/* Success */
.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

/* Danger */
.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
