css 02.06.26

* {
	margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors - Custom Gradient */
  --primary: #1e3a8a;
  --primary-dark: #1e40af;
  --secondary: #6b21a8;
  --accent: #844DCA;
  
  --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;
  
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--shadow-gradient: 0 10px 15px -3px linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.2;
  color: rgb(17, 24, 39);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

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

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

/* ============================================
   UTILITIES
   ============================================ */

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
	max-width: 100%;
}
   
   /* Rotating Text Animation */
   .rotating-text-container {
     display: inline-block;
		 column-span: all;
     position: relative;
        overflow: visible;
        padding-bottom: 0.5rem;
		 line-height: 1.35;
		 max-width: 100%;
		   }
   
   .rotating-text {
     display: inline-block;
		 column-span: all;
     transition: all 0.5s ease-in-out;
		 max-width: 100%;
   }
   
   .rotating-text.fade-out {
     opacity: 0;
     transform: translateY(-10px);
   }

.required {
  color: var(--error);
}


.divider {
    padding: 0;
}

.divider-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}



/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.875em 1.75em;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.5;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  color: white;
  box-shadow: var(--shadow-md);
	text-decoration: none;
	
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: white;
	text-decoration: none; 
}

.btn-secondary {
  background: white;
  color: var(--gray-900);
  border: 2px solid var(--gray-300);
	text-decoration: none;
	max-width: 220px;
}

.btn-space {
	margin-top: 1rem;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
	text-decoration: none;
}

.btn-upwork {
	background: #14A800;
	color: var(--gray-100);
 border: 0px;
	border-radius: 30px;
}

.btn-upwork:hover {
border: 2px solid #14A800;
	color: #14A800;
	
	
}


.btn-white {
  background: white;
	text-decoration: none;
  color: var(--primary);
  box-shadow: var(--shadow-md);

}

.btn-white:hover {
  transform: translateY(-2px);
	text-decoration: none;
  box-shadow: var(--shadow-xl);
  color: var(--primary-dark);
}

.btn-large {
  padding: 1.125rem 1.125rem;
  font-size: 1.125em;
	text-decoration: none;
	max-width: 320px;
	font-weight: 500;
}

.btn-small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875em;
}

.btn-block {
  width: 48%;
}
	.btn-upwork:hover {
		background-color: white !important;
	}
	


/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  color: white;
  padding: 0rem 0rem;
  text-align: center;
  font-size: 0rem;
  font-weight: 600;
  position: hidden;
	max-height: 0px;
}

.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  flex-wrap: wrap;
	max-height: 0px;
}

.announcement-icon {
  font-size: 0rem;
}

.announcement-cta {
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: opacity var(--transition-fast);
}

.announcement-cta:hover {
  opacity: 0.8;
  color: white;
}

.announcement-close {
  position: absolute;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size:0rem;
  cursor: pointer;
  padding: 0rem 0rem;
  line-height: 0;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.announcement-close:hover {
  opacity: 1;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
  position: sticky;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: all var(--transition-base);
	max-width: 100%;
	max-height: 80px;
	margin-top: -25px;
	margin-bottom: -100px;
}

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

.nav-container {
  display: flex;
  align-items: center;

  padding: 0.5rem 1rem;
  max-width: 100%;
	max-height: 80px;
  margin: 0 auto;
}

/* Logo */
.logo {
	display: flex !important;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary);
	font-family: candara, montserrat, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform var(--transition-fast);
}

.logo svg {
	width: 40px
}


.logo img {
	width: 40px;
	height: auto;
}



.logo-text {
	display: flex;
	padding-left: 1rem;
	padding-right: 1rem;
	font-size: 1.75rem;
	color: black;
	font-family: candara;
		}

.logo-text-new {
    /* background: linear-gradient(112deg, #FFFFFF 29%, #844DCA 62%); 
	background: linear-gradient(135deg, #1e3a8a 0%, #6b21a8 70%, #844DCA 100%); */
	background: black;
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	  display: inline-block;
	
	font-size: 1.75rem;
	padding-left: 1rem;
	padding-right: 1rem;
	font-weight: 800;
	line-height: 1.4;
			}






/* Navigation Menu */
.nav-menu {
  display: flex !important;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
	}

@media (max-width: 1100px) {
	.nav-menu {
	gap: 1.25rem;
}
}


.nav-menu a {
  color: var(--gray-900);
  font-weight: 600;
  font-size: 1.0rem;
  transition: color var(--transition-fast);
  position: flex;
  padding: 0.5rem 0;
}

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

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

.nav-menu a:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  padding: 0.75rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  margin-top: 0.5rem;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--gray-700);
  font-size: 0.9375em;
  transition: all var(--transition-fast);
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--primary);
  padding-left: 1.5rem;
}

/* Header Contact */
.header-contact {
  display: flex;
  align-items: center;
	position: absolute;
	right: 1.0%;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-toggle span {
  width: 1.75rem;
  height: 0.1875rem;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all var(--transition-base);
}

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

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

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

/* Nav Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  padding: 8rem 0;
	padding-left: 3rem;
	padding-right: 3rem;
	margin-top: 7rem;
	margin: 0 auto;
	padding-bottom: 0rem; !important
	  overflow-x: hidden;
}

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

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
}

.hero-section .container {
   	gap: 0rem 2.5rem;
margin-bottom: 0rem;
  align-items: center;
	max-width: 100%;
	}


.hero-badge {
  display: flex;
  align-items: center;
	justify-content: space-evenly;
	max-width: 480px;
  color: rgba(17, 24, 39);
  padding: 0.5rem 1.6rem;
  border-radius: 30px;
  font-size: 0.875em;
  font-weight: 600;
  margin-bottom: 2.5rem;
	  border: 1px solid rgba(92, 41, 125, 0.2);
	  background: #f5f0fc;	
}

.hero-badge svg {
  color: yellow;
	
}


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

/* Apply the animation to the element */
.hero-badge svg {
   
  /* Apply the animation */
  animation-name: spin;
  animation-duration: 5s; /* Duration of one full rotation */
  animation-timing-function: linear; /* Constant speed */
  animation-iteration-count: infinite; /* Loop forever */
  
  /* Ensure transform origin is centered for proper rotation */
  transform-origin: center center;
}






.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900 !important;
	text-wrap: pretty;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
column-span: all;
	color: rgba(17, 24, 39);
max-width: 99% !important;
}



.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--gray-900);
  margin-bottom: 2rem;
column-span: all;
}


.hero-section .container {
display: grid;
  grid-template-columns: 1.25fr .75fr;
}
.hero-benefits {
  display: flex !important;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
}

.benefit-item {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125em;
  font-weight: 500;
  color: var(--gray-700);
}

.benefit-item svg {
  color: var(--success);
  flex-shrink: 0;
	
}

.hero-cta-group {
  display: flex !important;
	flex-direction: column;
	align-content: left;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
	
}

.hero-trust-indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
padding-top: 1.25rem;


	}

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

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0.125rem;
}

.trust-label {
  font-size: 1.015rem;
	font-weight: 500;
  color: var(--gray-900);
	}

/* Hero Image */
.hero-image {
  position: relative;
	align-self: start;
justify-self: end;
	margin: 2rem auto 0;
}


.hero-image-badge {
  position: absolute;
   right: -3rem;
	bottom: 7rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 50%, var(--primary) 100%);
	opacity: .95;
	
  padding-right: 1.75rem;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	padding-left: 1.75rem;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);;
  display: flex !important;
  align-items: center;
	align-content: center;
  	border: 1px solid var(--accent);
  max-width: 260px;
}

@media (max-width: 768px) {
	.hero-image-badge {
		right: 3em;
		bottom: 3em;
	}
}

.hero-image-badge-AI {
  position: absolute;
  top: 5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 50%, var(--primary) 100%);
	opacity: .95;
  padding-right: 1.5rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  display: flex !important;
  align-items: center;
	align-content: center;
  	border: 1px solid var(--accent);
  max-width: 280px;
	}

@media (max-width: 768px) {
	.hero-image-badge-AI {
		left: .1em;
		top: 1.75em;
	}
}





.badge-icon {
  font-size: 1.25rem;
	padding-right: 0.5rem;
}

.badge-content {
	align-content: center;
	align-items: center;
	align-self: center;
	display: flex;
}

.badge-title {
  font-weight: 500;
  color: white;;
}


/* client logos */

.client-logos-section {
display: flex;
	padding-top: 8rem;
	margin: 0 auto;
	margin-top: 3rem;
	margin-bottom: 3rem;
	text-align: center;
	padding-bottom: 6rem;
	align-content: center;
	align-items: center;
	align-self: center;
}


.client-logos-section h2 {
 font-size: 3rem;
color: var(--black); 
}



/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--gray-50);
	   border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
	align-items: center !important;
	margin: 0 auto;
	align-content: center !important;
	padding-top: 1rem !important;
	padding-bottom: 0rem !important;
	}

.trust-badges {
  display: flex;
	margin: 0 auto;
  justify-content: center;
  align-items: center;
  column-gap: 3rem;
	row-gap: 1rem;
	  flex-wrap: wrap;
}

.trust-badge {
  display: flex !important;
  align-items: center;
	align-content: center;
  gap: 0.75rem;
  color: var(--gray-700);
  font-size: 1.0rem;
  font-weight: 600;
}

.trust-badge svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  margin: 0 auto 2.5rem;
	align-items: center;
}

.section-badge {
  display: inline-block;
  background: white;
  color: black;
	text-align: center;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.975rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: .5rem;
	}

.section-test-badge {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
	color: white;
	display: inline-block;
	text-align: center;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.975rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}


.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.section-test-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: whitesmoke;
  line-height: 1.4;
}

.section-test-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  padding: 6rem 0;
  background: linear-gradient(145deg, var(--accent) 0%, var(--secondary) 60%, var(--primary) 105%);

}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2fr 2fr);
 	justify-content: center; /* Centers the grid columns */
  gap: 2rem; /* Optional: adds spacing between items */
  max-width: 1fr; /* Optional: constrains maximum width */	
  margin: 0 auto; /* Centers the grid container itself */
  padding: 0 5rem; /* Optional: adds side padding */
	margin-bottom: 1rem;
	margin-left: 10rem;
	margin-right: 10rem;
  } 

.service-card {
  background: var(--gray-50) !important;
	min-width: 220px;
	max-width: 1080px;
  border: 3px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.25rem 3.0rem;
  transition: all var(--transition-base);
}
 

.service-card:hover {
  transform: translateY(-8px);
  
	 box-shadow: 4px 10px 25px 10px rgba(0, 0, 0, .35); 
}


.service-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 0.75rem;
}



.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
	padding-bottom: 1rem;
  margin-bottom: .75rem;
	border-bottom: 1px solid var(--gray-200)

}

.service-description {
  font-size: 1rem;
  color: var(--gray-900);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
		display: grid;
	grid-template-columns: 2fr 2fr;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.35rem 0;
  color: var(--gray-900);
  font-size: 0.9375rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
	
  color: var(--success);
  font-weight: bold;
  font-size: 1.125rem;
}

.service-footer {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.service-timeline {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.service-timeline svg {
  color: var(--gray-400);
}

.service-link {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: gap var(--transition-base);
}

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

.services-cta {
  text-align: center;
  padding: 1.0rem 2.5rem;
	align-content: center;
	justify-self: center;
  border-radius: var(--radius-xl);
	background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 2px solid #F59E0B;
}

.services-cta p {
  font-size: 1.125rem;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
	font-weight: 500;
	
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
  padding: 4rem 0;
	padding-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  color: white;
	justify-content: center;
	justify-items: center;
	margin-bottom: 1rem;
}

.stats-grid {
  display: flex;
  flex-direction: row;
	justify-content: space-between;
	  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1rem;
	min-width: 180px;
	max-width: 240px;
	padding-bottom: 0rem;
	  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-base);
	position: relative;
}

.stat-card-upwork {
  text-align: center;
  padding: 1rem;
	padding-top: 2rem;
	max-width: 240px;
	min-width: 180px;
	
	padding-bottom: 0rem;
	  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
}

.stat-card-up {
  text-align: center;
  padding: 1rem;
	padding-top: 2rem;
	max-width: 240px;
	min-width: 180px;
	
	padding-bottom: 0rem;
	  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
}

.image-stack img {
  display: block; /* Forces each image to start on a new line */
  margin: 0 0 0rem 0; /* Adds vertical space (1em) between images */
  max-width: 90%; /* Ensures images are responsive within their container */
	min-width: 90%;
	margin: 0 auto;
  height: auto; /* Maintains aspect ratio */
}



.stat-card-up img,
.stat-card-up .upwork-logo {
	position: absolute;
	top: -1.75rem;
	right: -1.75rem;
	width: 5rem;
	height: 5rem;
	rotate: -25deg;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-card-up:hover {
	  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
	border: 2.5px solid #00ff00;
}

.stat-card-upwork:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
	border: 2.5px solid #00ff00;
}


.stat-icon {
  margin-bottom: 1rem;
	margin-top: 1rem;
  opacity: 0.9;
}




.stat-number {
  font-size: 3em;
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.125em;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 1);
}

.stat-description {
  font-size: .95em;
	text-align: center;
  color: rgba(255, 255, 255, 1);
	  margin: 0 auto;
	padding-bottom: 1rem;
}
.stat-upwork {
		font-size: .95em;
		text-align: left;
	text-align: top;
		color: white;
	padding-top: 2rem;
	}





/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
  padding: 10rem 0;
  background: var(--gray-100);
	margin-top: -2rem;
}

.testimonials-grid {
  display: flex;
	gap: 1rem;
	flex-direction: row;
	justify-content: center;
	justify-items: center;
}

.testimonial-card {
  background: white;
  border: 2.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all var(--transition-base);
  display: flex !important;
  flex-direction: column;
	padding-bottom: .50rem;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
	border: 3px solid var(--primary);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  color: white	
}

.testimonial-rating {
  display: flex !important;
  gap: 0.25rem;
  margin-bottom: 1.0rem;
  color: #fbbf24;
}

.testimonial-card.featured .testimonial-rating {
  color: #fbbf24;
}

.testimonial-quote {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
	text-decoration: none;
  margin-bottom: 1.0rem;
  color: var(--gray-900);
}

.testimonial-card.featured .testimonial-quote {
  color: white; 
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
  display: flex !important;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.testimonial-card.featured .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.author-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.testimonial-card.featured .author-avatar {
  background: white;
  color: var(--primary);
}

.author-name {
	padding-top: 1em;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);

}

.testimonial-card.featured .author-name {
  color: white;
}

.author-title {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.testimonial-card.featured .author-title {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  padding-top: 3rem;
  background: white;
	margin-bottom: 6rem;
	margin-left: 4rem;
	margin-right: 4rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 5rem;
  align-items: center;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--gray-750);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex !important;
  gap: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin: 0;
}

.flex-right-column{
	display: flex;
	justify-content: flex-end;
}

.about-image {
  position: relative;
	}

.about-image img {
  width: 90%;
	  height: auto;
  border-radius: 20px;;
  box-shadow: var(--shadow-2xl);
}


.about-badge {
  position: absolute;
  bottom: 4em;
  right: 2em;
  background: white;
  padding: 1.5rem;
	padding-top: 1.5rem;
	padding-bottom: .5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, .65);
  text-align: center;
}

.badge-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.badge-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  padding: 0rem 0;
	padding-top: 2rem;
	padding-bottom: 4rem;
  background: white;
}
/* alternate faq styling
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  background: white;
  transition: all 0.3s ease;
}

.faq-question span {
  font-size: 1.2em;
  font-weight: 700;
  color: #2d3748;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #667eea;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-question:hover {
  background: #f7fafc;
}

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

.faq-item.active .faq-answer {
  max-height: 2000px;
  padding: 0 30px 30px 30px;
}

.faq-answer p {
  color: #4a5568;
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
}

.faq-answer p strong {
  color: #667eea;
  font-weight: 700;
  display: inline-block;
}

.faq-highlight {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border: 2px solid #667eea;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 0;
}

.faq-highlight p {
  color: #667eea !important;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 !important;
}*/


.faq-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}

.faq-question {
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--gray-900);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary);
	background: white;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--gray-400);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
	padding-top: 0;
  transition: 0.5s ease, padding-top 0.5s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
   padding-top: 0.15rem;
}

.faq-answer p {
  font-size: 1.125rem;
  line-height: 1.5rem;
	padding-bottom: 0.25rem;
  color: var(--gray-700);
  margin: 0.25rem;
}


.faq-highlight {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border: 2px solid var(--primary);
  padding: 20px;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 0;
}

.faq-highlight p {
  color: #667eea !important;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 !important;
}





/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 11rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.cta-title {
	font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: white;
}

.cta-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 1);
}

.cta-benefits {
  display: flex !important;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 0.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-benefit {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
     color: rgba(255, 255, 255, 1);
}

.cta-benefit svg {
  color: rgba(255, 255, 255, 0.9);
	  flex-shrink: 0;
}

.cta-note {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
	  margin-top: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
}

.cta-note svg {
  flex-shrink: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding: 6rem 3rem;
	padding-bottom: 2rem;
	margin: 0 auto;
  background: var(--gray-50);
	}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
	column-gap: 2.rem;
	
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 2.5rem;
}

.contact-description {
  font-size: 1.125rem;
	text-wrap: balance;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 2.5rem;
	max-width: 800px;
}

.contact-methods {
  display: flex !important;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-method {
  display: flex !important;
  gap: 1rem;
}

.method-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.method-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.method-value {
  font-size: 1.125rem;
  color: var(--gray-900);
  font-weight: 600;
}

.method-owned {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
  font-weight: 600;
   letter-spacing: 0.05em;
}

.method-operated {
  font-size: 1rem;
  color: var(--gray-900);
  font-weight: 600;
}



.contact-hours {
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
}

.contact-hours h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.contact-hours p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;

	max-width: 800px;
  border-radius: var(--radius-xl);
  padding: 2rem;
	align-content: center;
	justify-content: center;
	vertical-align: center;
  box-shadow: -4px 10px 25px -1px var(--primary);
	padding-bottom: 1rem;
}

.contact-form {
  display: flex !important;
	  flex-direction: column;
	vertical-align: center;
	justify-content: space-between;
	
}

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

.form-row.full-width {
  display: block !important;
  width: 100% !important;
}


.btn-primary.btn-block.cta-button {
	display: flex;
	justify-self: center;
align-self: center;
}



.form-row.full-width .form-group {
  width: 100% !important;
}



.form-group {
  display: flex !important;
  flex-direction: column;
  }

.form-group label {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.5rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  background: white;
		box-shadow: inset 2px 1px 5px rgba(0, 0, 0, .25);
}



.form-group label {
	padding-bottom: .25rem;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(92, 41, 125, 0.1);
}

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

.form-note {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: .25rem;
}

.form-note a {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 2rem 0rem 0.1rem;
	margin-bottom: -3.5rem;
	}


.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
	 }

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

.footer-logo-text-new {
    /* background: linear-gradient(112deg, #FFFFFF 29%, #844DCA 62%); 
	background: linear-gradient(135deg, #1e3a8a 0%, #6b21a8 70%, #844DCA 100%); */
	background: white;
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	  display: inline-block;
	padding-left: .55rem;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.4;
			}


.footer-logo svg {
	height: 40px !important;
	min-height: 40px !important;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: var(--gray-300);
	padding-right: 2rem;
}

.footer-social {
  display: flex !important;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gray-800);
  border-radius: var(--radius-md);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

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



.footer-column h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-column ul {
  list-style: square;
	}

.footer-column ul li {
  margin-bottom: 0.25rem;
}

.footer-column ul li a {
  color: var(--gray-400);
  font-size: 0.885rem;
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  padding-top: .75rem;
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-weight: 600;
  color: var(--gray-400);
}

/* ============================================
   STICKY CTA BAR
   ============================================ */

.sticky-cta {
  position: fixed;
width: 100% !important;
	max-height: 40px;

  padding: 0.15rem 1.5rem;
	justify-self: center;
	margin: 0 auto;
	justify-items: space-between;
	align-items: center;
		background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
	opacity: .97;
  z-index: 999;
  transition: bottom var(--transition-base);


}

.sticky-cta.visible {
  bottom: 0;
}

.sticky-cta-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0rem;
  display: flex !important;
  align-content: center;
  justify-content: right;
  gap: 0.0rem;
}

.alyssa-blah h3 {
	font-size: 1.1rem;
	padding-right: 2rem;
	
	font-family: candara;
	color: var(--gray-100);
	padding-top: 0.5rem;
}	
	
	
@media screen and (max-width: 800px) {
	.alyssa-blah h3 {
			display: none !important;
		}
	}	



.btn-sticky {
color: var(--primary);
		font-size: .9rem !important;
	padding-left: 1.0rem;
	padding-right: 1.0rem;
	max-height: 30px;
	margin-top: 0.15rem;
}



.btn-sticky span {
	display: inline;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.btn-sticky:hover span {
	opacity: 0;
	display: none;
}

.btn-sticky:Hover {
	color: whitesmoke;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%) !important;
	border: 1px solid white;
}


.btn-sticky:Hover::after {
			 box-shadow: -2px 10px 25px -1px var(--primary);
}


.sticky-cta-text {
  display: flex !important;
	align-self: center;
	align-content: center;
	align-items: center;

	padding-bottom: 1.5rem;
}

.sticky-cta-text strong {
  font-size: 1rem;
  font-weight: 500;
	align-self: center;
	align-content: center;
	align-items: center;
}

.sticky-cta-text span {
  font-size: 0.9375rem;
  opacity: 0.9;
}

.sticky-cta-close {
  background: none;
	display: absolute;
  border: none;
  color: whitesmoke;
  font-size: 1.25rem;
  cursor: pointer;
  padding-top: 1px;
	padding-left: .5rem;
	padding-right: .5rem;
	text-decoration: none;
  opacity: 1;
  transition: opacity var(--transition-fast);
	right: 1rem;

}





.sticky-cta-close:hover {
  opacity: 1;
	background: none;
	color:whitesmoke;
	transform: translatey(-2px);
}




.client-logos-section {
	margin: 0 auto;
	align-content: center;
	align-items: center;
	align-self: center;
	justify-content: center;
	justify-items: center;
}

.client-logos-wrapper {
	margin: 0 auto !important;
  padding-bottom: 2rem;
}

.clients-cta-2 {
	 background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border: 2px solid #10B981;
	padding-top: 1rem;
	margin-top: 3.5rem !important;
	border-radius: 20px;
	width: 480px;

	margin: 0 auto;
}

@media (max-width 500px) {
	.clients-cta-2 {
		width: 370px !important;
	}
}



/*
  .clients-badge-2 {
            display: inline-flex;
            align-items: center;
		margin: 0 auto;
            gap: 4px;
		align-content: center;
		align-self: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding-bottom: .5rem;
						padding-left: .5rem;
						padding-right: .5rem;
            border-radius: 50px;
            color: white;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
		
}*/

.client-item {
 width: 150px;
	border-radius: 20px;

	
}
.client-item:hover {
	transform: translatey(-4px);
            box-shadow: 0 4px 16px var(--gray-400);
	transform: scale(1.15);
}

   /* CTA Section */
        .clients-cta-2 {
            text-align: center;
        
        }

        .clients-cta-text-2 {
            font-size: 18px;
            color: var(--gray-900);
            margin-bottom: 20px;
        }

        .clients-cta-button-2 {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 16px 40px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .clients-cta-button-2:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.9);
color: white;
}



/* ============================================
   COOKIE BANNER - ULTRA FIXED VERSION
   This version uses maximum CSS specificity to ensure
   the banner stays fixed at the bottom of the viewport
   ============================================ */

/* Force fixed positioning with maximum specificity */
html body div#cookieBanner.cookie-banner {
    position: fixed !important;
		bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100vw !important;
    background: white !important;
    padding: 1rem 1.25rem !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15) !important;
    z-index: 999999 !important;
    animation: slideUp 0.5s ease-out !important;
    display: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    transform: none !important;
    /* Force it to stay at bottom */
    float: none !important;
    clear: both !important;
}

/* When visible */
html body div#cookieBanner.cookie-banner[style*="display: block"],
html body div#cookieBanner.cookie-banner[style*="display: flex"] {
    display: block !important;
}

/* Content wrapper */
html body div#cookieBanner.cookie-banner .cookie-banner-content {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1.25rem !important;
    flex-wrap: wrap !important;
    position: relative !important;
}

/* Left side */
html body div#cookieBanner.cookie-banner .cookie-banner-left {
    flex: 1 !important;
    min-width: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
}

/* Toggle */
html body div#cookieBanner.cookie-banner .cookie-banner-toggle {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.25rem !important;
}

html body div#cookieBanner.cookie-banner .toggle-label {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #667eea !important;
}

html body div#cookieBanner.cookie-banner .toggle-indicator {
    width: 12px !important;
    height: 12px !important;
    background: #667eea !important;
    border-radius: 50% !important;
    animation: pulse 2s infinite !important;
}

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

/* Text */
html body div#cookieBanner.cookie-banner .cookie-banner-text {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin: 0 !important;
}

html body div#cookieBanner.cookie-banner .cookie-banner-link {
    color: #667eea !important;
    text-decoration: underline !important;
    font-weight: 500 !important;
}

html body div#cookieBanner.cookie-banner .cookie-banner-link:hover {
    color: #764ba2 !important;
}

/* Right side - buttons */
html body div#cookieBanner.cookie-banner .cookie-banner-right {
    display: flex !important;
    gap: 0.75rem !important;
    flex-wrap: wrap !important;
    align-items: center !important;
}

/* Buttons */
html body div#cookieBanner.cookie-banner .cookie-banner-btn {
    padding: 0.75rem 1.15rem !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 0.915rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

html body div#cookieBanner.cookie-banner .cookie-btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

html body div#cookieBanner.cookie-banner .cookie-btn-accept:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4) !important;
}

html body div#cookieBanner.cookie-banner .cookie-btn-deny {
    background: #f3f4f6 !important;
    color: #333 !important;
	min-width: 132px;
}

html body div#cookieBanner.cookie-banner .cookie-btn-deny:hover {
    background: #e5e7eb !important;
	min-width: 132px;
}

html body div#cookieBanner.cookie-banner .cookie-btn-manage {
    background: white !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
	min-width: 132px;
}

html body div#cookieBanner.cookie-banner .cookie-btn-manage:hover {
    background: #667eea !important;
    color: white !important;
	min-width: 132px;
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal */
html body div#cookieModal.cookie-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 1000000 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    margin: 0 !important;
    transform: none !important;
}

html body div#cookieModal.cookie-modal[style*="display: block"],
html body div#cookieModal.cookie-modal[style*="display: flex"] {
    display: flex !important;
}

html body div#cookieModal.cookie-modal .cookie-modal-content {
    background: white !important;
    border-radius: 12px !important;
    max-width: 600px !important;
    width: 100% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
}

html body div#cookieModal.cookie-modal .cookie-modal-header {
    padding: 1.5rem 2rem !important;
    border-bottom: 1px solid #e5e7eb !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

html body div#cookieModal.cookie-modal .cookie-modal-header h2 {
    margin: 0 !important;
    font-size: 1.5rem !important;
    color: #333 !important;
}

html body div#cookieModal.cookie-modal .cookie-modal-close {
    background: none !important;
    border: none !important;
    font-size: 2rem !important;
    color: #999 !important;
    cursor: pointer !important;
    line-height: 1 !important;
    padding: 0 !important;
    width: 32px !important;
    height: 32px !important;
}

html body div#cookieModal.cookie-modal .cookie-modal-close:hover {
    color: #333 !important;
}

html body div#cookieModal.cookie-modal .cookie-modal-body {
    padding: 2rem !important;
}

html body div#cookieModal.cookie-modal .cookie-option {
    margin-bottom: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid #e5e7eb !important;
}

html body div#cookieModal.cookie-modal .cookie-option:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

html body div#cookieModal.cookie-modal .cookie-option-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 0.5rem !important;
}

html body div#cookieModal.cookie-modal .cookie-option-header h3 {
    margin: 0 !important;
    font-size: 1.1rem !important;
    color: #333 !important;
}

html body div#cookieModal.cookie-modal .cookie-option p {
    margin: 0 !important;
    font-size: 0.9rem !important;
    color: #666 !important;
    line-height: 1.5 !important;
}

/* Cookie Toggle Slider Fix */
.cookie-toggle,
#cookieModal .cookie-toggle {
    position: relative !important;
    display: inline-block !important;
    width: 50px !important;
    height: 26px !important;
    cursor: pointer !important;
}

.cookie-toggle input,
#cookieModal .cookie-toggle input {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
}

.cookie-toggle-slider,
#cookieModal .cookie-toggle-slider {
    position: absolute !important;
    cursor: pointer !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: #ccc !important;
    transition: 0.4s !important;
    border-radius: 26px !important;
    display: block !important;
}

.cookie-toggle-slider:before,
#cookieModal .cookie-toggle-slider:before {
    position: absolute !important;
    content: "" !important;
    height: 20px !important;
    width: 20px !important;
    left: 3px !important;
    bottom: 3px !important;
    background-color: white !important;
    transition: 0.4s !important;
    border-radius: 50% !important;
    display: block !important;
}

.cookie-toggle input:checked + .cookie-toggle-slider,
#cookieModal .cookie-toggle input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before,
#cookieModal .cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px) !important;
}

.cookie-toggle input:disabled + .cookie-toggle-slider,
#cookieModal .cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

html body div#cookieModal.cookie-modal .cookie-modal-footer {
    padding: 1.5rem 2rem !important;
    border-top: 1px solid #e5e7eb !important;
    display: flex !important;
    gap: 1rem !important;
    justify-content: flex-end !important;
}

html body div#cookieModal.cookie-modal .cookie-btn-save {
    background: white !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-size: 0.915rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

html body div#cookieModal.cookie-modal .cookie-btn-save:hover {
    background: #f3f4f6 !important;
}


html body div#cookieModal.cookie-modal .cookie-btn-accept {
    background: white !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-size: 0.915rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}


/* Responsive */
@media (max-width: 768px) {
    html body div#cookieBanner.cookie-banner {
        padding: 1rem !important;
    }
    
    html body div#cookieBanner.cookie-banner .cookie-banner-content {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    html body div#cookieBanner.cookie-banner .cookie-banner-left {
        min-width: 100% !important;
    }
    
    html body div#cookieBanner.cookie-banner .cookie-banner-right {
        width: 100% !important;
        justify-content: center !important;
    }
    
    html body div#cookieBanner.cookie-banner .cookie-banner-btn {
        flex: 1 !important;
        min-width: 120px !important;
    }
    
    html body div#cookieModal.cookie-modal .cookie-modal-content {
        margin: 1rem !important;
    }
    
    html body div#cookieModal.cookie-modal .cookie-modal-header,
    html body div#cookieModal.cookie-modal .cookie-modal-body,
    html body div#cookieModal.cookie-modal .cookie-modal-footer {
        padding: 1rem !important;
    }
}

@media (max-width: 580px) {
    html body div#cookieBanner.cookie-banner .cookie-banner-right {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    html body div#cookieBanner.cookie-banner .cookie-banner-btn {
        width: 100% !important;
    }
    
    html body div#cookieModal.cookie-modal .cookie-modal-footer {
        flex-direction: column !important;
    }
}







/* ============================================
   CHAT BUTTON
   ============================================ */

.chat-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  z-index: 998;
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-2xl);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
    .contact-form-wrapper {
    padding: 1rem 1;
  }
}

@media (max-width: 1410px) {
	.hero-section .container{
		grid-template-columns: 1fr;
	}
	.hero-image {
		order: -0;
	}
	}

@media (max-width: 1080px) {
  .hero-section .container,
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -0;
  }
  
  .hero-trust-indicators {
    grid-template-columns: repeat(2, 1fr);
  }
  
	  .services-grid {
    grid-template-columns: 1fr;
		margin-left: 1%;
		margin-right: 1%;
  }
	
	
	.service-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2.0rem;
  transition: all var(--transition-base);
	}
		.services-cta {
		margin-left: 16%;
		margin-right: 16%;
	padding: 1.5rem 2.0rem;
}
	
	
	
		.stats-grid {
		display: flex;
		flex-direction: column;
		justify-self: center;
			}
	
	.stat-card-upwork, .stat-card-up, .stat-card 
 {
		min-width: 480px;
	}
	
	.image-stack {
		transform: scale(.75);
	}
	
		.testimonials-section {
		margin-bottom: 20px;
	}
	
  .testimonials-grid {
    display: flex;
		flex-direction: column;
	}
	

	
	
}

@media (max-width: 900px) {
	  /* Force everything to stay within viewport */
  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
	.container {
		padding: 0 1rem;
		max-width: 100%;
	}
  /* Navigation */
  .logo-text-new {
    display: inline;
		position: absolute;
		padding-left: 0px;
		margin-left: 60px;
	}
	.logo-text img {
		height: 30px;
		justify-content: center;
		justify-items: center;
		justify-self: center;
		align-self: center;
	}
	.logo:hover {
  transform: scale(1.02);
	box-shadow: none;	
	}
  
	.nav-container {
		justify-content: space-between;
	}
	
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;	
		width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0;
    transition: left var(--transition-base);
    z-index: 999;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
  }
  
  .nav-menu.active {
    left: 0px;
  }
  
  .nav-menu li {
    width: 100%;
	  }
  
  .nav-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    background: var(--gray-50);
  }
  
  .header-contact {
    display: none;
  }
  
  .mobile-toggle {
    display: flex !important;
		margin-top: 100%;
  }
	
	.mobile-toggle:hover {
		background-color: var(--secondary);
	}
  
	/* Sections */
  /* Fix hero section */
  .hero-section {
    padding-top: 8rem !important;
    margin: 0 !important;
    overflow: hidden !important;
    width: 100% !important;
  }
  
  .hero-content {
    max-width: 100% !important;
    padding: 0 0.75rem !important;
  }
  
  .hero-badge {
    max-width: 480px !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.75rem !important;
     }

		
  .hero-title {
    max-width: 485px !important;
		font-size: 3.25rem !important;
    padding: 0 0.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    padding: 0 0.5rem !important;
  }
	
	
	
	
	.hero-section {
   padding-top: 1rem;
	}
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-cta-group .btn {
    width: 80%;
  }
  
  .hero-trust-indicators {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .trust-badges {
    gap: 1.5rem;
  }
  
  .services-grid {
display: flex;
		flex-direction: column;
			align-items: center;
  }
	
	
	.service-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
 

	}
		.services-cta {
				align-content: center;
			align-self: center;
			align-items: center;
}
	
/* Fix stats section */
  .stats-section {
    padding: 2rem 0 !important;
  }
  
  .stats-grid {
    padding: 0 01.75rem !important;
		justify-content: center;
    gap: 1rem !important;
  }
	

	
  .stat-card,
	.stat-card-up,
  .stat-card-upwork {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
	.image-stack img {
  display: block; /* Forces each image to start on a new line */
  margin: 0 0 .1em 0; /* Adds vertical space (1em) between images */
		margin: 0 auto;
  max-width: 70% !important; /* Ensures images are responsive within their container */
	min-width: 50%;
  height: auto; /* Maintains aspect ratio */
}


	
	.testimonials-section {
		margin-bottom: 20px;
	}
	
  .testimonials-grid {
    display: flex;
		flex-direction: column;
	}
	
	.section-test-subtitle {
			}
	
	.section-header {
		margin-bottom: 2%;
	}

	.about-section {
		margin: 0 auto;
	}
	
  .about-features {
    grid-template-columns: 2fr 2fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
	
.btn-primary.btn-block.cta-button {
	display: flex;
	justify-self: center;
align-self: center;
width: 90%;
	}
	
	
  /* Fix footer */
  .footer {
    padding: 2rem 0 !important;
  }

  .footer-content {
    padding: 0 0.75rem !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
  
  .sticky-cta-content {
    flex-direction: row;
    text-align: center;
	}

  
  .contact-form-wrapper {
    padding: 2rem;
		border: 1px solid var(--primary);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
	

	
	
}

@media (max-width: 1200px) {
	.sticky-cta-close {
		padding-right: 40px;
	}
}

@media (max-width: 700px) {

	
.hero-badge {
    max-width: 480px !important;
 margin-top: -30x;
    font-size: 0.75rem !important;
     }	
	 .stat-card,
	.stat-card-up,
  .stat-card-upwork {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}


/* ============================================
   FIX FOR 360px OVERFLOW
   ============================================ */

@media (max-width: 380px) {
  /* Force everything to stay within viewport */
  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
  
  /* Fix container - your current has max-width: 300px which is too small */
  .container {
    padding: 0 0.75rem !important;
    margin: 0 auto !important;
    max-width: 100% !important; /* Change from 300px */
    width: 100% !important;
  }
  
  /* Fix header */
  .header {
    max-height: 75px;
    padding: 0 0.5rem !important;
    width: 100% !important;
  }
  
  .nav-container {
    justify-content: space-between;
    padding: 0.5rem 0.75rem !important;
    width: 100% !important;
  }
  
  .logo {
    margin-left: 0 !important;
    margin-top: 0 !important;
    font-size: 1rem;
  }
	
	.logo-text {
		display: none;
	}
  /* Fix hero section */
  .hero-section {
    padding-top: 4rem !important;
    margin: 0 !important;
    overflow: hidden !important;
    width: 100% !important;
  }
  
  .hero-content {
    max-width: 100% !important;
    padding: 0 0.75rem !important;
  }
  
  .hero-badge {
    max-width: 90% !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.75rem !important;
     }
  
  .hero-title {
    font-size: 1.5rem !important;
    padding: 0 0.5rem !important;
		max-width: 90% !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    padding: 0 0.5rem !important;
  }
  
  /* Fix CTA buttons */
  .hero-cta-group {
    width: 90% !important;
    padding: 0 0.5rem !important;
  }
  
  .hero-cta-group .btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.75rem 1rem !important;
  }
  
  /* Fix trust indicators */
  .hero-trust-indicators {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
    padding: 1rem 0.5rem !important;
		margin-right: 1.5rem;
  }
  
  .trust-item {
    padding: 0.5rem !important;
  }
  
  .trust-number {
    font-size: 1.5rem !important;
  }
  
  .trust-label {
    font-size: 0.75rem !important;
  }
  
  /* Fix trust badges */
  .trust-badges {
    flex-direction: column !important;
    gap: 0.75rem !important;
    padding: 0 0.75rem !important;
  }
  
  /* Fix services section */
  .services-section {
    padding: 3rem 0 !important;
  }
  
  .services-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 0.15rem !important;
    gap: 1rem !important;
  }
  
  .service-card {
    min-width: 0 !important;
    width: 100% !important;
    padding: 1rem 1rem !important;
  }
  
  .service-features {
    display: flex !important;
    flex-direction: column !important;

    padding: 0 !important;
    margin: 0 !important;
  }
  
	
	.services-cta {
		padding-left: 2%;
	padding-right: 2%;
	}
  /* Fix stats section */
  .stats-section {
    padding: 2rem 0 !important;
  }
  
  .stats-grid {
    padding: 0 01.75rem !important;
		justify-content: center;
    gap: 1rem !important;
  }
	

	
  .stat-card,
	.stat-card-up,
  .stat-card-upwork {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
	.image-stack img {
  display: block; /* Forces each image to start on a new line */
  margin: 0 0 .1em 0; /* Adds vertical space (1em) between images */
  max-width: 90% !important; /* Ensures images are responsive within their container */
	min-width: 50%;
  height: auto; /* Maintains aspect ratio */
}

	
	
	
  /* Fix testimonials */
  .testimonials-section {
    padding: 3rem 0 !important;
  }
  
  .testimonials-grid {
    padding: 0 0.75rem !important;
    gap: 1rem !important;
  }
  
  .testimonial-card {
    padding: 1.5rem 1rem !important;
  }
  
  /* Fix about section */
  .about-section {
		width: 100%;
 margin: 0 auto;
    padding: .2rem 0 !important;
  }
  
  .about-content {
    padding: 0 !important;
  }
  
	.about-features {
		display: flex;
		flex-direction: column;
	}
	
	
  .about-image img {
    width: 100% !important;
  }
  
  /* Fix CTA section */
  .cta-section {
    padding: 3rem 0 !important;
  }
  
  .cta-content {
    padding: 0 0.75rem !important;
  }
  
  /* Fix contact section */
  .contact-section {
    padding: 3rem 0 !important;
  }
  
  .contact-wrapper {
    padding: 0 0rem !important;
  }
  
  .contact-form-wrapper {
    padding: 1rem !important;
  }
  
.btn-primary.btn-block.cta-button {
	display: flex;
	justify-self: center;
align-self: center;
width: 90%;
	}
	
	
  /* Fix footer */
  .footer {
    padding: 2rem 0 !important;
  }
  
  .footer-content {
    padding: 0 0.75rem !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Fix logo carousel */
  .logo-carousel-section {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  .logo-track {
    gap: 1.5rem !important;
  }
  
  .logo-item {
    width: 150px !important;
    height: 150px !important;
  }
  
  /* Fix client logos */
  .client-logos-wrapper {
    gap: 1.5rem !important;
    padding: 0 0.75rem !important;
  }
  
 .client-item img {
    max-width: 80px !important;
    max-height: 80px !important;
  }

	.clients-cta-text-2 {
		padding-left: .5rem;
		padding-right: .5rem;
	}	
	
	

	.clients-cta-button-2 {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
  /* Fix any remaining overflow issues */
  section {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  .section-header {
    padding: 0 0.75rem !important;
  }
  
  /* Fix buttons */
  .btn {
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
  }
  
  /* Fix modal on mobile */
  .modal.active {
    padding: 0.5rem !important;
  }
  
  .modal-content {
    max-width: 100% !important;
    margin: 0 !important;
  }
  
  .modal-body {
    padding: 1rem !important;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* Apply animations on scroll */
.animate-on-scroll {
  animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus visible styles */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }
  
  .service-card,
  .testimonial-card {
    border-width: 3px;
  }
}

/* Print styles */
@media print {
  .header,
  .announcement-bar,
  .sticky-cta,
  .chat-button,
  .nav-overlay {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: none;
  }
  
  .container {
    max-width: 100%;
  }

/* ============================================
   MODAL STYLES
   ============================================ */

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex !important;
  align-items: center;
  justify-content: center;
	top: 0px;
	position: relative;
	max-height: 100%;
	max-width: 100%;
  padding: 1rem;
	background-color: rgba(255, 255, 255, 0.9);	
}

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

.modal-content {
  background-color: rgba(0, 0, 0, 0.9;
  border-radius: var(--radius-xl);
  max-width: 100%;
  max-height: 100%;
	
		position: relative;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  animation: slideUp 0.3s ease;
  display: flex !important;
  flex-direction: column;
}

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

.modal-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.modal-body h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.modal-body ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--gray-200);
}
	
.modal-body li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.modal-body strong {
  color: var(--gray-700);
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal.active {
    padding: 1rem;
  }
  
  .modal-content {
    max-height: 100vh;
  }
  
  .modal-header {
    padding: 1.5rem;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
}


/* Logo Carousel Section */
.logo-carousel-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  overflow-x: hidden;
  position: relative;
	width: 100%
max-width: 100%;
}

.logo-carousel-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.logo-carousel {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
  display: flex !important;
  flex-direction: row !important;
  gap: 3rem;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  width: max-content;
  will-change: transform;
}

.scroll-right .logo-track {
  animation-name: scrollRight;
  animation-duration: 20s;
}

.scroll-left .logo-track {
  animation-name: scrollLeft;
  animation-duration: 20s;
}

@keyframes scrollRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / 2));
  }
}

@keyframes scrollLeft {
  from {
    transform: translateX(calc(-100% / 2));
  }
  to {
    transform: translateX(0);
  }
}

.logo-item {
  flex-shrink: 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 220px;
  height: 220px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.logo-item img {
  max-width: 220px;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: all 0.3s ease;
  display: block;
}

.logo-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Pause animation on hover */
.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-carousel-section {
    padding: 2rem 0;
  }
  
  .logo-carousel-container {
    gap: 1rem;
  }
  
  .logo-track {
    gap: 2rem;
  }
  
  .logo-item {
    min-width: 140px;
    height: 80px;
    padding: 0.75rem 1.5rem;
  }
  
  .logo-item img {
    max-width: 110px;
    max-height: 55px;
  }
  
  .scroll-right .logo-track {
    animation-duration: 20s !important;
  }
  
  .scroll-left .logo-track {
    animation-duration: 20s !important;
  }
	
.client-logos-section {
  padding: 5rem 0;
  background: white;
	margin-bottom: 4rem;
	margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.client-logos-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  flex-wrap: wrap;
  margin: 0 auto;
}

.client-item {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.client-item:hover {
  opacity: 1;
  transform: scale(1.5);
}

.client-item img {
  max-width: 160px;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.client-item:hover img {
  filter: grayscale(0%);
}
	
	
}

/* Client Logos Section */
.client-logos-section {
  padding: 5rem 0;
  background: white;
	margin-bottom: 4rem;
	margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.client-logos-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  flex-wrap: wrap;
  margin: 0 auto;
}

.client-item {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.client-item:hover {
  opacity: 1;
  transform: scale(1.5);
}

.client-item img {
  max-width: 160px;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.client-item:hover img {
  filter: grayscale(0%);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .client-logos-wrapper {
    gap: 3rem;
  }
  
  .client-item img {
    max-width: 140px;
    max-height: 140px;
  }
}

@media (max-width: 768px) {
  .client-logos-section {
    padding: 3rem 0;
  }
  
  .client-logos-wrapper {
    gap: 2rem;
  }
  
  .client-item img {
    max-width: 120px;
    max-height: 120px;
  }
}

@media (max-width: 480px) {
  .client-logos-wrapper {
    gap: 1.5rem;
  }
  
  .client-item img {
    max-width: 100px;
    max-height: 100px;
  }
}
/* COMPLETE FIX - Remove all spacing and make full width */

/* Remove white space above content */
.site-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.ast-container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Make content full width */
.site-content,
.ast-container,
.entry-content {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Remove any default WordPress/Astra spacing */
body {
    margin: 0 !important;
    padding: 0 !important;
}

.site {
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure sections stretch full width */
section {
    width: 100% !important;
    max-width: 100% !important;
}

/* Remove padding from main content area */
#primary {
    padding: 0 !important;
    margin: 0 !important;
}

#content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Fix for Astra theme specifically */
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post {
    padding: 0 !important;
    margin: 0 !important;
}

.ast-separate-container #primary {
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide header and remove top white space */
.site-header {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#wpadminbar {
    display: none !important;
}

html {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.admin-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.ast-header-break-point .site-header {
    display: none !important;
}

/* Ensure content starts at very top */
.site {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove any spacing from main wrapper */
#page {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Force first element to start at top */
.site-content > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove spacing from Custom HTML block */
.wp-block-html {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Astra specific header removal */
.ast-desktop .main-header-bar-wrap,
.ast-mobile-header-wrap {
    display: none !important;
}

.ast-header-custom-item {
    display: none !important;
}
	
	/* Force article to start at top - CRITICAL FIX */
article {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.ast-article-single {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.entry-header {
    display: none !important;
}

.ast-single-post .entry-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove breadcrumbs if present */
.ast-breadcrumbs-wrapper {
    display: none !important;
}

/* Force page to start at absolute top */
body > * {
    margin-top: 0 !important;
}

#page > * {
    margin-top: 0 !important;
}
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem !important;
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

.service-card {
  width: 100% !important;
  height: 100% !important;
	}
	
.calendly-inline-widget {
	display: flex;
	align-content: center;
	margin: 0;
	}
	
	
	
	/* ============================================
   FIX #14: Modal Content - Missing First Lines
   ============================================
   Problem: Modals open with scroll position partway down,
            hiding the first several lines of content
   Solution: Force modal body to scroll to top when opened
   ============================================ */

/* Ensure modal body starts at the top */
.modal-body {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth !important;
  /* Force scroll position to top */
  scroll-padding-top: 0 !important;
}

/* Reset scroll position when modal becomes active */
.modal.active .modal-body {
  /* This will be handled by JavaScript, but ensure CSS doesn't interfere */
  position: relative !important;
}

/* Ensure modal content wrapper doesn't have negative margins */
.modal-content {
  margin-top: 0 !important;
}

/* Ensure modal header doesn't overlap content */
.modal-header {
  position: relative !important;
  z-index: 1 !important;
}

/* Ensure first element in modal body has no negative margin */
.modal-body > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Fix for any hidden overflow that might cause issues */
.modal.active {
  overflow-y: auto !important;
}

.modal.active .modal-content {
  overflow: visible !important;
}
	
	
	
	
	
	
	
	
	
	
	
	
	/* ============================================
     RESPONSIVENESS FIXES - ADDED
     ============================================ */
  
  /* Fix: Hero image responsiveness at 768px */
  @media (max-width: 768px) {
    .hero-image {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
   }

    
    /* Fix: Services grid mobile layout */
    .services-grid {
      margin-left: 0 !important;
      margin-right: 0 !important;
      padding: 0 1rem !important;
    }
    
    .service-card {
      min-width: 0 !important;
      width: 100% !important;
    }
    
    /* Fix: Reduce large paddings on mobile */
    .hero-section {
      padding: 4rem 0 !important;
    }
    
    .hero-content {
      margin-top: 2rem !important;
    }
    
    .services-section {
      padding: 3rem 0 !important;
    }
    
    .stats-section {
      padding: 3rem 0 !important;
    }
    
    .about-section {
      padding: 3rem 0 !important;
    }
    
    .about-content {
      margin-left: 0 !important;
      margin-right: 0 !important;
      margin-bottom: 3rem !important;
    }
    
    .cta-section {
      padding: 3rem 0 !important;
    }
    
    .cta-benefits {
      max-width: 100% !important;
    }
    
    .contact-section {
      padding: 3rem 0 !important;
    }
    
    /* Fix: Calendly widget on mobile */
    .calendly-inline-widget {
      margin: 0 !important;
      width: 100% !important;
    }
  }
  
  /* ============================================
     NEW BREAKPOINT: 640px (Large Mobile / Small Tablet)
     ============================================ */
  @media (max-width: 640px) {
    /* Fix services grid */
    .services-grid {
      margin-left: 0 !important;
      margin-right: 0 !important;
      padding: 0 1rem !important;
    }
		
    
    /* Fix service cards */
    .service-card {
      min-width: 0 !important;
      width: 100% !important;
    }
    
		  .testimonials-section {
    padding: 3rem 0 !important;
  }
  
  .testimonials-grid {
    padding: 0 0.75rem !important;
    gap: 1rem !important;
  }
  
  .testimonial-card {
    padding: 1.5rem 1rem !important;
		}
		
    /* Fix hero image */
    .hero-image {
      width: 100% !important;
      max-width: 100% !important;
    }
    

    /* Reduce paddings */
    .hero-section {
      padding: 4rem 0 !important;
    }
    .services-section {
      padding: 3rem 0 !important;
    }
    .stats-section {
      padding: 3rem 0 !important;
    }
    .about-section {
      padding: 3rem 0 !important;
    }
    .about-content {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
    .cta-section {
      padding: 3rem 0 !important;
    }
    .contact-section {
      padding: 3rem 0 !important;
    }
    
    /* Fix calendly widget */
    .calendly-inline-widget {
      margin: 0 !important;
      width: 100% !important;
    }
    
    /* Fix CTA benefits */
    .cta-benefits {
      max-width: 100% !important;
    }
		  /* Fix footer */
  .footer {
    padding: 2rem 0 !important;
  }
  
  .footer-content {
    padding: 0 0.75rem !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}
  
  /* Fix: Logo carousel sizing at 480px */
  @media (max-width: 480px) {
    .logo-item {
      width: 180px !important;
      height: 180px !important;
    }
    .logo-item img {
      max-width: 180px !important;
      max-height: 180px !important;
    }
  
	
	.logo-text {
		display: none;
	}
	}
  
  /* Fix: Dropdown menu on mobile at 360px */
  @media (max-width: 360px) {
    .nav-menu .sub-menu {
      min-width: 0 !important;
      max-width: 90vw !important;
    }
  }