/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-gradient: linear-gradient(135deg, #6A5ACD 0%, #8A2BE2 50%, #663399 100%);
    --primary-color: #6A5ACD;
    --primary-dark: #483D8B;
    --primary-light: #9370DB;
    
    /* Accent Colors */
    --accent-gradient: linear-gradient(135deg, #3CB371 0%, #2E8B57 50%, #228B22 100%);
    --accent-color: #3CB371;
    --accent-dark: #2E8B57;
    --accent-light: #90EE90;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #212529;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 15px;
    
    /* Shadows */
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6A5ACD 0%, #8A2BE2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
    text-align: center;
    color: white;
}

.vfa-logo-loader {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    animation: logoFloat 2s ease-in-out infinite;
}

.vfa-text {
    color: var(--white);
}

.jorge-text {
    color: var(--accent-color);
    margin-left: 0.5rem;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-vfa {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-jorge {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.3rem;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--dark-gray) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(106, 90, 205, 0.1);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(106, 90, 205, 0.15);
}

.nav-cta {
    background: var(--primary-gradient) !important;
    color: white !important;
    border: none;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 1rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-light);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white !important;
}


/* ===== HERO SECTION RESPONSIVE ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #6A5ACD 0%, #8A2BE2 100%);
    padding: 2rem 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.9) 0%, rgba(138, 43, 226, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgeGlow 3s ease-in-out infinite;
    margin-bottom: 1.5rem;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: titleSlideIn 1s ease-out;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShine 3s ease-in-out infinite;
}

@keyframes gradientShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.8;
    opacity: 0.95;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.3s both;
    margin-bottom: 2rem;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    min-width: 80px;
    flex: 1;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out 1s both;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-label {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    opacity: 0.9;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-actions .btn {
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.hero-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-actions .btn:hover::before {
    left: 100%;
}

.hero-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-visual {
    position: relative;
    z-index: 10;
    animation: fadeInRight 1s ease-out 0.5s both;
    text-align: center;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    position: relative;
    max-width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-medium);
    animation: imageFloat 4s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-image:hover {
    transform: scale(1.05) translateY(-10px);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--dark-gray);
    font-weight: 600;
    animation: cardFloat 3s ease-in-out infinite;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    white-space: nowrap;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-card i {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--primary-color);
}

.card-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: 5%;
    animation-delay: 2s;
}/* ===== ABOUT SECTION ===== */


.about-section {
    background: var(--white);
}

.about-section .img-fluid {
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.check-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.check-list li i {
    color: var(--accent-color);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--light-gray);
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.service-features li {
    text-align: left;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.service-features li i {
    color: var(--accent-color);
}

/* ===== COMPETENCIES SECTION ===== */
.competencies-section {
    background: var(--white);
}

.competency-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    border: 1px solid var(--light-gray);
}

.competency-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.competency-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.competency-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.competency-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark-gray);
}

.competency-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

/* ===== QUALITY POLICY SECTION ===== */
.quality-policy-section {
    background: var(--light-gray);
}

.policy-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--white);
}

.contact-form-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.contact-info-item {
    margin-top: 2rem;
}

.contact-info-item i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-item h5 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--medium-gray);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
}

.footer a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all var(--transition-fast);
}

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

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.social-links a:last-child {
    margin-right: 0;
}

.footer .form-control {
    border-radius: 50px 0 0 50px;
    border: none;
}

.footer .btn-primary {
    border-radius: 0 50px 50px 0;
    background: var(--primary-gradient);
    border: none;
}

.footer .btn-primary:hover {
    background: var(--primary-color);
}


/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .floating-cards {
        display: none;
    }
    
    .partners-carousel {
        gap: 1.5rem;
    }
    
    .section-padding {
        padding: clamp(40px, 8vw, 80px) 0;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: var(--shadow-light);
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .partners-carousel {
        gap: 1rem;
        flex-direction: column;
    }
    
    .card-1, .card-2, .card-3 {
        display: none;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        min-height: 90vh;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 60px;
    }
    
    .partners-carousel {
        padding: 1rem 0;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
}

@media (max-width: 400px) {
    .hero-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-actions .btn {
        padding: 0.8rem 1.2rem;
        min-width: 120px;
        font-size: 0.9rem;
    }
    
    .partner-item {
        min-width: 120px;
        max-width: 160px;
        height: 60px;
        padding: 0.8rem;
    }
    
    .partner-logo {
        max-height: 35px;
    }
}



/* ===== UTILITIES ===== */
.section-subtitle {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1.3;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
}

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

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== ANIMATIONS ===== */
.aos-init[data-aos][data-aos].aos-animate {
    transform: translate(0) scale(1) !important;
    opacity: 1 !important;
}

[data-aos="fade-up"] {
    transform: translateY(20px);
    opacity: 0;
}

[data-aos="fade-left"] {
    transform: translateX(20px);
    opacity: 0;
}

[data-aos="fade-right"] {
    transform: translateX(-20px);
    opacity: 0;
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
    opacity: 0;
}




/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: var(--light-gray);
}

.partners-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
    animation: partnerSlide 20s linear infinite;
}

.partner-item {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    min-width: 200px;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.partner-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all var(--transition-fast);
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes partnerSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

/* ===== HERO SECTION ENHANCED ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #6A5ACD 0%, #8A2BE2 100%);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.9) 0%, rgba(138, 43, 226, 0.8) 100%);
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: titleSlideIn 1s ease-out;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShine 3s ease-in-out infinite;
}

@keyframes gradientShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    min-width: 100px;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out 1s both;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.hero-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-actions .btn:hover::before {
    left: 100%;
}

.hero-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-visual {
    position: relative;
    z-index: 10;
    animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-medium);
    animation: imageFloat 4s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-image:hover {
    transform: scale(1.05) translateY(-10px);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--dark-gray);
    font-weight: 600;
    animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

/* ===== RESPONSIVE DESIGN FOR PARTNERS ===== */
@media (max-width: 992px) {
    .partners-carousel {
        gap: 1.5rem;
    }
    
    .partner-item {
        min-width: 180px;
        max-width: 220px;
        height: 100px;
    }
    
    .partner-logo {
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .partners-carousel {
        gap: 1rem;
        flex-direction: column;
        animation: none;
    }
    
    .partner-item {
        min-width: 160px;
        max-width: 200px;
        height: 80px;
    }
    
    .partner-logo {
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .partner-item {
        min-width: 140px;
        max-width: 180px;
        height: 70px;
        padding: 1rem;
    }
    
    .partner-logo {
        max-height: 40px;
    }
}

