/* Complete CSS for Qualified TnC Website - Server Compatible */

/* ===== CORE RESET & BASE ===== */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html { 
    font-size: 16px; 
    scroll-behavior: smooth;
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
  line-height: 1.6; 
    color: #333; 
    background: #fff;
    overflow-x: hidden;
}

/* ===== LAYOUT SYSTEM ===== */
.container-custom { 
    max-width: 1200px; 
  margin: 0 auto; 
    padding: 0 20px; 
}

.section-padding { 
    padding: 80px 0; 
}

.page-header { 
    padding-top: 80px; 
}

/* ===== GRID SYSTEM ===== */
.grid { 
    display: grid; 
    gap: 2rem; 
}

.grid-cols-1 { 
    grid-template-columns: 1fr; 
}

.grid-cols-2 { 
    grid-template-columns: repeat(2, 1fr); 
}

.grid-cols-3 { 
    grid-template-columns: repeat(3, 1fr); 
}

.grid-cols-4 { 
    grid-template-columns: repeat(4, 1fr); 
}

.grid-cols-6 { 
    grid-template-columns: repeat(6, 1fr); 
}

/* ===== FLEXBOX ===== */
.flex { 
    display: flex; 
}

.items-center { 
    align-items: center; 
}

.justify-between { 
    justify-content: space-between; 
}

.justify-center { 
    justify-content: center; 
}

.inline-flex { 
    display: inline-flex; 
}

/* ===== DISPLAY ===== */
.hidden { 
    display: none !important; 
}

.block { 
    display: block; 
}

.inline-block { 
    display: inline-block; 
}

/* ===== SPACING SYSTEM ===== */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.py-2 { padding: 0.5rem 0; }
.py-4 { padding: 1rem 0; }
.py-8 { padding: 2rem 0; }
.py-16 { padding: 4rem 0; }
.px-2 { padding: 0 0.5rem; }
.px-4 { padding: 0 1rem; }
.px-6 { padding: 0 1.5rem; }
.px-8 { padding: 0 2rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-20 { padding-top: 5rem; }

/* ===== GAPS ===== */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* ===== SPACING UTILITIES ===== */
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ===== SIZING ===== */
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-12 { height: 3rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.w-auto { width: auto; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }

/* ===== TYPOGRAPHY ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-4xl { font-size: 2.25rem; line-height: 1.2; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* ===== COLORS ===== */
.text-white { color: #ffffff; }
.text-secondary { color: #3d2f9d; }
.text-primary { color: #42d3d8; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-100 { color: #f3f4f6; }

/* ===== BACKGROUNDS ===== */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-primary { background-color: #42d3d8; }
.bg-secondary { background-color: #3d2f9d; }
.bg-black { background-color: #000000; }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }

/* ===== POSITIONING ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ===== OVERFLOW & MIN HEIGHT ===== */
.overflow-hidden { overflow: hidden; }
.min-h-screen { min-height: 100vh; }
.min-h-\[60vh\] { min-height: 60vh; }

/* ===== MAX WIDTH ===== */
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== OBJECT FIT ===== */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* ===== BORDER RADIUS ===== */
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ===== SHADOWS ===== */
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); }

/* ===== OPACITY ===== */
.opacity-30 { opacity: 0.3; }
.opacity-70 { opacity: 0.7; }

/* ===== BORDERS ===== */
.border-white { border-color: white; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-gray-200 { border-color: #e5e7eb; }

/* ===== TRANSITIONS ===== */
.transition-shadow { transition: box-shadow 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease; }
.duration-300 { transition-duration: 0.3s; }
.transform { transform: translateZ(0); }

/* ===== HOVER EFFECTS ===== */
.hover\:bg-white:hover { background-color: white; }
.hover\:text-secondary:hover { color: #3d2f9d; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); }

/* ===== HERO SECTION ===== */
.hero-bg { 
    background: linear-gradient(135deg, #3d2f9d 0%, #845cfc 100%); 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    position: relative; 
}

/* ===== CARDS ===== */
.card { 
    background: white; 
    border-radius: 12px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    padding: 2rem; 
    margin-bottom: 2rem; 
    transition: all 0.3s ease;
}

.card:hover { 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); 
    transform: translateY(-0.5rem); 
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: #3d2f9d; 
    color: white; 
    padding: 12px 24px; 
    border-radius: 8px; 
    text-decoration: none; 
    display: inline-block; 
  font-weight: 600;
    transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
    background: #2d1f8d; 
    transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline {
    border: 2px solid #3d2f9d; 
    color: #3d2f9d; 
    padding: 10px 22px; 
    border-radius: 8px; 
    text-decoration: none; 
    display: inline-block; 
  font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
    background: #3d2f9d; 
    color: white;
    text-decoration: none;
}

/* ===== NAVIGATION ===== */
.navbar { 
    background-color: transparent; 
    transition: all 0.3s ease; 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 50; 
    width: 100%;
}

.navbar.bg-white\/95 { 
    background-color: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px); 
}

.navbar:not(.bg-white\/95) .nav-link { color: #ffffff !important; }
.navbar:not(.bg-white\/95) .contact-link { color: #ffffff !important; }
.navbar:not(.bg-white\/95) .social-link { color: #ffffff !important; }
.navbar.bg-white\/95 .nav-link { color: #374151 !important; }
.navbar.bg-white\/95 .contact-link { color: #374151 !important; }
.navbar.bg-white\/95 .social-link { color: #374151 !important; }

.nav-link { 
    text-decoration: none; 
    transition: color 0.3s ease; 
}

.nav-link:hover { text-decoration: none; }

/* ===== MOBILE MENU ===== */
.mobile-menu { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: white; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    padding: 1rem; 
    z-index: 40; 
}

.mobile-menu.active { display: block; }

.mobile-menu-toggle { 
    display: block; 
    background: none; 
    border: none; 
    font-size: 1.5rem; 
    cursor: pointer; 
    color: white; 
}

.navbar.bg-white\/95 .mobile-menu-toggle { color: #374151; }

/* ===== LOGO SLIDER ===== */
.logo-slider-container { 
    overflow: hidden; 
    position: relative; 
    width: 100vw; 
    margin-left: calc(-50vw + 50%); 
    margin-right: calc(-50vw + 50%); 
    min-height: 120px; 
    padding: 20px 0; 
}

.logo-slider { 
    display: flex; 
    animation: slide 15s linear infinite; 
    width: calc(200% + 2rem); 
}

.logo-slide { 
    flex: 0 0 auto; 
  display: flex;
  align-items: center;
    justify-content: center; 
    margin-right: 2rem; 
    height: 120px; 
    min-width: 200px; 
}

.client-logo-img { 
    height: 80px; 
    width: auto; 
    max-width: 180px; 
    object-fit: contain; 
    filter: grayscale(100%); 
    transition: all 0.3s ease; 
    opacity: 0.7; 
}

.logo-slide:hover .client-logo-img { 
    filter: grayscale(0%); 
    opacity: 1; 
    transform: scale(1.1); 
}

/* ===== GRADIENTS ===== */
.bg-gradient-to-r { 
    background-image: linear-gradient(to right, var(--tw-gradient-stops)); 
}

.from-secondary\/70 { --tw-gradient-from: rgba(61, 47, 157, 0.7); }
.to-primary\/50 { --tw-gradient-to: rgba(66, 211, 216, 0.5); }
.from-secondary\/20 { --tw-gradient-from: rgba(61, 47, 157, 0.2); }
.to-primary\/15 { --tw-gradient-to: rgba(66, 211, 216, 0.15); }
.from-secondary\/50 { --tw-gradient-from: rgba(61, 47, 157, 0.5); }
.to-primary\/40 { --tw-gradient-to: rgba(66, 211, 216, 0.4); }
.from-secondary\/5 { --tw-gradient-from: rgba(61, 47, 157, 0.05); }
.to-primary\/4 { --tw-gradient-to: rgba(66, 211, 216, 0.04); }
.from-secondary\/10 { --tw-gradient-from: rgba(61, 47, 157, 0.1); }
.to-primary\/8 { --tw-gradient-to: rgba(66, 211, 216, 0.08); }
.from-secondary\/2 { --tw-gradient-from: rgba(61, 47, 157, 0.02); }
.to-primary\/2 { --tw-gradient-to: rgba(66, 211, 216, 0.02); }

/* ===== ANIMATIONS ===== */
.animate-fadeInUp { animation: fadeInUp 0.6s ease-out; }
.animate-on-scroll { opacity: 1; transform: translateY(0); }

/* ===== KEYFRAMES ===== */
@keyframes slide { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 640px) { 
    .sm\:flex-row { flex-direction: row; } 
}

@media (min-width: 768px) { 
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); } 
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); } 
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); } 
    .md\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); } 
}

@media (min-width: 1024px) { 
    .lg\:flex { display: flex !important; } 
    .lg\:hidden { display: none !important; } 
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); } 
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); } 
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); } 
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); } 
}

@media (min-width: 1280px) { 
    .xl\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); } 
}

/* ===== LINKS ===== */
a { text-decoration: none; }
a:hover { text-decoration: none; }

/* ===== FALLBACKS FOR BROWSER COMPATIBILITY ===== */
.hero-bg {
    background: #3d2f9d;
    background: -webkit-linear-gradient(135deg, #3d2f9d 0%, #845cfc 100%);
    background: -moz-linear-gradient(135deg, #3d2f9d 0%, #845cfc 100%);
    background: -o-linear-gradient(135deg, #3d2f9d 0%, #845cfc 100%);
    background: linear-gradient(135deg, #3d2f9d 0%, #845cfc 100%);
}

/* ===== CRITICAL FIXES ===== */
.navbar { 
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.transform { 
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

/* ===== ADDITIONAL UTILITIES ===== */
.text-accent { color: #845cfc; }
.bg-accent { background-color: #845cfc; }
.bg-accent\/10 { background-color: rgba(132, 92, 250, 0.1); }
.bg-primary\/10 { 
    background-color: rgba(66, 211, 216, 0.1); 
    padding: 40px 0;
    border-radius: 12px;
}
.bg-secondary\/10 { background-color: rgba(61, 47, 157, 0.1); }

/* ===== FORM STYLES ===== */
input, textarea, select {
  width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
    border-color: #3d2f9d;
}

/* ===== UTILITY CLASSES ===== */
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-normal { font-weight: 400; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.italic { font-style: italic; }
.underline { text-decoration: underline; }
.line-through { text-decoration: line-through; }
.no-underline { text-decoration: none; }

/* ===== SPACING UTILITIES ===== */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-6 { margin: 1.5rem; }
.m-8 { margin: 2rem; }
.m-12 { margin: 3rem; }
.m-16 { margin: 4rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }

/* ===== FLEX UTILITIES ===== */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }

/* ===== ALIGNMENT ===== */
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

/* ===== POSITIONING UTILITIES ===== */
.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

/* ===== Z-INDEX UTILITIES ===== */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ===== OVERFLOW UTILITIES ===== */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }

/* ===== DISPLAY UTILITIES ===== */
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.inline-grid { display: inline-grid; }

/* ===== VISIBILITY ===== */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* ===== OPACITY ===== */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* ===== CURSOR ===== */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* ===== SELECT ===== */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }
.select-auto { user-select: auto; }

/* ===== POINTER EVENTS ===== */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* ===== RESIZE ===== */
.resize-none { resize: none; }
.resize-y { resize: vertical; }
.resize-x { resize: horizontal; }
.resize { resize: both; }

/* ===== SCROLL BEHAVIOR ===== */
.scroll-auto { scroll-behavior: auto; }
.scroll-smooth { scroll-behavior: smooth; }

/* ===== SNAP TYPE ===== */
.snap-none { scroll-snap-type: none; }
.snap-x { scroll-snap-type: x mandatory; }
.snap-y { scroll-snap-type: y mandatory; }
.snap-both { scroll-snap-type: both mandatory; }

/* ===== SNAP ALIGN ===== */
.snap-start { scroll-snap-align: start; }
.snap-end { scroll-snap-align: end; }
.snap-center { scroll-snap-align: center; }
.snap-align-none { scroll-snap-align: none; }

/* ===== SNAP STOP ===== */
.snap-normal { scroll-snap-stop: normal; }
.snap-always { scroll-snap-stop: always; }

/* ===== TOUCH ACTION ===== */
.touch-auto { touch-action: auto; }
.touch-none { touch-action: none; }
.touch-pan-x { touch-action: pan-x; }
.touch-pan-left { touch-action: pan-left; }
.touch-pan-right { touch-action: pan-right; }
.touch-pan-y { touch-action: pan-y; }
.touch-pan-up { touch-action: pan-up; }
.touch-pan-down { touch-action: pan-down; }
.touch-pinch-zoom { touch-action: pinch-zoom; }
.touch-manipulation { touch-action: manipulation; }

/* ===== USER SELECT ===== */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }
.select-auto { user-select: auto; }

/* ===== WILL CHANGE ===== */
.will-change-auto { will-change: auto; }
.will-change-scroll { will-change: scroll-position; }
.will-change-contents { will-change: contents; }
.will-change-transform { will-change: transform; }

/* ===== CONTAIN ===== */
.contain-none { contain: none; }
.contain-size { contain: size; }
.contain-layout { contain: layout; }
.contain-style { contain: style; }
.contain-paint { contain: paint; }
.contain-strict { contain: strict; }
.contain-content { contain: content; }

/* ===== ISOLATION ===== */
.isolate { isolation: isolate; }
.isolation-auto { isolation: auto; }

/* ===== MIX BLEND MODE ===== */
.mix-blend-normal { mix-blend-mode: normal; }
.mix-blend-multiply { mix-blend-mode: multiply; }
.mix-blend-screen { mix-blend-mode: screen; }
.mix-blend-overlay { mix-blend-mode: overlay; }
.mix-blend-darken { mix-blend-mode: darken; }
.mix-blend-lighten { mix-blend-mode: lighten; }
.mix-blend-color-dodge { mix-blend-mode: color-dodge; }
.mix-blend-color-burn { mix-blend-mode: color-burn; }
.mix-blend-hard-light { mix-blend-mode: hard-light; }
.mix-blend-soft-light { mix-blend-mode: soft-light; }
.mix-blend-difference { mix-blend-mode: difference; }
.mix-blend-exclusion { mix-blend-mode: exclusion; }
.mix-blend-hue { mix-blend-mode: hue; }
.mix-blend-saturation { mix-blend-mode: saturation; }
.mix-blend-color { mix-blend-mode: color; }
.mix-blend-luminosity { mix-blend-mode: luminosity; }

/* ===== BACKGROUND BLEND MODE ===== */
.bg-blend-normal { background-blend-mode: normal; }
.bg-blend-multiply { background-blend-mode: multiply; }
.bg-blend-screen { background-blend-mode: screen; }
.bg-blend-overlay { background-blend-mode: overlay; }
.bg-blend-darken { background-blend-mode: darken; }
.bg-blend-lighten { background-blend-mode: lighten; }
.bg-blend-color-dodge { background-blend-mode: color-dodge; }
.bg-blend-color-burn { background-blend-mode: color-burn; }
.bg-blend-hard-light { background-blend-mode: hard-light; }
.bg-blend-soft-light { background-blend-mode: soft-light; }
.bg-blend-difference { background-blend-mode: difference; }
.bg-blend-exclusion { background-blend-mode: exclusion; }
.bg-blend-hue { background-blend-mode: hue; }
.bg-blend-saturation { background-blend-mode: saturation; }
.bg-blend-color { background-blend-mode: color; }
.bg-blend-luminosity { background-blend-mode: luminosity; }

/* ===== BACKDROP BLUR ===== */
.backdrop-blur-none { backdrop-filter: blur(0); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur { backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-2xl { backdrop-filter: blur(40px); }
.backdrop-blur-3xl { backdrop-filter: blur(64px); }

/* ===== BACKDROP BRIGHTNESS ===== */
.backdrop-brightness-0 { backdrop-filter: brightness(0); }
.backdrop-brightness-50 { backdrop-filter: brightness(0.5); }
.backdrop-brightness-75 { backdrop-filter: brightness(0.75); }
.backdrop-brightness-90 { backdrop-filter: brightness(0.9); }
.backdrop-brightness-95 { backdrop-filter: brightness(0.95); }
.backdrop-brightness-100 { backdrop-filter: brightness(1); }
.backdrop-brightness-105 { backdrop-filter: brightness(1.05); }
.backdrop-brightness-110 { backdrop-filter: brightness(1.1); }
.backdrop-brightness-125 { backdrop-filter: brightness(1.25); }
.backdrop-brightness-150 { backdrop-filter: brightness(1.5); }
.backdrop-brightness-200 { backdrop-filter: brightness(2); }

/* ===== BACKDROP CONTRAST ===== */
.backdrop-contrast-0 { backdrop-filter: contrast(0); }
.backdrop-contrast-50 { backdrop-filter: contrast(0.5); }
.backdrop-contrast-75 { backdrop-filter: contrast(0.75); }
.backdrop-contrast-100 { backdrop-filter: contrast(1); }
.backdrop-contrast-125 { backdrop-filter: contrast(1.25); }
.backdrop-contrast-150 { backdrop-filter: contrast(1.5); }
.backdrop-contrast-200 { backdrop-filter: contrast(2); }

/* ===== BACKDROP GRAYSCALE ===== */
.backdrop-grayscale-0 { backdrop-filter: grayscale(0); }
.backdrop-grayscale { backdrop-filter: grayscale(100%); }

/* ===== BACKDROP HUE ROTATE ===== */
.backdrop-hue-rotate-0 { backdrop-filter: hue-rotate(0deg); }
.backdrop-hue-rotate-15 { backdrop-filter: hue-rotate(15deg); }
.backdrop-hue-rotate-30 { backdrop-filter: hue-rotate(30deg); }
.backdrop-hue-rotate-60 { backdrop-filter: hue-rotate(60deg); }
.backdrop-hue-rotate-90 { backdrop-filter: hue-rotate(90deg); }
.backdrop-hue-rotate-180 { backdrop-filter: hue-rotate(180deg); }

/* ===== BACKDROP INVERT ===== */
.backdrop-invert-0 { backdrop-filter: invert(0); }
.backdrop-invert { backdrop-filter: invert(100%); }

/* ===== BACKDROP OPACITY ===== */
.backdrop-opacity-0 { backdrop-filter: opacity(0); }
.backdrop-opacity-5 { backdrop-filter: opacity(0.05); }
.backdrop-opacity-10 { backdrop-filter: opacity(0.1); }
.backdrop-opacity-20 { backdrop-filter: opacity(0.2); }
.backdrop-opacity-25 { backdrop-filter: opacity(0.25); }
.backdrop-opacity-30 { backdrop-filter: opacity(0.3); }
.backdrop-opacity-40 { backdrop-filter: opacity(0.4); }
.backdrop-opacity-50 { backdrop-filter: opacity(0.5); }
.backdrop-opacity-60 { backdrop-filter: opacity(0.6); }
.backdrop-opacity-70 { backdrop-filter: opacity(0.7); }
.backdrop-opacity-75 { backdrop-filter: opacity(0.75); }
.backdrop-opacity-80 { backdrop-filter: opacity(0.8); }
.backdrop-opacity-90 { backdrop-filter: opacity(0.9); }
.backdrop-opacity-95 { backdrop-filter: opacity(0.95); }
.backdrop-opacity-100 { backdrop-filter: opacity(1); }

/* ===== BACKDROP SATURATE ===== */
.backdrop-saturate-0 { backdrop-filter: saturate(0); }
.backdrop-saturate-50 { backdrop-filter: saturate(0.5); }
.backdrop-saturate-100 { backdrop-filter: saturate(1); }
.backdrop-saturate-150 { backdrop-filter: saturate(1.5); }
.backdrop-saturate-200 { backdrop-filter: saturate(2); }

/* ===== BACKDROP SEPIA ===== */
.backdrop-sepia-0 { backdrop-filter: sepia(0); }
.backdrop-sepia { backdrop-filter: sepia(100%); }

/* ===== BACKDROP FILTER ===== */
.backdrop-filter-none { backdrop-filter: none; }

/* ===== BACKDROP BLUR ===== */
.backdrop-blur-none { backdrop-filter: blur(0); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur { backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-2xl { backdrop-filter: blur(40px); }
.backdrop-blur-3xl { backdrop-filter: blur(64px); }

/* ===== BACKDROP BRIGHTNESS ===== */
.backdrop-brightness-0 { backdrop-filter: brightness(0); }
.backdrop-brightness-50 { backdrop-filter: brightness(0.5); }
.backdrop-brightness-75 { backdrop-filter: brightness(0.75); }
.backdrop-brightness-90 { backdrop-filter: brightness(0.9); }
.backdrop-brightness-95 { backdrop-filter: brightness(0.95); }
.backdrop-brightness-100 { backdrop-filter: brightness(1); }
.backdrop-brightness-105 { backdrop-filter: brightness(1.05); }
.backdrop-brightness-110 { backdrop-filter: brightness(1.1); }
.backdrop-brightness-125 { backdrop-filter: brightness(1.25); }
.backdrop-brightness-150 { backdrop-filter: brightness(1.5); }
.backdrop-brightness-200 { backdrop-filter: brightness(2); }

/* ===== BACKDROP CONTRAST ===== */
.backdrop-contrast-0 { backdrop-filter: contrast(0); }
.backdrop-contrast-50 { backdrop-filter: contrast(0.5); }
.backdrop-contrast-75 { backdrop-filter: contrast(0.75); }
.backdrop-contrast-100 { backdrop-filter: contrast(1); }
.backdrop-contrast-125 { backdrop-filter: contrast(1.25); }
.backdrop-contrast-150 { backdrop-filter: contrast(1.5); }
.backdrop-contrast-200 { backdrop-filter: contrast(2); }

/* ===== BACKDROP GRAYSCALE ===== */
.backdrop-grayscale-0 { backdrop-filter: grayscale(0); }
.backdrop-grayscale { backdrop-filter: grayscale(100%); }

/* ===== BACKDROP HUE ROTATE ===== */
.backdrop-hue-rotate-0 { backdrop-filter: hue-rotate(0deg); }
.backdrop-hue-rotate-15 { backdrop-filter: hue-rotate(15deg); }
.backdrop-hue-rotate-30 { backdrop-filter: hue-rotate(30deg); }
.backdrop-hue-rotate-60 { backdrop-filter: hue-rotate(60deg); }
.backdrop-hue-rotate-90 { backdrop-filter: hue-rotate(90deg); }
.backdrop-hue-rotate-180 { backdrop-filter: hue-rotate(180deg); }

/* ===== BACKDROP INVERT ===== */
.backdrop-invert-0 { backdrop-filter: invert(0); }
.backdrop-invert { backdrop-filter: invert(100%); }

/* ===== BACKDROP OPACITY ===== */
.backdrop-opacity-0 { backdrop-filter: opacity(0); }
.backdrop-opacity-5 { backdrop-filter: opacity(0.05); }
.backdrop-opacity-10 { backdrop-filter: opacity(0.1); }
.backdrop-opacity-20 { backdrop-filter: opacity(0.2); }
.backdrop-opacity-25 { backdrop-filter: opacity(0.25); }
.backdrop-opacity-30 { backdrop-filter: opacity(0.3); }
.backdrop-opacity-40 { backdrop-filter: opacity(0.4); }
.backdrop-opacity-50 { backdrop-filter: opacity(0.5); }
.backdrop-opacity-60 { backdrop-filter: opacity(0.6); }
.backdrop-opacity-70 { backdrop-filter: opacity(0.7); }
.backdrop-opacity-75 { backdrop-filter: opacity(0.75); }
.backdrop-opacity-80 { backdrop-filter: opacity(0.8); }
.backdrop-opacity-90 { backdrop-filter: opacity(0.9); }
.backdrop-opacity-95 { backdrop-filter: opacity(0.95); }
.backdrop-opacity-100 { backdrop-filter: opacity(1); }

/* ===== BACKDROP SATURATE ===== */
.backdrop-saturate-0 { backdrop-filter: saturate(0); }
.backdrop-saturate-50 { backdrop-filter: saturate(0.5); }
.backdrop-saturate-100 { backdrop-filter: saturate(1); }
.backdrop-saturate-150 { backdrop-filter: saturate(1.5); }
.backdrop-saturate-200 { backdrop-filter: saturate(2); }

/* ===== BACKDROP SEPIA ===== */
.backdrop-sepia-0 { backdrop-filter: sepia(0); }
.backdrop-sepia { backdrop-filter: sepia(100%); }

/* ===== BACKDROP FILTER ===== */
.backdrop-filter-none { backdrop-filter: none; }

/* ===== NAVIGATION STYLES ===== */
.navbar .nav-link,
.navbar a.nav-link {
    color: #42d3d8 !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar a.nav-link:hover {
    color: #845cfc !important;
    transform: translateY(-2px);
}

.mobile-nav .nav-link,
.mobile-nav a.nav-link {
    color: #42d3d8 !important;
  font-weight: 600;
}

.mobile-nav .nav-link:hover,
.mobile-nav a.nav-link:hover {
    color: #845cfc !important;
}

.contact-link,
a.contact-link {
    color: #42d3d8 !important;
    font-weight: 600;
}

.contact-link:hover,
a.contact-link:hover {
    color: #845cfc !important;
}

/* Force override any conflicting styles */
header .nav-link,
header a.nav-link {
    color: #42d3d8 !important;
}

header .nav-link:hover,
header a.nav-link:hover {
    color: #845cfc !important;
}

/* ===== MOBILE LOGO SPACING ===== */
@media (max-width: 768px) {
    .logo-slider-container {
        margin: 0 -15px !important;
        padding: 10px 0 !important;
    }
    
    .logo-slide {
        margin: 0 1px !important;
        padding: 0 1px !important;
    }
    
    .client-logo-img {
        max-width: 70px !important;
        max-height: 50px !important;
        margin: 0 1px !important;
    }
    
    .logo-slider {
        gap: 2px !important;
    }
}

@media (max-width: 480px) {
    .logo-slider-container {
        margin: 0 -20px !important;
    }
    
    .logo-slide {
        margin: 0 0.5px !important;
        padding: 0 0.5px !important;
    }
    
    .client-logo-img {
        max-width: 60px !important;
        max-height: 40px !important;
        margin: 0 0.5px !important;
    }
    
    .logo-slider {
        gap: 1px !important;
    }
}