:root {
--primary: #1173FF;
--primary-dark: #0d5fd8;
--primary-light: #3b8cff;
--accent: #FFAF15;
--accent-dark: #e69b00;
--accent-light: #ffc154;
--background: #DAE2EA;
--secondary: #1a1f36;
--gradient: linear-gradient(135deg, #1173FF 0%, #3b8cff 100%);
--gradient-accent: linear-gradient(135deg, #FFAF15 0%, #ffc154 100%);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', sans-serif;
color: #334155;
overflow-x: hidden;
background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Plus Jakarta Sans', sans-serif;
font-weight: 700;
color: var(--secondary);
}

.glass-effect {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.gradient-text-accent {
background: var(--gradient-accent);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.section-padding {
padding: 6rem 0;
}

.floating-animation {
animation: float 6s ease-in-out infinite;
}

@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}

.pulse-animation {
animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
0% { opacity: 0.7; }
50% { opacity: 1; }
100% { opacity: 0.7; }
}

.scroll-fade-in {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in.visible {
opacity: 1;
transform: translateY(0);
}

.hover-lift {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(17, 115, 255, 0.15);
}

.gradient-border {
position: relative;
border-radius: 12px;
}

.gradient-border::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: var(--gradient);
border-radius: 14px;
z-index: -1;
opacity: 0;
transition: opacity 0.3s ease;
}

.gradient-border:hover::before {
opacity: 1;
}

.service-card, .training-card {
background: white;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(17, 115, 255, 0.08);
transition: all 0.4s ease;
overflow: hidden;
position: relative;
border: 1px solid rgba(17, 115, 255, 0.1);
}

.service-card::after, .training-card::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: var(--gradient);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}

.service-card:hover::after, .training-card:hover::after {
transform: scaleX(1);
}

.accent-service-card {
background: white;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(255, 175, 21, 0.08);
transition: all 0.4s ease;
overflow: hidden;
position: relative;
border: 1px solid rgba(255, 175, 21, 0.1);
}

.accent-service-card::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: var(--gradient-accent);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}

.accent-service-card:hover::after {
transform: scaleX(1);
}

.testimonial-card {
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(17, 115, 255, 0.05);
position: relative;
overflow: hidden;
}

.testimonial-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 6px;
height: 100%;
background: var(--gradient);
}

.accent-testimonial-card {
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(255, 175, 21, 0.05);
position: relative;
overflow: hidden;
}

.accent-testimonial-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 6px;
height: 100%;
background: var(--gradient-accent);
}

.stats-counter {
font-size: 3.5rem;
font-weight: 800;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.accent-stats-counter {
font-size: 3.5rem;
font-weight: 800;
background: var(--gradient-accent);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.nav-link {
position: relative;
padding: 0.5rem 0;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--gradient);
transition: width 0.3s ease;
}

.nav-link:hover::after {
width: 100%;
}

.accent-nav-link::after {
background: var(--gradient-accent);
}

.mobile-menu {
transform: translateX(100%);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
transform: translateX(0);
}

.typewriter {
overflow: hidden;
border-right: 3px solid var(--primary);
white-space: nowrap;
animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
from { width: 0 }
to { width: 100% }
}

@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: var(--primary) }
}

.brand-logo {
display: flex;
align-items: center;
gap: 10px;
}

.logo-circle {
width: 40px;
height: 40px;
border-radius: 10px;
background: var(--gradient);
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}

.logo-circle::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--gradient-accent);
opacity: 0.7;
transform: translateX(-100%);
transition: transform 0.3s ease;
}

.brand-logo:hover .logo-circle::after {
transform: translateX(0);
}

.logo-circle i {
color: white;
font-size: 1.2rem;
z-index: 1;
}

.logo-text {
font-size: 1.8rem;
font-weight: 800;
font-family: 'Plus Jakarta Sans', sans-serif;
}

.logo-text-primary {
color: var(--primary);
}

.logo-text-accent {
color: var(--accent);
}

@media (max-width: 768px) {
.section-padding {
padding: 4rem 0;
}

.stats-counter, .accent-stats-counter {
font-size: 2.5rem;
}
}
/* Client Logos Styles */
.client-logo-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}

@media (min-width: 768px) {
.client-logo-grid {
grid-template-columns: repeat(4, 1fr);
}
}

@media (min-width: 1024px) {
.client-logo-grid {
grid-template-columns: repeat(6, 1fr);
}
}
.client-logo-item {
background: white;
border-radius: 12px;
padding: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
height: 120px;
border: 1px solid rgba(17, 115, 255, 0.1);
transition: all 0.3s ease;
}

.client-logo-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(17, 115, 255, 0.1);
border-color: var(--primary);
}
/* Testimonial Carousel */
.testimonial-slide {
opacity: 0;
transform: translateX(30px);
transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
opacity: 1;
transform: translateX(0);
}

/* Success Metrics */
.metric-card {
background: white;
border-radius: 16px;
padding: 2rem;
text-align: center;
border: 1px solid rgba(17, 115, 255, 0.1);
transition: transform 0.3s ease;
}

.metric-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(17, 115, 255, 0.1);
}

/* Industry Sectors */
.industry-card {
background: white;
border-radius: 12px;
padding: 1.5rem;
text-align: center;
border: 1px solid rgba(17, 115, 255, 0.1);
transition: all 0.3s ease;
}

.industry-card:hover {
background: var(--gradient);
color: white;
transform: translateY(-5px);
}

.industry-card:hover h4,
.industry-card:hover p {
color: white;
}
.-bottom-6 {
bottom: -5.5rem !important;
}