/* =========================================
   1. DESIGN TOKENS (CSS VARIABLES)
   ========================================= */
:root {
  /* --- Colors: Primary Brand (Deep Purple: #4A0D55) --- */
  --primary-50:  #f3eefc;
  --primary-100: #e2d5f8;
  --primary-200: #c6aef2;
  --primary-300: #a582e9;
  --primary-400: #8553e0;
  --primary-500: #6a2ec6; 
  --primary-600: #4A0D55; /* User Primary */
  --primary-700: #3b0a44;
  --primary-800: #2d0834;
  --primary-900: #1f0523;
  --text-color:#414141;

  /* --- Colors: Secondary Brand (Gold: #FDCC29) --- */
  --secondary-color: #FDCC29; /* User Secondary */
  --secondary-hover: #e5b825;
  
  /* --- Colors: Neutrals --- */
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white:    #ffffff;
  --black:    #000000;

  /* --- Colors: Semantic --- */
  --success: #10b981;
  --warning: #f59e0b;
  --danger:  #ef4444;
  --info:    #3b82f6;

  /* --- Theme Variables --- */
  --bg-body: var(--white);
  --bg-surface: var(--gray-50);
  --bg-paper: var(--white);
  --text-main: var(--gray-900);
  --text-muted: var(--gray-500);
  --text-light: var(--gray-400);
  --border-light: var(--gray-200);
  --border-dark: var(--gray-700);

  /* --- Typography --- */
  --font-sans: 'Rubik', sans-serif;

  /* --- Typography Scale (Pixel-based Clamp) --- */
  /* Logic: clamp(mobile_min, preferred_slope, desktop_max) */
  
  /* H1: 36px -> 54px */ 
  --text-h1: clamp(36px, 3.5vw, 54px);
  
  /* H2: 28px -> 40px */
  --text-h2: clamp(28px, 2.5vw, 40px);
  
  /* H3: 24px -> 30px */
  --text-h3: clamp(24px, 1.6vw, 30px);
  
  /* H4: 18px -> 20px */
  --text-h4: clamp(18px, 0.4vw, 20px);
  
  /* H5: 16px Fixed */
  --text-h5: 16px;

  /* Utility Scale (Pixel based) */
  --text-xs:   12px;
  --text-sm:   14px; 
  --text-base: 16px;     
  --text-lg:   18px; 
  --text-xl:   var(--text-h4);
  --text-2xl:  var(--text-h3);
  --text-3xl:  var(--text-h2);
  --text-4xl:  var(--text-h1);
  --text-5xl:  clamp(48px, 4vw + 32px, 72px);

  --leading-tight: 1.1;
  --leading-normal: 1.5;
  --leading-loose: 1.75;

  /* --- Spacing System (4px baseline) --- */
  --space-0: 0px;
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */
  --space-32: 8rem;    /* 128px */

  /* --- Dimensions --- */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1440px;

  /* --- Effects --- */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-base: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  --transition-base: all 0.2s ease-in-out;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   2. RESET & NORMALIZATION
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-width: 0;
  border-style: solid;
  border-color: var(--border-light);
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Rubik', sans-serif;
  color: var(--text-main);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: transparent;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul, ol, menu {
  list-style: none;
}


input{
  outline: none;
}

input:focus{
  outline: none;
}
/* =========================================
   3. LAYOUT & GRID SYSTEM
   ========================================= */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-4);
  max-width: var(--container-2xl); /* 1440px */
}

/* Container variations if needed */
.container-sm { max-width: var(--container-sm); }
.container-md { max-width: var(--container-md); }
.container-lg { max-width: var(--container-lg); }
.container-fluid { max-width: 100%; }

/* Layout Helpers */
.section { padding-block: var(--space-16); }
.section-sm { padding-block: var(--space-8); }
.section-lg { padding-block: var(--space-24); }

/* Flexbox Toolkit */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.cursor-pointer { cursor: pointer; }
.leading-none { line-height: 1; }
.flex-col { flex-direction: column; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col-reverse { flex-direction: column-reverse; }

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }
.grow { flex-grow: 1; }
.shrink { flex-shrink: 1; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.items-baseline { align-items: baseline; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

/* Grid Toolkit */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }

/* Gap Utilities (g, gx, gy) */
.gap-0 { gap: var(--space-0); }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }

.space-y-2 > * + * { margin-top: var(--space-2); }
.space-y-4 > * + * { margin-top: var(--space-4); }

.w-6 { width: 1.5rem; }
.h-0\.5 { height: 0.125rem; }

.mb-1 { margin-bottom: var(--space-1); }

/* =========================================
   4. TYPOGRAPHY UTILITIES
   ========================================= */
/* Headings Map */
h1 { font-size: var(--text-h1); line-height: 1.1; color: #212121;}
h2 { font-size: var(--text-h2); line-height: 1.2; color: #212121;}
h3 { font-size: var(--text-h3); line-height: 1.3; color: #212121;}
h4 { font-size: var(--text-h4); color: #212121;}
h5 { font-size: var(--text-h5); color: #212121;}
h6 { font-size: var(--text-base); font-weight: 600; color: #212121;}

/* Font Size Utilities */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); letter-spacing: -0.02em; }
.text-4xl { font-size: var(--text-4xl); letter-spacing: -0.03em; }
.text-5xl { font-size: var(--text-5xl); letter-spacing: -0.04em; }

/* Font Weight */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Text Colors */
.text-primary { color: var(--primary-600); }
.text-gray-500 { color: #6B7280; }
.text-secondary { color: var(--secondary-color); } /* Updated to use Gold */
.text-main { color: var(--text-main); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.text-white { color: var(--white); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }

.hover\:text-primary:hover { color: var(--primary-600); }
.text-warning { color: var(--warning); }

/* Text Transforms & Decor */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* =========================================
   5. SPACING UTILITIES (Padding + Margin)
   ========================================= */
/* Padding (p, px, py, pt, pb, pl, pr replaced by logical start/end) */
.p-0 { padding: 0; }
.p-2 { padding: var(--space-2); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.px-2 { padding-inline: var(--space-2); }
.px-4 { padding-inline: var(--space-4); }
.px-6 { padding-inline: var(--space-6); }
.px-8 { padding-inline: var(--space-8); }

.py-2 { padding-block: var(--space-2); }
.py-4 { padding-block: var(--space-4); }
.py-6 { padding-block: var(--space-6); }
.py-8 { padding-block: var(--space-8); }
.py-12 { padding-block: var(--space-12); }

/* Margin (m, mx, my, mt, mb) */
.m-0 { margin: 0; }
.m-auto { margin: auto; }

.mx-auto { margin-inline: auto; }
.mx-4 { margin-inline: var(--space-4); }

.my-4 { margin-block: var(--space-4); }
.my-8 { margin-block: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* =========================================
   6. BACKGROUNDS & SURFACES
   ========================================= */
.bg-white { background-color: var(--white); }
.bg-black { background-color: #000000; }
.bg-surface { background-color: var(--bg-surface); }
.bg-primary { background-color: var(--primary-600); }
.bg-primary-light { background-color: var(--primary-50); }
.bg-dark { background-color: var(--gray-900); }
.bg-transparent { background-color: transparent; }

/* =========================================
   7. BORDERS & ROUNDNESS
   ========================================= */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

/* =========================================
   8. COMPONENT CLASSES
   ========================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  gap: var(--space-2);
  line-height: 1;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-primary {
  background-color: var(--primary-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover:not(:disabled) {
  background-color: var(--primary-700);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--gray-900);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover:not(:disabled) {
  background-color: var(--secondary-hover);
  box-shadow: var(--shadow-md);
}

.btn-neutral {
  background-color: var(--white);
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.btn-neutral:hover:not(:disabled) {
  background-color: var(--gray-50);
  border-color: var(--gray-400);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-600);
  border: 1px solid var(--primary-600);
}
.btn-outline:hover:not(:disabled) {
  background-color: var(--primary-50);
}

.btn-ghost {
  background-color: transparent;
  color: var(--gray-600);
}
.btn-ghost:hover:not(:disabled) {
  background-color: var(--gray-100);
  color: var(--gray-900);
}

/* User Requested Common Button */
.btn-common {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; /* For anchor tags */
  
  /* Requested Specs (Responsive) */
  background-color: var(--secondary-color);
  color: var(--gray-900); 
  padding: clamp(12px, 2vw, 16px) clamp(20px, 4vw, 30px);
  font-size: 16px;
  font-weight: 700;
  
  /* Standard Utilities */
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  line-height: normal;
}

.btn-common:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: var(--text-base);
}
.btn-full { width: 100%; }

/* --- Cards --- */
.card {
  background-color: var(--bg-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--primary-200);
}

.card-hover { transition: var(--transition-smooth); }
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* --- Form Elements --- */
.form-group { margin-bottom: 15px; }

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.form-input, .form-select, .form-textarea {
  display: block;
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--text-main);
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-500);
  outline: 0;
  box-shadow: 0 0 0 3px var(--primary-100);
}

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}
.badge-primary { background-color: var(--primary-100); color: var(--primary-800); }
.badge-gray { background-color: var(--gray-100); color: var(--gray-800); }
.badge-success { background-color: #d1fae5; color: #065f46; }

/* =========================================
   9. UTILITIES (Misc)
   ========================================= */
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.hidden { display: none !important; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; top: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =========================================
   10. HEADER SPECIFIC UTILITIES
   ========================================= */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }

.select-none { user-select: none; }

.px-3 { padding-inline: var(--space-3); }
.py-0\.5 { padding-block: 0.125rem; }

.-mt-0\.5 { margin-top: -0.125rem; }
.-mt-1 { margin-top: -0.25rem; }

.transition-colors { transition: color 0.2s ease-in-out; }


/* section-spacing */
.section-spacing{
  margin-bottom: clamp(50px, 10vw, 100px);
}


/* Header CSS */

/* Header Scroll Effect */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease-in-out;
}

header.header-hidden {
    transform: translateY(-100%);
}
header ul li{
  position: relative;
}
header ul li::before {
    content: '';
    position: absolute;
    bottom: -2px;
    height: 2px;
    width: 0px;
    background: #3b0a44;
    transition: .2s all ease;
    transform-origin: left;
}

header ul li:hover::before {
    width: 100%;
}

body.openmenu{
  overflow: hidden;
}

@media (max-width: 767px){
  header nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-inline: var(--space-4);
    background: #FFFFFF;
    border: 1px solid #EDEEF3;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.10);
  }

  header nav ul{
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  header nav.open{
    display: block !important;
    margin: 0;
    border-radius: 0;
  }
}




/* Banner CSS */
.hero-banner{
  padding: 104px 0 0;
}
.banner-left-col{
  max-width: 480px;
}
.banner-left-col,
.banner-right-col{
  flex: 1;
}
.banner-img img {
  margin-left: auto;
}

.banner-left-col h1{
  margin-bottom: 25px;
}
.banner-left-col h1 span{
  font-size: clamp(20px, 2vw, 40px);
}
.banner-left-col p{
  margin-bottom: 25px;
  color: var(--text-color);
}

.hero-anim .hero-anim-left,
.hero-anim .hero-anim-right,
.hero-anim .hero-anim-card{
  opacity: 0;
  transform: translateY(14px);
  animation: tenaxFadeUp 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-anim .hero-anim-left{ animation-delay: 120ms; }
.hero-anim .hero-anim-right{ animation-delay: 220ms; }
.hero-anim .hero-anim-card:nth-child(1){ animation-delay: 320ms; }
.hero-anim .hero-anim-card:nth-child(2){ animation-delay: 380ms; }
.hero-anim .hero-anim-card:nth-child(3){ animation-delay: 440ms; }
.hero-anim .hero-anim-card:nth-child(4){ animation-delay: 500ms; }

@keyframes tenaxFadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-anim .hero-anim-left,
  .hero-anim .hero-anim-right,
  .hero-anim .hero-anim-card{
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.crm-hero-features{
  margin-top: 26px;
}

.crm-hero-features-heading{
  margin-bottom: 14px;
}

.crm-hero-features-heading h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.crm-hero-features-heading p{
  font-weight: 300;
  color: var(--text-color);
}

.crm-hero-features-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.crm-hero-feature-card{
  background:
    linear-gradient(90deg, rgba(253, 204, 41, 1), rgba(253, 204, 41, 1)) 0 0 / 100% 4px no-repeat,
    #FFFFFF;
  border: 1px solid rgba(237, 238, 243, 1);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0px 0px 10px 0px #4A0D5514 inset;
  min-height: 104px;
}

.crm-hero-feature-card:nth-child(even){
  background:
    linear-gradient(90deg, rgba(74, 13, 85, 1), rgba(74, 13, 85, 1)) 0 0 / 100% 4px no-repeat,
    #FFFFFF;
}

.crm-hero-feature-card-title{
  font-weight: 600;
  color: #212121;
  margin-bottom: 6px;
}

.crm-hero-feature-card-desc{
  font-weight: 300;
  color: #414141;
  font-size: 14px;
  line-height: 1.5;
}

/* second-section */

.section-heading{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-heading h2{
  margin-bottom: 0;
}
.section-heading p{
  font-weight: 300;
}

.trust-metrics-row{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-metric{
  background: #F6F7FA;
  border: 1px solid #EDEEF3;
  border-radius: 16px;
  padding: 18px;
}

.trust-metric h3{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-metric p{
  color: #414141;
  font-weight: 300;
}

.inside-crm-wrap{
  display: grid;
  grid-template-columns: 308px 1fr;
  gap: 30px;
  align-items: start;
}

.inside-crm-left{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inside-crm-card{
  background: #F9F9F9;
  border-radius: 16px;
  box-shadow: inset 0px 0px 10px 0px #4A0D550F;
  padding: 20px;
  cursor: pointer;
  border: none;
  height: 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.2s ease, background-color 0.2s ease, height 0.2s ease;
}

.inside-crm-card.active{
  background: #FDCC291A;
  box-shadow: inset 0px 0px 10px 0px #4A0D551A;
  height: 280px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.inside-crm-card-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.inside-crm-card-top h3{
  font-size: 20px;
  font-weight: 500;
  color: #212121;
}

.inside-crm-icon{
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: #414141;
}

.inside-crm-card.active .inside-crm-icon{
  position: absolute;
  right: 21px;
  bottom: 20px;
}

.inside-crm-card-body{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  flex: 1 1 auto;
}

.inside-crm-card-body p{
  color: #414141;
  font-weight: 300;
  line-height: 1.5;
}

.inside-crm-link{
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: #414141;
  margin-top: auto;
}

.inside-crm-right{
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #EDEEF3;
  box-shadow: inset 0px 0px 10px 0px #4A0D551A;
  padding: 22px;
}

.inside-crm-preview{
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.inside-crm-preview img{
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
}

.platform-modules-inner{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.platform-modules-intro{
  background: #F9F9F9;
  box-shadow: 0px 0px 6px 0px #4A0D550F inset;
  border-radius: 16px;
  padding: 24px;
}

.platform-addons{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-addon{
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid #EDEEF3;
  font-size: 14px;
  font-weight: 500;
  color: #3b0a44;
}

.platform-modules-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.platform-module-card{
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #EDEEF3;
  box-shadow: 0px 0px 10px 0px #4A0D551A inset;
  padding: 22px;
}

.platform-module-title h3{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.platform-module-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.platform-module-list li{
  display: flex;
  gap: 10px;
  color: #414141;
  font-weight: 300;
}

.platform-module-list li::before{
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 3px;
  background: #FDCC29;
  box-shadow: 0 0 0 2px #4A0D551A inset;
  flex: 0 0 auto;
}


/* =========================================
   11. TABS COMPONENT
   ========================================= */
.tab-btn {
  padding: 0.75rem 2rem;
  border-radius: var(--radius-xl);
  background-color: var(--white);
  border: 1px solid #F0F0F0;
  color: var(--gray-900);
  font-weight: 600;
  font-size: var(--text-base);
  transition: var(--transition-base);
  min-width: 140px;
  text-align: center;
  width: 100%;
  white-space: nowrap;
}

.tab-btn:hover {
  border-color: var(--primary-200);
  background-color: var(--gray-50);
}

.tab-btn.active {
  background-color: var(--primary-600);
  border-color: var(--primary-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.tab-pane.hidden {
  display: none;
}

.list-icon img{
  max-width: 30px;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tabs-btns{
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

.crm-flow{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.crm-flow-step{
  text-align: left;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #EDEEF3;
  padding: 14px 16px;
  box-shadow: 0px 0px 6px 0px #4A0D550F inset;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition-base);
}

.crm-flow-step:hover{
  border-color: var(--primary-200);
  background: #F9F9F9;
}

.crm-flow-step.active{
  background: #FDCC291A;
  border-color: #FDCC29;
  box-shadow: 0px 0px 10px 0px #4A0D551A inset;
}

.crm-flow-step-title{
  font-size: 16px;
  font-weight: 500;
  color: #212121;
}

.crm-flow-step-desc{
  font-size: 14px;
  font-weight: 300;
  color: #414141;
}

.crm-flow4{
  width: 100%;
}

.crm-flow4-grid{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.crm-flow4-grid::before{
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 41px;
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 13, 85, 0) 0%, rgba(74, 13, 85, 0.25) 10%, rgba(74, 13, 85, 0.25) 90%, rgba(74, 13, 85, 0) 100%);
  pointer-events: none;
}

.crm-flow4-card{
  --flow4-accent: #4A0D55;
  position: relative;
  background:
    linear-gradient(90deg, var(--flow4-accent), var(--flow4-accent)) 0 0 / 100% 4px no-repeat,
    #FFFFFF;
  border: 1px solid rgba(237, 238, 243, 1);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0px 0px 10px 0px #4A0D551A inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.crm-flow4-card:nth-child(even){
  --flow4-accent: #FDCC29;
}

.crm-flow4-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 240px at 30% 0%, rgba(253, 204, 41, 0.14) 0%, rgba(253, 204, 41, 0) 70%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.crm-flow4-card:hover{
  transform: translateY(-4px);
  border-color: rgba(253, 204, 41, 0.7);
  box-shadow: 0px 0px 14px 0px rgba(74, 13, 85, 0.12) inset, 0 10px 20px rgba(17, 24, 39, 0.08);
}

.crm-flow4-card:hover::after{
  opacity: 1;
}

.crm-flow4-card.active{
  border-color: #FDCC29;
  background:
    linear-gradient(90deg, var(--flow4-accent), var(--flow4-accent)) 0 0 / 100% 4px no-repeat,
    #FDCC290D;
  box-shadow: 0px 0px 16px 0px rgba(74, 13, 85, 0.16) inset;
}

.crm-flow4-card.active::after{
  opacity: 1;
}

.crm-flow4-card:not(:last-child)::before{
  content: "";
  position: absolute;
  top: 41px;
  right: -18px;
  width: 18px;
  height: 2px;
  background: rgba(74, 13, 85, 0.25);
}

.crm-flow4-head{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.crm-flow4-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #FDCC291A;
  color: #3b0a44;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  font-variant-numeric: tabular-nums;
}

.crm-flow4-title h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.crm-flow4-title p{
  color: #414141;
  font-weight: 300;
}

.crm-flow4-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  min-height: 30px;
  position: relative;
  z-index: 1;
}

.crm-flow4-bullets{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.crm-flow4-bullets li{
  display: flex;
  gap: 10px;
  color: #414141;
  font-weight: 300;
  line-height: 1.5;
}

.crm-flow4-bullets li::before{
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 3px;
  background: #FDCC29;
  box-shadow: 0 0 0 2px #4A0D551A inset;
  flex: 0 0 auto;
}

.crm-journey{
  width: 100%;
}

.crm-journey-list{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.crm-journey-list::before{
  content: "";
  position: absolute;
  top: 23px;
  bottom: 23px;
  left: 23px;
  width: 2px;
  background: linear-gradient(180deg, rgba(74, 13, 85, 0) 0%, rgba(74, 13, 85, 0.25) 10%, rgba(74, 13, 85, 0.25) 90%, rgba(74, 13, 85, 0) 100%);
  border-radius: 2px;
  pointer-events: none;
}

.crm-journey-step{
  position: relative;
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid rgba(237, 238, 243, 1);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0px 0px 10px 0px #4A0D551A inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "head bullets"
    "tags bullets";
  column-gap: 18px;
  align-items: start;
}

.crm-journey-step::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 240px at 30% 0%, rgba(253, 204, 41, 0.14) 0%, rgba(253, 204, 41, 0) 70%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.crm-journey-step:hover{
  transform: translateY(-4px);
  border-color: rgba(253, 204, 41, 0.7);
  box-shadow: 0px 0px 14px 0px rgba(74, 13, 85, 0.12) inset, 0 10px 20px rgba(17, 24, 39, 0.08);
}

.crm-journey-step:hover::after{
  opacity: 1;
}

.crm-journey-step.active{
  border-color: #FDCC29;
  background: #FDCC290D;
  box-shadow: 0px 0px 16px 0px rgba(74, 13, 85, 0.16) inset;
}

.crm-journey-step.active::after{
  opacity: 1;
}

.crm-journey-step-head,
.crm-journey-tags,
.crm-journey-bullets{
  position: relative;
  z-index: 1;
}

.crm-journey-step-head{
  grid-area: head;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.crm-journey-step-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #FDCC291A;
  color: #3b0a44;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
}

.crm-journey-step-num::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: #FDCC29;
  box-shadow: 0 0 0 6px rgba(74, 13, 85, 0.08);
  opacity: 0;
}

.crm-journey-step.active .crm-journey-step-num::before{
  opacity: 1;
}

.crm-journey-step-title h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.crm-journey-step-title p{
  color: #414141;
  font-weight: 300;
}

.crm-journey-tags{
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.crm-tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #F9F9F9;
  border: 1px solid #EDEEF3;
  color: #3b0a44;
  font-size: 13px;
  font-weight: 500;
}

.crm-journey-bullets{
  grid-area: bullets;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.crm-journey-step-num{
  font-variant-numeric: tabular-nums;
}

.crm-journey-bullets li{
  display: flex;
  gap: 10px;
  color: #414141;
  font-weight: 300;
  line-height: 1.5;
}

.crm-journey-bullets li::before{
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 3px;
  background: #FDCC29;
  box-shadow: 0 0 0 2px #4A0D551A inset;
  flex: 0 0 auto;
}

.tab-pane ul{
  max-width: 620px;
}

.tab-pane li{
  line-height: 1.55;
}

/* =========================================
   12. CRM ALL-IN-ONE COMPONENT
   ========================================= */
.crm-card {
  background-color: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition-base);
  border: 1px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crm-card:hover {
  background-color: var(--gray-100);
}

.crm-card.active {
background: #FDCC291A;
box-shadow: 0px 0px 10px 0px #4A0D551A inset;
}

.crm-content.hidden {
  display: none;
}

.crm-content{
  color: #414141;
}

.crm-card .crm-arrow {
  color: var(--gray-400);
}
.crm-card.active .crm-arrow {
  color: var(--gray-900);
  transform: rotate(0deg); 
}
.crm-card:not(.active) .crm-arrow {
   transform: rotate(45deg);
}


.forex-cards{
  max-width: 310px;
}

.forex-cards-details{
  box-shadow: 0px 0px 10px 0px #4A0D551A inset;
  border-radius: 16px;
}

.crm-card .crm-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crm-card .card-link {
  margin-top: auto;
}

/* Default state: hidden on desktop/tablet */
.mobile-crm-img {
  display: none;
}



.discover-forex-section .section-heading{
  max-width: 750px;
  margin-inline: auto;
}

.discover-forex-detail-content p{
  color: #414141;
}
.discover-forex-col{
  background: #FDCC290D;
box-shadow: 0px 0px 10px 0px #4A0D551A inset;
border-radius: 16px;
padding: 30px;
position: relative;
overflow: hidden;
}

.discover-forex-col .discover-forex-vector{
  position: absolute;
  top: 0;
  right: 0;
}

.discover-forex-row{
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(clamp(270px, 20vw, 310px), 1fr));
}

.discover-forex-detail-content h3{
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
}

.logo-slide{
  background-color: #FFF;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
}

.logo-slide img{
  width: 160px;
  height: 44px;
  max-width: 100%;
  object-fit: contain;
}

.trading-logo-section{
  background-color: #F6F7FA;
  padding: clamp(40px, 3vw, 60px) 0;
}

/*  */
.choose-plan-row{
      display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(clamp(270px, 22vw, 440px), 1fr));
}
.choose-plan-col{
  background: #F9F9F9;
box-shadow: 0px 0px 6px 0px #4A0D550F inset;
padding: 30px;
border-radius: 16px;
}

.choose-plan-col.highlight{
  background: #4A0D55;
box-shadow: 0px 0px 20px 0px #FFFFFF66 inset;

}
.plan-tag{
  background-color: #4A0D55;
  color: #FDCC29;
  padding: 10px 20px;
  border-radius: 50px;
  width: max-content;
  margin-bottom: 30px;
}

.choose-plan-col.highlight .plan-tag{
  background-color: #FFF;
  color: #4A0D55;
}
.plan-tag p{
  font-weight: 500;
}
.plan-detail ul{
  margin-bottom: 30px;
  margin-left: 30px;
}
.plan-detail ul li{
  list-style: disc;
  color: #414141;
  margin-bottom: 10px;
  font-size: 16px;
}

.choose-plan-col.highlight .plan-detail ul li{
  color: #FFF;
}
.plan-detail ul li:last-child{
  margin-bottom: 0;
}

.client-say-section{
  padding: clamp(40px, 3vw, 60px) 0;
  background-color: #4A0D551A;
}

.client-say-content p{
  font-weight: 300;
  margin-bottom: 20px;
}



.client-say-detail{
    background: #FFFFFF;

box-shadow: 0px 0px 10px 0px #4A0D551A inset;
border-radius: 16px;
padding: 30px;
}

.client-profile{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.client-profile-name{
  margin-bottom: 10px;
}
.client-profile-name h5{
  font-size: clamp(16px, 2vw, 18px);
}
.client-profile-name p{
  margin-bottom: 0;
}




.cta-row{
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.cta-col{
  flex: 1;
}

.cta-col-form{
    background-color: #4A0D55;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0px 0px 10px 0px #4A0D550F inset;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    max-width: 520px;
}

.form-group .form-control{
    background-color: #FFF;
    color: #000;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    /* margin-bottom: 10px; */
    border-radius: 10px;
}

.form-group .form-control::placeholder{
    color: #414141;
}

.form-group .form-control:focus{
    border: 1px solid #FEBC1F;
    outline: none;
}

.cta-col-form h3{
  color: #FFF;
  text-align: center;
  margin-bottom: 15px;
}

.form-group label{
  color: #FFFFFF70;
  text-align: center;
  display: block;
} 
.form-group label a{
  text-decoration: underline;
}

.form-group textarea{
  resize: none;
}

.cta-col-form form button{
  width: 100%;
}


/* footer */
footer{
  background-color: #F6F7FA;
  padding: clamp(40px, 3vw, 60px) 0 0;
}

.footer-row{
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* .footer-col{
  flex: 1;
} */

.footer-col-logo{
  margin-bottom: 30px;
}

.logo-footer{
  max-width: 420px;
}

.logo-footer p{
  font-weight: 300;
  margin-bottom: 30px;
}

.footer-contact{
  max-width: 237px;
}

.footer-col .footer-col-heading{
  margin-bottom: 16px;
}

.footer-col ul li{
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  color: #414141;
}

.footer-col ul li a:hover{
  color: #4A0D55;
}

.footer-col ul li:last-child{
  margin-bottom: 0;
}

.footer-col.footer-contact ul li a{
  display: flex;
  align-items: start;
  gap: 10px;
}

.footer-social-media{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-media a{
  background-color: #4A0D55;
  padding: 10px;
  border-radius: 30px;
}

.footer-content{
  text-align: center;
  margin: 20px 0;
}
.footer-content p{
  font-weight: 300;
  margin-bottom: 15px;
}

.footer-content p:last-child{
  margin-bottom: 0;
}
.copy-right{
  background-color: #4A0D55;
}
.copy-right p{
  text-align: center;
  padding: 10px 0;
  color: #FFF;
}


.owl-dots{
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 20px;
}
.owl-dots .owl-dot{
  height: 10px;
    width: 10px;
    background: #3b0a4450 !important;
    border-radius: 10px
}

.owl-dots .owl-dot.active{
  background: #3b0a44 !important;
}



/* About Us */
.banner-row{
  gap: 30px;
}
.inner-banner{
  background-color: #F9F9F9;
  padding: 0;
  margin-top: 88px;
}

.inner-spacing{
  padding: clamp(40px, 3vw, 60px) 0;
}
.inner-banner .banner-col h1{
  font-size: clamp(28px, 2.2vw, 40px);
}
.inner-banner .banner-col h1,
.inner-banner .banner-col p{
  margin-bottom: 25px;
}
.inner-banner .banner-col p{
  max-width: 575px;
  color: #414141;
  font-weight: 300;
}
.vision-mission-row{
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.vision-mission-col{
  flex: 1;
}
/* .vision-mission-col img{
  margin-left: auto;
} */

.mission-row-bg{
  padding: clamp(40px, 3vw, 60px) 0;
  background-color: #FDCC290D;
  margin: 60px 0;
}

.vision-mission-col h3{
  margin-bottom: 20px;
  /* font-size: clamp(26px, 2vw, 30px); */
}

.vision-mission-col p{
  font-weight: 300;
}


.about-qute-inner{
  position: relative;
  overflow: hidden;
  background: #FDCC291A;
box-shadow: 0px 0px 10px 0px #4A0D551A inset;
border-radius: 16px;
}

.about-qute-left-img{
  position: absolute;
  top: 0;
  left: 0;
}

.about-qute-right-img{
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-qute-inner h6{
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #414141;
}

.where-we-are{
  background-color: #4A0D55;
  padding: 60px 0;
}
.where-we-are .section-heading {
  position: relative;
  padding-bottom: 30px;
}

.where-we-are .section-heading::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);

}
.where-we-are .section-heading h2{
  margin-bottom: 15px;
}
.where-we-are .section-heading p{
  max-width: 900px;
  font-weight: 300;
  color: #FFF;
  margin: 0 auto;
}

.counter{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.counter-col,
.counter-col h2{
  color: #FFF;
  text-align: center;
}

.counter-col p{
  font-weight: 300;
}

.about-page-client{
  padding: 0;
  background-color: transparent;
}


.our-office-row{
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.our-office-col{
  flex: 1;
}

.our-office-col img{
  margin-left: auto;
}
.our-office-col h2{
  margin-bottom: 10px;
}
.our-office-col p{
  font-weight: 300;
  margin-bottom: 10px;
}

.our-office-col h4{
  max-width: 450px;
  color: #414141;
}


/*  */

.app-crm-row{
  display: flex;
  gap: 30px;
  align-items: center;
}

.app-crm-mockup{
  position: relative;
  overflow: hidden;
  width: fit-content;
  border-radius: 36px;
}

.app-mockup-img{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #FFF;
}

.app-mockup-img img{
  width: 100%;
}

.app-crm-mockup-bg{
    position: absolute;
    top: -10px;
    left: 50%;
    z-index: -1;
    width: max-content;
    transform: translateX(-50%);
}

.app-crm-col{
  position: relative;
  flex: 1;
}

.app-crm-col-content{
  max-width: 500px;
}

.app-crm-col-content h4{
  font-weight: 500;
  margin-bottom: 10px;
  font-size: clamp(20px, 1.3vw, 24px);
}

.app-crm-col-content p{
  font-weight: 300;
  color: #414141;
}


.app-crm-col-content{
  margin-bottom: 20px;
}


.laptop-mockup{
      left: 16%;
    right: 0;
    top: 12px;
    z-index: 1;
    width: fit-content;
        border-radius: 13px;
        height: auto;
}
.laptop-bg{
      top: -110px;
}

.web-colum .app-crm-mockup{
  overflow: inherit;
  border-radius: 0;
}



/*  */

.dowload-app-inner{
  padding: clamp(30px, 3vw, 60px);
  background: #FDCC291A;
box-shadow: 0px 0px 10px 0px #4A0D551A inset;
border-radius: 16px;
}
.dowload-app-row{
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.dowload-app-row .dowload-app-col{
  flex: 1;
}

.dowload-app-col .dowload-app-img img{
  margin: auto;
}
.dowload-app-col h2{
  margin-bottom: 10px;
}
.dowload-app-col p{
  max-width: 450px;
  font-weight: 300;
  margin-bottom: 15px;
}

.dowload-app-btn{
  display: flex;
  align-items: center;
  gap: 15px;
}



.key-fetures .section-heading h2{
  margin-bottom: 15px;
}

.key-fetures .section-heading p{
  font-weight: 300;
}



.key-fetures-col{
  background: #FDCC290D;
box-shadow: 0px 0px 10px 0px #4A0D551A inset;
border-radius: 16px;
padding: clamp(15px, 2vw, 30px);
}

.key-fetures-col-list p{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 300;
}

.key-fetures-col h4{
  margin-bottom: 15px;
}

.key-fetures-col-list p:last-child{
  margin-bottom: 0;
}

.key-fetures-row{
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(clamp(270px, 22vw, 450px), 1fr));
}


/*  */
.key-fetures-inner-row{
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.key-fetures-inner-col{
  flex: 1;
}

.key-fetures-inner-col h6{
  margin-bottom: 15px;
  color: #4A0D55;
}
.key-fetures-inner-col p{
  margin-bottom: 15px;
}

.key-fetures-inner-col h3{
  margin-bottom: 15px;
  /* font-weight: 500; */
}
.key-fetures-inner-col ul{
  /* margin-bottom: 30px; */
  margin-left: 30px;
}
.key-fetures-inner-col ul li{
  list-style: disc;
  /* margin-bottom: 10px; */
  font-weight: 300;
  font-size: clamp(14px, 1vw, 16px);
  color: #414141;
}

.key-fetures-section-bg{
  background-color: #FDCC291A;
  padding: clamp(40px,4vw, 60px) 0;
}

.key-fetures-section-bg .key-fetures-inner-row{
  flex-direction: row-reverse;
}

.key-fetures-section-bg .key-fetures-inner-row img{
  margin-left: auto;
}


.branding-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  }

.branding-tabs::before{
  content: "";
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 13, 85, 0) 0%, rgba(74, 13, 85, 0.5) 50%, rgba(74, 13, 85, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.branding-tab-btn{
  padding: 15px 25px;
  background-color: transparent;
  border: 1px solid #4A0D55;
  color: #4A0D55;
  flex: 1;
  border-radius: 10px;
  transition: 0.5s;
}
.branding-tab-btn:hover{
  background-color: #4A0D55;
  color: #FFF;
}
.branding-tab-btn.active{
  background-color: #4A0D55;
  color: #FFF;
}

.branding-tab-pane.hidden {
  display: none;
}
.branding-tab-pane.active {
    animation: fadeIn 0.5s ease-in-out;
}


.branding-row{
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(clamp(270px, 20vw, 308px), 1fr));
}

.branding-col{
  background: #FDCC290D;
  box-shadow: 0px 0px 10px 0px #4A0D551A inset;
  border-radius: 16px;
  padding: clamp(15px, 2vw, 30px);
}

.branding-col img{
    margin-bottom: 15px;
}
.branding-col h4{
    margin-bottom: 10px;
    font-weight: 500;
}

.branding-col p{
    font-weight: 300;
}

.cta-inner{
  background-image: url(../assets/images/cta-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(30px, 3vw, 60px);
  border-radius: clamp(15px, 2vw, 30px);
  box-shadow: 0px 0px 30px 0px #FFFFFF99 inset;
}

.inner-cta-section .cta-row{
  align-items: center;
}
.inner-cta-section .cta-row .section-heading{
  max-width: 575px;
}
.inner-cta-section .cta-row .section-heading h2{
  margin-bottom: 15px;
  color: #FFF;
}

.inner-cta-section .cta-row .section-heading p{
  font-weight: 300;
  color: #FFF;
}

.inner-cta-section .cta-row img{
  margin-left: auto;
}

/*  */

.seo-box-content{
  background-color: #FFF;
  border-radius: 16px;
  padding: clamp(15px, 2vw, 30px);
  box-shadow: 0px 0px 6px 0px #4A0D550F inset;
  width: 420px;
}

.best-seo-inner .section-heading p{
  font-weight: 300;
  margin: 0 auto;
  max-width: 750px;
}

.seo-box-content img{
  margin-bottom: 15px;
}

.seo-box-content h4{
  margin-bottom: 10px;
}

.seo-box-content p{
  font-weight: 300;
}

.main-content{
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.main-content-col-1{
  display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    position: absolute;
    top: 50px;
    gap: 140px;
    left: -300px;
}

.seo-box-content.box-1{
  margin-left: -70px;
}

.main-content-col-2{
  display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    position: absolute;
    top: 0;
    gap: 110px;
    right: -125%;
}


.socical-media-inner{
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.socical-media-item-content{
  max-width: 615px;
}

.socical-media-item-content h2{
  margin-bottom: 15px;
}

.socical-media-item-content p{
  font-weight: 300;
  margin-bottom: 15px;
}

.socical-media-item-content h4{
  color: #4A0D55;
  margin-bottom: 10px;
}

.socical-media-bg-sec{
  background-color: #FDCC290D;
  padding: 60px 0;
}

.web-dev-section .branding-row{
  display: flex;
  flex-wrap: wrap;
}

.web-dev-section .branding-col{
  min-width: 420px;
  width: 100%;
  flex: 1;
}

.dev-process-inner{
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.dev-process-col{
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0px 0px 6px 0px #4A0D550F inset;
  flex: 1;
  position: relative;
}

.dev-process-col::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  width: 30px;
  height: 2px;
  background-image: url(../assets/images/border-dotted.svg);
}

.dev-process-col:last-child:before{
  display: none;
}

.dev-process-col:nth-child(odd){
  background-color: #FDCC290D;
}

.dev-process-item-content h4{
  margin-bottom: 10px;
}

.dev-process-item-content p{
  font-weight: 300;
}


/* Pinned Scroll (Scrolly-telling) CSS */

/* The long track that enables scrolling */
.pinned-scroll-track {
    height: 350vh; /* Adjust length to control speed */
    position: relative;
    /* Removed padding-top so sticky unit starts immediately if desired, 
       but parent .section-spacing might add gap. */
}

/* The view that locks to the screen */
.sticky-viewport {
    position: -webkit-sticky;
    position: sticky;
    top: 100px; /* User requested top offset */
    height: auto;
    overflow: hidden;
    width: 100%;
}

/* Container flex for centering */
.sticky-viewport .app-crm-row {
    height: 70vh; /* User requested height reduction */
    display: flex;
    align-items: center;
}

/* Columns */
.app-crm-col {
    position: relative;
}

/* Heading positioned absolutely in the column if desired, or static above stack */
.absolute-heading {
    position: absolute;
    top: -80px; /* shift up */
    left: 0;
    width: 100%;
    z-index: 20;
}

/* Wrapper for absolute items */
.app-feature-wrapper {
    position: relative;
    height: 100px; /* Min height to hold content */
    display: flex;
    align-items: center;
}

.app-feature-item {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateY(20px); /* Start slightly down */
    width: 100%;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(5px);
}

.app-feature-item.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateY(0);
    filter: blur(0);
    z-index: 10;
}

.app-feature-item h4 {
    margin-bottom: 15px;
    font-size: var(--text-2xl);
}

.app-mockup-img img {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.app-mockup-img img.fade-out {
    opacity: 0;
    transform: scale(0.95);
}


.contact-detail-row{
  display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(clamp(270px, 20vw, 308px), 1fr));
}

.contact-detail-col{
 border: 1px solid #E2E8F0;
 padding: 20px;
 border-radius: 16px;
 text-align: center;
}

.contact-detail-col img{
  margin: 0 auto 15px;
  max-width: 40px;
  width: 100%;
}

.contact-detail-col h6{
  margin-bottom: 10px;
}

.contact-detail-col a,
.contact-detail-col p{
  font-weight: 300;
}

/* Mobile: Keep pinned behavior but adjust layout */
@media (max-width: 991px) {
    /* Allow pinning on mobile */
    .pinned-scroll-track {
        height: 350vh;
    }
    .sticky-viewport {
        position: -webkit-sticky;
        position: sticky;
        height: auto;
        
    }
    
    /* Stack content on top, image on bottom */
    .sticky-viewport .app-crm-row {
        flex-direction: column-reverse; /* Content top, Image bottom */
        justify-content: center;
        height: auto;
        gap: 20px;
    }

    .absolute-heading {
        position: static;
        text-align: center;
        margin-bottom: 20px;
        font-size: var(--text-2xl);
    }

    /* Adjust image container */
    .app-crm-col:first-child {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px; /* Limit image size */
    }

   .web-colum .app-crm-col:first-child{
      width: 100%;
      max-width: 100%;
    }

    .sticky-viewport  .web-colum.app-crm-row{
      height: 80vh;
    }
    
    .app-crm-mockup-bg img, 
    .app-crm-mockup img {
        /* max-height: 40vh; Ensure it doesn't take full screen */
        width: auto;
        /* margin: 0 auto; */
    }

    /* Adjust Content Wrapper */
    .app-feature-wrapper {
        height: 120px; /* User requested mobile height */
        margin-bottom: 0;
    }

    .app-feature-item {
        padding: 20px;
        text-align: center;
        opacity: 0; 
        pointer-events: none;
        transform: translateY(-50%) translateY(20px);
        box-shadow: none; /* simpler look */
        background: transparent; /* Seamless blend */
    }
    
    .app-feature-item.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(-50%) translateY(0);
        padding: 0; /* User requested removal of padding */
    }


    .app-crm-col{
      width: 100%;
    }
}



@media (max-width: 510px) {
.web-colum .app-crm-mockup{
    max-width: 340px;
  }
  .app-mockup-img.laptop-mockup{
    left: 0;
    margin: 0 auto;
    top: 8px;
  }
    .app-mockup-img.laptop-mockup img{
          width: 232px;
    margin: 0 auto;
    display: block;
    }
}

@media (max-width: 375px) {
  .web-colum .app-crm-mockup{
    max-width: 200px;
  }
  .app-mockup-img.laptop-mockup{
    left: 0;
    margin: 0 auto;
    top: 8px;
  }
    .app-mockup-img.laptop-mockup img{
          width: 130px;
    margin: 0 auto;
    display: block;
    }
}
/* Dropdown Menu Styles */
header nav ul li .dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    background: #ffffff;
    min-width: 250px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

header nav ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header nav ul li .dropdown-menu li {
    margin: 0;
    display: block;
}

header nav ul li .dropdown-menu li::before {
    display: none;
}

header nav ul li .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #414141;
    font-weight: 400;
    white-space: nowrap;
}

header nav ul li .dropdown-menu li a:hover {
    background-color: #f9fafb;
    color: var(--primary-600);
}

.payment-benefits-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.payment-benefit-card{
  background: #FFFFFF;
  border: 1px solid #EDEEF3;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0px 0px 10px 0px #4A0D5514 inset;
}

.payment-benefit-card.is-wide{
  grid-column: 1 / -1;
  max-width: 620px;
  justify-self: center;
}

.payment-benefit-title{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.payment-benefit-title h4{
  margin-bottom: 0;
}

.payment-benefit-dot{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.payment-benefit-dot.is-blue{ background: rgba(59, 130, 246, 0.35); }
.payment-benefit-dot.is-red{ background: rgba(239, 68, 68, 0.35); }
.payment-benefit-dot.is-purple{ background: rgba(167, 139, 250, 0.45); }
.payment-benefit-dot.is-yellow{ background: rgba(253, 204, 41, 0.55); }
.payment-benefit-dot.is-green{ background: rgba(16, 185, 129, 0.35); }

.payment-benefit-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.payment-benefit-list li{
  display: flex;
  gap: 12px;
  color: #414141;
  font-weight: 300;
  line-height: 1.6;
}

.payment-benefit-list li::before{
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 999px;
  background: rgba(74, 13, 85, 0.35);
  flex: 0 0 auto;
}

.key-fetures-heaing{
  margin-bottom: 30px;
  text-align: center;
}

.key-fetures-heaing h2{
  margin-bottom: 15px;
}

.key-feture-btn{
  margin-top: 30px;
}



@media (max-width: 991px){
  .payment-benefits-grid{
    grid-template-columns: 1fr;
  }
  .payment-benefit-card.is-wide{
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}
