/* ==========================================================================
   ADWISE LABS - CORE STYLESHEET (Inspired by Choicy Home-03 Motion & Design)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Primary Colors */
  --chy-pr-1: #E60012;
  --chy-pr-2: #B30006;
  --chy-pr-3: #E60012; /* Emerald green with better contrast on light theme */
  --chy-pr-4: #FF2E4D;
  --chy-pr-5: #8B0000;
  --chy-sd-1: #C7080F;
  --chy-accent: #E60012;
  
  /* Gradients */
  --chy-gd-1: linear-gradient(135deg, #E60012 0%, #B30006 100%);
  --chy-gd-2: linear-gradient(90deg, #FF2E4D 0%, #E60012 50%, #B30006 100%);
  --chy-gd-dark: linear-gradient(180deg, #FAFAFB 0%, #FFFFFF 100%);
  --chy-gd-card: linear-gradient(135deg, rgba(230, 0, 18, 0.04) 0%, rgba(230, 0, 18, 0.01) 100%);
  --chy-gd-glow: radial-gradient(circle at center, rgba(230, 0, 18, 0.08) 0%, transparent 70%);

  /* Neutrals & Light Theme */
  --chy-bg-main: #FAFAFB;
  --chy-bg-secondary: #F4F5F8;
  --chy-bg-card: #FFFFFF;
  --chy-bg-card-hover: #FFFBFB;
  --chy-border: rgba(230, 0, 18, 0.12);
  --chy-border-hover: rgba(230, 0, 18, 0.4);
  
  /* Typography Colors (Light Theme) */
  --chy-heading: #0B0F19; /* Rich deep plum/purple */
  --chy-body: #334155;    /* Soft dark violet-gray */
  --chy-body-light: #1E293B;
  --chy-muted: #64748B;

  /* Fonts */
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Urbanist', sans-serif;

  /* Shadows (Tuned for Light Theme) */
  --shadow-sm: 0 4px 6px -1px rgba(230, 0, 18, 0.04), 0 2px 4px -1px rgba(230, 0, 18, 0.02);
  --shadow-md: 0 10px 25px -3px rgba(230, 0, 18, 0.08), 0 4px 6px -2px rgba(230, 0, 18, 0.04);
  --shadow-lg: 0 20px 40px -5px rgba(230, 0, 18, 0.12);
  --shadow-crimson: 0 10px 30px -5px rgba(230, 0, 18, 0.25);
  --shadow-glow: 0 0 35px rgba(230, 0, 18, 0.12);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE ELEMENTS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--chy-bg-main);
  color: var(--chy-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-normal);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & HEADINGS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .chy-heading-1 {
  font-family: var(--font-heading);
  color: var(--chy-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.chy-subtitle-3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--chy-pr-3);
  margin-bottom: 1rem;
  position: relative;
}

.chy-subtitle-3.isShape::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--chy-pr-1);
  border-radius: 3px;
  transform: rotate(45deg);
}

.chy-subtitle-3.isShape::after {
  content: '';
  display: inline-block;
  width: 35px;
  height: 2px;
  background: var(--chy-gd-1);
  margin-left: 8px;
}

.chy-title-3 {
  margin-bottom: 1.25rem;
}

.chy-para-3 {
  font-size: 1.0625rem;
  color: var(--chy-body);
  max-width: 650px;
}

/* --------------------------------------------------------------------------
   4. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container, .chy-container-1 {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   5. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.chy-pr-btn-4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  background: var(--chy-gd-1);
  border-radius: 9999px;
  box-shadow: var(--shadow-crimson);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.chy-pr-btn-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #B30006 0%, #E60012 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.chy-pr-btn-4:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(230, 0, 18, 0.6);
  color: #fff;
}

.chy-pr-btn-4:hover::before {
  opacity: 1;
}

.chy-pr-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  border: 2px solid var(--chy-border);
  border-radius: 9999px;
  transition: all var(--transition-normal);
}

.chy-pr-btn-outline:hover {
  border-color: var(--chy-pr-1);
  background: rgba(230, 0, 18, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   6. HEADER & NAVIGATION (Choicy Sticky & Drawer)
   -------------------------------------------------------------------------- */
.chy-header-3-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition-normal);
}

.chy-header-3-area.tx-sticky-active {
  background: rgba(249, 247, 253, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--chy-border);
  box-shadow: 0 10px 30px rgba(230, 0, 18, 0.06);
}

.chy-header-3-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.chy-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chy-header-3-area .logo-dark { display: none; }
.chy-header-3-area .logo-light { display: block; }

.chy-header-3-area.tx-sticky-active .logo-light { display: none; }
.chy-header-3-area.tx-sticky-active .logo-dark { display: block; }

.chy-logo-text {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--chy-heading);
  display: flex;
  align-items: center;
  letter-spacing: -0.03em;
}

.chy-logo-text .accent {
  background: var(--chy-gd-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 2px;
}

.chy-logo-text .badge-ai {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--chy-pr-1);
  background: rgba(230, 0, 18, 0.12);
  border: 1px solid rgba(230, 0, 18, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Nav Menu */
.chy-main-menu-3 nav ul {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.chy-main-menu-3 nav ul li a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--chy-body);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.chy-main-menu-3 nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--chy-gd-1);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.chy-main-menu-3 nav ul li a:hover,
.chy-main-menu-3 nav ul li.active a {
  color: var(--chy-heading);
}

.chy-main-menu-3 nav ul li a:hover::after,
.chy-main-menu-3 nav ul li.active a::after {
  width: 100%;
}

/* Header Actions */
.chy-header-3-action-btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.chy-call-1-btn-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chy-call-1-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(230, 0, 18, 0.12);
  border: 1px solid rgba(230, 0, 18, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chy-pr-1);
  font-size: 1.1rem;
  transition: all var(--transition-normal);
}

.chy-call-1-btn-wrap:hover .chy-call-1-icon {
  background: var(--chy-gd-1);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(230, 0, 18, 0.5);
}

.chy-call-1-content {
  display: flex;
  flex-direction: column;
}

.chy-call-1-content .text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--chy-muted);
}

.chy-call-1-content .phone {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--chy-heading);
}

/* Mobile Toggle */
.chy-menu-btn-1 {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--chy-bg-card);
  border: 1px solid var(--chy-border);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--chy-heading);
  transition: all var(--transition-fast);
}

.chy-menu-btn-1:hover {
  border-color: var(--chy-pr-1);
}

@media (max-width: 991px) {
  .chy-main-menu-3, .chy-call-1-btn-wrap {
    display: none;
  }
  .chy-menu-btn-1 {
    display: flex;
  }
}

/* Fullscreen Mobile Menu Drawer */
.fullpage-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(249, 247, 253, 0.98);
  backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullpage-menu.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.fullpage-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--chy-bg-card);
  border: 1px solid var(--chy-border);
  color: var(--chy-heading);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.fullpage-menu-close:hover {
  background: var(--chy-pr-1);
  color: #fff;
  transform: rotate(90deg);
}

.fullpage-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.fullpage-nav ul li a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--chy-heading);
  transition: all var(--transition-normal);
}

.fullpage-nav ul li a:hover {
  background: var(--chy-gd-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(10px);
}

/* --------------------------------------------------------------------------
   7. HERO SECTION (Choicy Animated Slider)
   -------------------------------------------------------------------------- */
.chy-hero-3-area {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  background-color: var(--chy-bg-main);
  overflow: hidden;
}

.chy-hero-slider {
  position: relative;
  width: 100%;
}

.chy-hero-slide {
  display: none;
  opacity: 0;
  position: relative;
  transition: opacity 0.8s ease-in-out;
}

.chy-hero-slide.active {
  display: block;
  opacity: 1;
}

/* Slide Background Image Layer with Ken Burns Motion */
.chy-hero-slide-bg {
  position: absolute;
  top: -140px;
  left: 0;
  width: 100vw;
  height: calc(100% + 220px);
  margin-left: calc(-50vw + 50%);
  background-size: cover;
  background-position: center right;
  z-index: 1;
  transform: scale(1);
  transition: transform 7s ease-out;
  pointer-events: none;
}

.chy-hero-slide.active .chy-hero-slide-bg {
  transform: scale(1.06);
}

.chy-hero-slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--chy-bg-main) 0%, rgba(249, 247, 253, 0.94) 38%, rgba(249, 247, 253, 0.65) 70%, rgba(249, 247, 253, 0.25) 100%),
              linear-gradient(180deg, rgba(249, 247, 253, 0.4) 0%, transparent 45%, var(--chy-bg-main) 100%);
}

.chy-hero-3-item {
  position: relative;
  z-index: 3;
}

.hero-3-subtitle {
  font-size: 1.125rem;
  color: var(--chy-pr-3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.hero-3-title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.hero-3-title-2 {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  background: var(--chy-gd-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-3-desc {
  font-size: 1.25rem;
  color: var(--chy-body-light);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Floating Parallax Badges */
.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.il-img-1 {
  position: absolute;
  top: 25%;
  right: 12%;
  width: 220px;
  padding: 16px;
  background: rgba(21, 28, 46, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--chy-border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  animation: floatAnimation1 6s ease-in-out infinite;
}

.il-img-2 {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 260px;
  padding: 18px;
  background: rgba(21, 28, 46, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--chy-border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  animation: floatAnimation2 7s ease-in-out infinite alternate;
}

@media (max-width: 991px) {
  .hero-floating-elements {
    display: none;
  }
}

/* Hero Controls */
.chy-hero-2-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.chy_hero_btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--chy-bg-card);
  border: 1px solid var(--chy-border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.chy_hero_btn:hover {
  background: var(--chy-gd-1);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: var(--shadow-crimson);
}

/* --------------------------------------------------------------------------
   8. CLIENTS MARQUEE (GSK, Finemark, Gota, Words, etc.)
   -------------------------------------------------------------------------- */
.chy-client-marquee-area {
  padding: 40px 0;
  border-top: 1px solid var(--chy-border);
  border-bottom: 1px solid var(--chy-border);
  background: rgba(15, 21, 35, 0.5);
  overflow: hidden;
  position: relative;
}

.marquee-wrapper {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-wrapper:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--chy-body);
  padding: 10px 24px;
  background: var(--chy-bg-card);
  border: 1px solid var(--chy-border);
  border-radius: 9999px;
  transition: all var(--transition-normal);
}

.marquee-item:hover {
  border-color: var(--chy-pr-1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-crimson);
}

/* --------------------------------------------------------------------------
   9. SERVICES & 3D TILT CARDS (`tilt_scale`)
   -------------------------------------------------------------------------- */
.chy-services-3-area {
  background: var(--chy-bg-main);
  position: relative;
}

.tilt_scale {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow var(--transition-normal), border-color var(--transition-normal);
  will-change: transform;
}

.chy-services-3-item {
  background: var(--chy-bg-card);
  border: 1px solid var(--chy-border);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.chy-services-3-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(230, 0, 18, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.chy-services-3-item:hover {
  border-color: var(--chy-border-hover);
  background: var(--chy-bg-card-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  transform: translateY(-8px);
}

.chy-services-3-item:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  background: rgba(230, 0, 18, 0.1);
  border: 1px solid rgba(230, 0, 18, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--chy-pr-1);
  margin-bottom: 1.75rem;
  transition: all var(--transition-normal);
}

.chy-services-3-item:hover .service-icon-box {
  background: var(--chy-gd-1);
  color: #fff;
  transform: rotate(6deg) scale(1.1);
  box-shadow: var(--shadow-crimson);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--chy-body);
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--chy-pr-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-link i {
  transition: transform var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Service Stats Box */
.chy-services-2-work {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--chy-bg-card);
  border: 1px solid var(--chy-border);
  border-radius: 16px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.chy-services-2-work .badge-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--chy-gd-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.chy-services-2-work .number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

/* Circular Technology Showcase Grid */
.tech-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.tech-circle-card {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  transition: all var(--transition-normal);
  cursor: pointer;
  margin: 0 auto;
}

.tech-circle-card:hover {
  border-color: #27f67a;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(39, 246, 122, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.tech-brand-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform var(--transition-normal);
}

.tech-circle-card:hover .tech-brand-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.tech-circle-card.web-design .tech-brand-icon-wrap {
  background: #a21245; /* Crimson Elementor look */
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.tech-circle-card.html5 .tech-brand-icon-wrap {
  background: transparent;
  color: #e34f26;
  font-size: 2.5rem;
}

.tech-circle-card.wordpress .tech-brand-icon-wrap {
  background: transparent;
  color: #21759b;
  font-size: 2.5rem;
}

.tech-circle-card.react .tech-brand-icon-wrap {
  background: transparent;
  color: #61dafb;
  font-size: 2.5rem;
}

.tech-circle-card.css3 .tech-brand-icon-wrap {
  background: transparent;
  color: #1572b6;
  font-size: 2.5rem;
}

.tech-circle-card.javascript .tech-brand-icon-wrap {
  background: #f7df1e;
  color: #000;
  border-radius: 8px; /* Square yellow JS badge */
  width: 44px;
  height: 44px;
  font-size: 1.85rem;
}

.tech-circle-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

/* Green Started Button */
.btn-green-started {
  background: #27f67a;
  color: #0a0d14;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 15px 36px;
  border-radius: 4px; /* Rectangular pill as in the screenshot */
  box-shadow: 0 4px 15px rgba(39, 246, 122, 0.4);
  transition: all var(--transition-normal);
  display: inline-block;
  text-transform: uppercase;
}

.btn-green-started:hover {
  background: #fff;
  color: #0a0d14;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Work Completed Showcase */
.work-completed-showcase {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.work-completed-img {
  width: 130px;
  height: 65px;
  border-radius: 32px; /* Pill shaped rounded corners */
  object-fit: cover;
  border: 1px solid var(--chy-border);
}

.work-completed-text-wrap {
  display: flex;
  flex-direction: column;
}

.work-completed-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.work-completed-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #27f67a; /* Green counter */
  line-height: 1;
  font-family: var(--font-heading);
}

/* --------------------------------------------------------------------------
   10. EXCELLENCE & ABOUT SECTION (Layered Images & Features)
   -------------------------------------------------------------------------- */
.chy-research-3-area {
  background: var(--chy-bg-secondary);
  position: relative;
}

.chy-research-3-img {
  position: relative;
}

.chy-research-3-img .main-img-1 {
  border-radius: 20px;
  border: 1px solid var(--chy-border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 85%;
}

.chy-research-3-img .main-img-2 {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 60%;
  border-radius: 16px;
  border: 3px solid var(--chy-bg-secondary);
  box-shadow: var(--shadow-crimson);
  overflow: hidden;
}

.chy-research-3-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.chy-research-3-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--chy-heading);
}

.chy-research-3-list li i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(39, 246, 122, 0.15);
  color: var(--chy-pr-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   11. EXPANDABLE PROJECT ACCORDION (`chy-testimonial-3-item`)
   -------------------------------------------------------------------------- */
.chy-accordion-section {
  background: var(--chy-bg-main);
}

.chy-testimonial-3-item {
  background: var(--chy-bg-card);
  border: 1px solid var(--chy-border);
  border-radius: 20px;
  padding: 2.25rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 80px 1.5fr 2fr 180px 70px;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.chy-testimonial-3-item .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--chy-muted);
  transition: color var(--transition-normal);
}

.chy-testimonial-3-item .subtitle {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--chy-pr-3);
  margin-bottom: 0.25rem;
}

.chy-testimonial-3-item .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.chy-testimonial-3-item .bio {
  font-size: 0.875rem;
  color: var(--chy-muted);
  font-weight: 600;
}

.chy-testimonial-3-item .disc {
  font-size: 0.95rem;
  color: var(--chy-body);
  line-height: 1.5;
}

.chy-testimonial-3-item .main-img {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--chy-border);
  opacity: 0.7;
  transition: all var(--transition-normal);
}

.chy-testimonial-3-item .p3-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--chy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all var(--transition-normal);
}

.chy-testimonial-3-item:hover,
.chy-testimonial-3-item.active {
  background: var(--chy-bg-card-hover);
  border-color: var(--chy-pr-1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  transform: scale(1.01);
}

.chy-testimonial-3-item:hover .number,
.chy-testimonial-3-item.active .number {
  color: var(--chy-pr-1);
}

.chy-testimonial-3-item:hover .main-img,
.chy-testimonial-3-item.active .main-img {
  opacity: 1;
  transform: scale(1.05);
}

.chy-testimonial-3-item:hover .p3-btn,
.chy-testimonial-3-item.active .p3-btn {
  background: var(--chy-gd-1);
  border-color: transparent;
  transform: rotate(45deg);
  box-shadow: var(--shadow-crimson);
}

@media (max-width: 1024px) {
  .chy-testimonial-3-item {
    grid-template-columns: 60px 1fr 1fr;
    gap: 1.5rem;
  }
  .chy-testimonial-3-item .main-img,
  .chy-testimonial-3-item .p3-btn {
    display: none;
  }
}

@media (max-width: 640px) {
  .chy-testimonial-3-item {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   12. STATS & LIVE COUNTER SECTION
   -------------------------------------------------------------------------- */
.chy-counter-area {
  background: var(--adwise-beige);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 80px 0;
}

.chy-counter-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.chy-counter-item:hover {
  border-color: rgba(230, 0, 18, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(230, 0, 18, 0.06);
}

.chy-counter-item .number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--adwise-charcoal);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.chy-counter-item .number .symbol {
  color: var(--adwise-accent);
}

.chy-counter-item .title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   13. PORTFOLIO & PROJECTS GRID (Filterable & Modal Preview)
   -------------------------------------------------------------------------- */
.portfolio-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--chy-body);
  background: var(--chy-bg-card);
  border: 1px solid var(--chy-border);
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--chy-gd-1);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-crimson);
}

.project-card {
  background: var(--chy-bg-card);
  border: 1px solid var(--chy-border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.project-card:hover {
  border-color: var(--chy-border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.project-card-img {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #111827;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-img img {
  transform: scale(1.08);
}

.project-card-body {
  padding: 1.75rem;
}

.project-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--chy-pr-3);
  margin-bottom: 0.5rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.project-client {
  font-size: 0.875rem;
  color: var(--chy-muted);
}

/* Lightbox Modal */
.chy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  background: rgba(10, 13, 20, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  padding: 1.5rem;
}

.chy-modal.active {
  opacity: 1;
  visibility: visible;
}

.chy-modal-content {
  background: var(--chy-bg-card);
  border: 1px solid var(--chy-border);
  border-radius: 24px;
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.chy-modal.active .chy-modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--chy-border);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--chy-pr-1);
}

/* --------------------------------------------------------------------------
   14. CONTACT FORM & FAQ ACCORDION
   -------------------------------------------------------------------------- */
.contact-form-box {
  background: var(--chy-bg-card);
  border: 1px solid var(--chy-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--chy-body-light);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 13, 20, 0.6);
  border: 1px solid var(--chy-border);
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--chy-pr-1);
  box-shadow: 0 0 15px rgba(230, 0, 18, 0.3);
  background: rgba(10, 13, 20, 0.9);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* FAQ Accordion */
.faq-item {
  background: var(--chy-bg-card);
  border: 1px solid var(--chy-border);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform var(--transition-normal);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--chy-body);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.35s ease;
}

.faq-item.active {
  border-color: var(--chy-pr-1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--chy-pr-1);
  color: #fff;
}

.faq-item.active .faq-body {
  max-height: 250px;
  padding-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   15. FOOTER & BACK TO TOP
   -------------------------------------------------------------------------- */
.chy-footer-area {
  background: #07090e;
  border-top: 1px solid var(--chy-border);
  padding-top: 90px;
  padding-bottom: 30px;
  position: relative;
}

.footer-widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links li a {
  color: #a0aec0;
  font-size: 0.95rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid var(--chy-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--chy-muted);
}

/* Floating WhatsApp Action Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 172px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  animation: waPulse 3s infinite;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff !important;
}

.whatsapp-float-btn .whatsapp-tooltip {
  position: absolute;
  right: 70px;
  left: auto;
  background: #0B0F19;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.whatsapp-float-btn .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  left: auto;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #0B0F19;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ==========================================================================
   ADWISE LABS REDESIGN - CAPSULE HEADER & WARM BEIGE HERO SECTION
   ========================================================================== */
:root {
  --adwise-brand: #E60012;
  --adwise-brand-hover: #B30006;
  --adwise-brand-bg: rgba(230, 0, 18, 0.06);
  --adwise-accent: #E60012;
  --adwise-accent-hover: #B30006;
  --adwise-accent-bg: rgba(230, 0, 18, 0.08);
  --adwise-beige: #FAFAFB; /* Matches --chy-bg-main */
  --adwise-charcoal: #0B0F19; /* Matches --chy-heading */
}

/* Redesigned Floating Capsule Header */
.chy-header-3-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition-normal);
  background: transparent;
}

.chy-header-3-area.tx-sticky-active {
  background: rgba(245, 239, 235, 0.85); /* Matches warm beige base with glassmorphism */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Center Capsule Navigation Menu */
.chy-main-menu-3 {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 6px 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
}

.chy-main-menu-3 nav ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chy-main-menu-3 nav ul li {
  margin: 0;
}

.chy-main-menu-3 nav ul li a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #333333;
  padding: 8px 18px;
  border-radius: 9999px;
  transition: all var(--transition-fast) !important;
  display: inline-block;
  position: relative;
}

.chy-main-menu-3 nav ul li a::after {
  display: none !important; /* Disable standard sliding underline */
}

/* Hover & Active Nav Highlights (Brand Purple) */
.chy-main-menu-3 nav ul li a:hover {
  background: rgba(230, 0, 18, 0.05);
  color: var(--adwise-brand) !important;
}

.chy-main-menu-3 nav ul li.active a {
  background: var(--adwise-brand-bg) !important;
  color: var(--adwise-brand) !important;
  font-weight: 700;
}

/* Header Actions */
.chy-header-3-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme Toggle Button (Moon) */
.theme-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--adwise-charcoal);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--adwise-brand-bg);
  color: var(--adwise-brand);
  transform: scale(1.05);
}

/* Language selector */
.lang-selector-btn {
  height: 42px;
  padding: 0 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--adwise-charcoal);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: all var(--transition-fast);
}

.lang-selector-btn:hover {
  background: var(--adwise-brand-bg);
  color: var(--adwise-brand);
  transform: scale(1.02);
}

/* Book a Meeting CTA Button (Brand Purple) */
.book-meeting-btn {
  height: 44px;
  padding: 0 24px;
  border-radius: 9999px;
  background: var(--adwise-brand);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 15px rgba(230, 0, 18, 0.25);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.book-meeting-btn::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}

.book-meeting-btn:hover {
  background: var(--adwise-brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 0, 18, 0.35);
  color: #ffffff;
}

/* Redesigned Hero Section */
.adwise-hero {
  position: relative;
  background-color: var(--adwise-beige);
  padding-top: 170px;
  padding-bottom: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.adwise-hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .adwise-hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
}

.adwise-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .adwise-hero-left {
    align-items: center;
  }
}

/* Tagline top styling (Brand Red Accent) */
.adwise-hero-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--chy-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.adwise-hero-tagline::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--adwise-accent);
  display: inline-block;
}

.adwise-hero-tagline span {
  color: var(--adwise-accent);
  font-weight: 700;
}

/* Pill badge styling (Brand Red Accent) */
.adwise-hero-badge {
  display: inline-block;
  background-color: var(--adwise-accent-bg);
  color: var(--adwise-accent);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 1.75rem;
}

/* Heading styling */
.adwise-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  font-weight: 800;
  color: var(--adwise-charcoal);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.adwise-hero-title span {
  color: var(--adwise-accent);
}

/* Paragraph styling */
.adwise-hero-desc {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  color: var(--chy-body);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

/* Buttons styling */
.adwise-hero-btns {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .adwise-hero-btns {
    justify-content: center;
    width: 100%;
  }
}

.adwise-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--adwise-brand);
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(230, 0, 18, 0.2);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.adwise-btn-primary:hover {
  background-color: var(--adwise-brand-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(230, 0, 18, 0.35);
  color: #ffffff;
}

.adwise-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--adwise-charcoal);
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 9999px;
  transition: all var(--transition-normal);
  cursor: pointer;
  background: transparent;
}

.adwise-btn-outline:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

/* Testimonial footer style */
.adwise-hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.adwise-trust-avatars {
  display: flex;
  align-items: center;
}

.adwise-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--adwise-beige);
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.adwise-avatar:first-child {
  margin-left: 0;
}

.adwise-avatar-1 { background-color: var(--adwise-brand); }
.adwise-avatar-2 { background-color: var(--adwise-charcoal); }
.adwise-avatar-3 { background-color: #7d8b5c; }
.adwise-avatar-4 { background-color: #e6a782; }

.adwise-trust-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--chy-body);
  line-height: 1.5;
  max-width: 320px;
}

.adwise-trust-text strong {
  color: var(--adwise-charcoal);
}

/* Right column layout with 3D Software House Graphic */
.adwise-hero-right {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.adwise-hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 28px;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.adwise-hero-img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 25px 60px -10px rgba(11, 15, 25, 0.12), 0 0 40px rgba(230, 0, 18, 0.08);
  border: 1px solid rgba(230, 0, 18, 0.1);
  background: #FFFFFF;
}

/* Modern Floating Glassmorphism Tech Badges */
.hero-tech-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(230, 0, 18, 0.15);
  box-shadow: 0 12px 30px rgba(11, 15, 25, 0.08), 0 0 20px rgba(230, 0, 18, 0.05);
  padding: 10px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  pointer-events: none;
  animation: floatAnimation2 7s ease-in-out infinite;
}

.hero-tech-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--chy-heading);
  line-height: 1.2;
}

.hero-tech-badge span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--chy-muted);
}

.badge-ai-engine {
  top: -15px;
  left: -20px;
  animation-delay: 0s;
}

.badge-growth-stat {
  bottom: -20px;
  right: -15px;
  animation-delay: 2s;
}

@media (max-width: 640px) {
  .badge-ai-engine {
    top: -10px;
    left: 0;
  }
  .badge-growth-stat {
    bottom: -15px;
    right: 0;
  }
}

/* ==========================================================================
   PROBLEM / SOLUTION CARDS SECTION
   ========================================================================== */

/* Subheader Banner (Brand Red/Orange) */
.adwise-subheader-banner {
  background-color: var(--adwise-accent);
  padding: 14px 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 30s linear infinite;
}

.adwise-subheader-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin: 0;
  display: flex;
  align-items: center;
  padding-right: 20px;
}

.adwise-subheader-text span {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  margin: 0 16px;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   ADWISE LABS - FEATURED CASE STUDY BANNER SHOWCASE
   ========================================================================== */
.adwise-case-study-banner-section {
  padding: 60px 0 80px 0;
  background-color: var(--adwise-beige);
  position: relative;
}

.case-study-banner-frame {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 28px;
  background: #ffffff;
  padding: 10px;
  border: 1.5px solid rgba(230, 0, 18, 0.18);
  box-shadow: 0 16px 50px rgba(11, 15, 25, 0.08), 0 4px 20px rgba(230, 0, 18, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  position: relative;
}

.case-study-banner-frame:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 0, 18, 0.38);
  box-shadow: 0 24px 60px rgba(230, 0, 18, 0.14), 0 8px 30px rgba(11, 15, 25, 0.08);
}

.case-study-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

/* ==========================================================================
   ADWISE LABS REDESIGN - SERVICES SECTION (3x3 Grid of 9 Cards)
   ========================================================================== */
.adwise-services-section {
  background-color: var(--adwise-beige);
  padding: 100px 0;
}

.adwise-services-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.adwise-services-badge {
  display: inline-block;
  background-color: var(--adwise-accent-bg);
  color: var(--adwise-accent);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.adwise-services-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: var(--adwise-charcoal);
  line-height: 1.2;
  margin-bottom: 0;
}

.adwise-services-title span {
  color: var(--adwise-accent);
}

.adwise-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
}

@media (max-width: 868px) {
  .adwise-services-grid {
    grid-template-columns: 1fr;
  }
}

.adwise-service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  cursor: pointer;
}

.adwise-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(230, 0, 18, 0.08);
  border-color: rgba(230, 0, 18, 0.2);
}

.adwise-service-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.adwise-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.adwise-service-card:hover .adwise-service-img {
  transform: scale(1.05);
}

/* Number bubble inside image */
.adwise-service-number {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--adwise-accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.adwise-service-title-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--adwise-charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.adwise-service-desc-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #555555;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.adwise-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.adwise-service-tags span {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #333333;
  background: rgba(240, 243, 248, 0.85);
  padding: 5px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: inline-flex;
  align-items: center;
}

.adwise-service-link {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--adwise-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast), transform var(--transition-fast);
  margin-top: auto;
}

.adwise-service-card:hover .adwise-service-link {
  color: var(--adwise-accent-hover);
  transform: translateX(4px);
}

.adwise-service-link i {
  transition: transform var(--transition-fast);
}

.adwise-service-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   ADWISE LABS REDESIGN - OUR TOOLBOX INFINITE MARQUEE SECTION
   ========================================================================== */
.adwise-toolbox-section {
  background-color: var(--adwise-beige);
  padding: 60px 0 80px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.adwise-toolbox-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.adwise-toolbox-subtitle {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #8D8478; /* Soft golden-brown color matching the reference image */
}

/* Horizontal Marquee Scroll Container */
.adwise-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

/* Mask gradients at left and right edges for smooth fading */
.adwise-marquee-container::before,
.adwise-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.adwise-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--adwise-beige) 0%, transparent 100%);
}

.adwise-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--adwise-beige) 0%, transparent 100%);
}

/* Track containing lists */
.adwise-marquee-track {
  display: flex;
  width: max-content;
  animation: adwiseMarquee 35s linear infinite;
}

/* Pause on hover */
.adwise-marquee-track:hover {
  animation-play-state: paused;
}

/* Individual list inside track */
.adwise-marquee-list {
  display: flex;
  align-items: center;
  gap: 3.5rem; /* Gap between items */
  padding-right: 3.5rem; /* Matches the gap for seamless transition */
}

/* Toolbox Item wrapper (card + name) */
.adwise-toolbox-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 80px;
  text-align: center;
}

/* Rounded square card */
.adwise-toolbox-card {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  padding: 12px;
}

.adwise-toolbox-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(230, 0, 18, 0.15); /* Purple accent on card hover */
}

.adwise-toolbox-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Text label below logo card */
.adwise-toolbox-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: #777777;
  white-space: nowrap;
}

/* Infinite Marquee Animation Keyframe */
@keyframes adwiseMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Moves exactly half width of track (List 1) */
  }
}

/* ==========================================================================
   ADWISE LABS REDESIGN - HOW WE WORK SECTION (2x2 Process Grid)
   ========================================================================== */
.adwise-process-section {
  background-color: var(--adwise-beige);
  padding: 100px 0;
  width: 100%;
}

.adwise-process-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .adwise-process-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.adwise-process-left {
  max-width: 480px;
}

.adwise-process-badge {
  display: inline-block;
  background-color: var(--adwise-accent-bg);
  color: var(--adwise-accent);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.adwise-process-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--adwise-charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.adwise-process-subtext {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.adwise-process-bullet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--adwise-charcoal);
}

.adwise-process-bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--adwise-accent);
  display: inline-block;
}

/* Right Column: 2x2 Grid */
.adwise-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

@media (max-width: 640px) {
  .adwise-process-grid {
    grid-template-columns: 1fr;
  }
}

.adwise-process-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 2.25rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal), background-color var(--transition-normal);
  z-index: 1;
}

.adwise-process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  border-color: rgba(230, 0, 18, 0.12);
  background-color: #ffffff;
}

/* Faint background image overlay inside card */
.adwise-process-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.03; /* Extremely faint background opacity */
  z-index: -1;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.adwise-process-card:hover .adwise-process-card-bg {
  opacity: 0.06; /* Slightly more visible on card hover */
}

/* Red Rounded Square Icon Container */
.adwise-process-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: var(--adwise-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(230, 0, 18, 0.15);
}

/* Big Faint Step Number at top-right */
.adwise-process-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: rgba(230, 0, 18, 0.08); /* Light pinkish-red number */
  line-height: 1;
}

.adwise-process-card:hover .adwise-process-number {
  color: rgba(230, 0, 18, 0.12);
}

.adwise-process-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--adwise-charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.adwise-process-card-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* Horizontal Progress Bar at bottom */
.adwise-process-progressbar {
  width: 100%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-top: auto; /* Aligns to bottom */
}

.adwise-process-progressfill {
  height: 100%;
  background-color: var(--adwise-accent);
  border-radius: 2px;
  transition: width 0.8s ease;
}

/* ==========================================================================
   ADWISE LABS - AI CHATBOT STYLES
   ========================================================================== */

/* ElevenLabs Conversational AI Custom Element Positioning */
elevenlabs-convai {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  z-index: 9997 !important;
  pointer-events: auto !important;
}

/* Floating AI Bot Toggle Button */
.adwise-chat-toggle {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--chy-gd-1);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-crimson);
  z-index: 9998;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pulseGlow 4s infinite;
}

.adwise-chat-toggle:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 15px 35px rgba(230, 0, 18, 0.5);
}

.chat-toggle-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.chat-toggle-icon .default-icon {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.chat-toggle-icon .active-icon {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.adwise-chat-toggle.active .default-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.adwise-chat-toggle.active .active-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Badge on Toggle Button */
.chat-toggle-badge {
  position: absolute;
  right: 68px;
  background: #0B0F19;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.chat-toggle-badge::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #0B0F19;
}

.adwise-chat-toggle:hover .chat-toggle-badge {
  transform: translateX(-4px);
}

.adwise-chat-toggle.active .chat-toggle-badge {
  opacity: 0;
  visibility: hidden;
}

/* AI Chat Window Modal */
.adwise-chat-window {
  position: fixed;
  bottom: 24px;
  right: 28px;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 540px;
  max-height: calc(100vh - 50px);
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(11, 15, 25, 0.16), 0 0 35px rgba(230, 0, 18, 0.1);
  border: 1px solid rgba(230, 0, 18, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.adwise-chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Chat Header */
.adwise-chat-header {
  background: var(--chy-gd-1);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(230, 0, 18, 0.2);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.chat-header-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.chat-header-status {
  font-family: var(--font-body);
  font-size: 0.75rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-indicator {
  width: 7px;
  height: 7px;
  background-color: #27F67A;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #27F67A;
}

.chat-header-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.chat-header-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Chat Messages Container */
.adwise-chat-messages {
  flex: 1;
  padding: 18px 18px 24px 18px;
  overflow-y: auto;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #FAFAFB;
}

.adwise-chat-msg {
  display: flex;
  gap: 10px;
  max-width: 88%;
}

.adwise-chat-msg.bot-msg {
  align-self: flex-start;
}

.adwise-chat-msg.user-msg {
  align-self: flex-end;
  flex-direction: column;
  align-items: flex-end;
}

.msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(230, 0, 18, 0.1);
  border: 1px solid rgba(230, 0, 18, 0.2);
  color: var(--chy-pr-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.msg-content {
  display: flex;
  flex-direction: column;
}

.msg-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  word-break: break-word;
}

.bot-msg .msg-bubble {
  background: #FFFFFF;
  color: var(--chy-heading);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.user-msg .msg-bubble {
  background: var(--chy-gd-1);
  color: #FFFFFF;
  border-top-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.25);
}

.msg-time {
  font-size: 0.6875rem;
  color: var(--chy-muted);
  margin-top: 4px;
  padding: 0 4px;
}

.bot-msg .msg-time {
  align-self: flex-start;
}

.user-msg .msg-time {
  align-self: flex-end;
}

.chat-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230, 0, 18, 0.08);
  color: var(--chy-pr-1);
  border: 1px solid rgba(230, 0, 18, 0.2);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 6px 12px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.chat-cta-link:hover {
  background: var(--chy-pr-1);
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Quick Suggestion Chips */
.adwise-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  padding-left: 42px;
}

.adwise-chip {
  background: #FFFFFF;
  border: 1px solid rgba(230, 0, 18, 0.2);
  color: var(--chy-heading);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.adwise-chip:hover {
  background: var(--chy-pr-1);
  color: #FFFFFF;
  border-color: var(--chy-pr-1);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(230, 0, 18, 0.25);
}

/* Typing Indicator Animation */
.typing-bubble {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 18px;
}

.typing-bubble span {
  width: 6px;
  height: 6px;
  background-color: var(--chy-pr-1);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-bubble span:nth-child(1) { animation-delay: -0.32s; }
.typing-bubble span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Chat Footer Form */
.adwise-chat-footer {
  padding: 12px 16px;
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.adwise-chat-footer input {
  flex: 1;
  background: #F4F5F8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--chy-heading);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.adwise-chat-footer input:focus {
  border-color: var(--chy-pr-1);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.08);
}

.chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--chy-gd-1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(230, 0, 18, 0.25);
}

.chat-send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(230, 0, 18, 0.4);
}

/* Bottom Human Handoff Bar */
.adwise-chat-handoff {
  background: #FAFAFB;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding: 8px 16px;
  font-size: 0.75rem;
  color: var(--chy-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.adwise-chat-handoff a {
  color: #25D366;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s;
}

.adwise-chat-handoff a:hover {
  opacity: 0.8;
}

/* ==========================================================================
   ADWISE LABS - CLIENTS & GLOBAL PARTNERS SECTION
   ========================================================================== */

.adwise-clients-section {
  padding: 100px 0 110px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FC 50%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.adwise-clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 0, 18, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.adwise-clients-header {
  max-width: 800px;
  margin: 0 0 45px 0;
  text-align: left;
}

.adwise-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 0, 18, 0.08);
  border: 1px solid rgba(230, 0, 18, 0.18);
  color: var(--chy-pr-1);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.adwise-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--chy-heading);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-align: left;
}

.adwise-section-title span {
  background: var(--chy-gd-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.adwise-section-subtitle {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--chy-body);
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

/* Client Cards Grid */
.adwise-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .adwise-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .adwise-clients-grid {
    grid-template-columns: 1fr;
  }
}

.client-card {
  background: #FFFFFF;
  border: 1px solid rgba(230, 0, 18, 0.09);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(11, 15, 25, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.client-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--chy-gd-1);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.client-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 0, 18, 0.28);
  box-shadow: 0 16px 36px rgba(230, 0, 18, 0.1), 0 4px 12px rgba(11, 15, 25, 0.04);
}

.client-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.client-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  background: rgba(248, 249, 252, 0.7);
  border-radius: 14px;
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.client-logo-img {
  max-width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-card:hover .client-logo-img {
  transform: scale(1.06);
}

.client-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--chy-heading);
  margin: 0;
  letter-spacing: -0.2px;
}

/* Infinite Marquee Ribbon */
.clients-infinite-marquee {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(230, 0, 18, 0.1);
  border-radius: 20px;
  padding: 24px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.clients-infinite-marquee::before,
.clients-infinite-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-infinite-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-infinite-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-track-clients {
  display: flex;
  width: max-content;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
  animation: marqueeScroll 28s linear infinite;
}

.clients-infinite-marquee:hover .marquee-group {
  animation-play-state: paused;
}

.marquee-logo {
  height: 46px;
  max-height: 46px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.marquee-logo:hover {
  opacity: 1;
  transform: scale(1.08);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}



