/* ========================================
   PROVATSOFT ANIMATIONS & MOTION SYSTEM
   ======================================== */

:root {
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-ease: 0.6s ease-in-out;
}

/* ========================================
   PAGE LOAD ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp var(--transition-smooth) ease-out forwards;
}

.fade-in {
    animation: fadeIn var(--transition-smooth) ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft var(--transition-smooth) ease-out forwards;
}

.slide-in-right {
    animation: slideInRight var(--transition-smooth) ease-out forwards;
}

/* ========================================
   HOVER ANIMATIONS
   ======================================== */

@keyframes hoverLift {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-8px);
    }
}

@keyframes glowBlue {
    0%, 100% {
        box-shadow: 0 0 10px rgba(37, 99, 235, 0.3), 0 0 20px rgba(37, 99, 235, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.6), 0 0 40px rgba(37, 99, 235, 0.3);
    }
}

@keyframes glowCyan {
    0%, 100% {
        box-shadow: 0 0 10px rgba(6, 182, 212, 0.3), 0 0 20px rgba(6, 182, 212, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.6), 0 0 40px rgba(6, 182, 212, 0.3);
    }
}

@keyframes glowGreen {
    0%, 100% {
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.3), 0 0 20px rgba(34, 197, 94, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.6), 0 0 40px rgba(34, 197, 94, 0.3);
    }
}

@keyframes glowRed {
    0%, 100% {
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.3), 0 0 20px rgba(239, 68, 68, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.6), 0 0 40px rgba(239, 68, 68, 0.3);
    }
}

@keyframes glowYellow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(234, 179, 8, 0.3), 0 0 20px rgba(234, 179, 8, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(234, 179, 8, 0.6), 0 0 40px rgba(234, 179, 8, 0.3);
    }
}

.card-hover {
    transition: all var(--transition-smooth);
}

.card-hover:hover {
    animation: hoverLift var(--transition-smooth) ease-out forwards;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.glow-blue {
    animation: glowBlue 2s ease-in-out infinite;
}

.glow-cyan {
    animation: glowCyan 2s ease-in-out infinite;
}

.glow-green {
    animation: glowGreen 2s ease-in-out infinite;
}

.glow-red {
    animation: glowRed 2s ease-in-out infinite;
}

.glow-yellow {
    animation: glowYellow 2s ease-in-out infinite;
}

/* ========================================
   BUTTON ANIMATIONS
   ======================================== */

@keyframes buttonGlowBlue {
    from {
        box-shadow: 0 0 0 rgba(37, 99, 235, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.8), 0 0 40px rgba(37, 99, 235, 0.4);
    }
}

.btn-glow-blue:hover {
    animation: buttonGlowBlue var(--transition-smooth) ease-out forwards;
}

.btn-glow-cyan:hover {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.8), 0 0 40px rgba(6, 182, 212, 0.4);
}

.btn-glow-green:hover {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.8), 0 0 40px rgba(34, 197, 94, 0.4);
}

/* ========================================
   PULSE ANIMATIONS (for status badges)
   ======================================== */

@keyframes pulseBlue {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 rgba(37, 99, 235, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 10px 4px rgba(37, 99, 235, 0.3);
    }
}

@keyframes pulseCyan {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 rgba(6, 182, 212, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 10px 4px rgba(6, 182, 212, 0.3);
    }
}

@keyframes pulseGreen {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 10px 4px rgba(34, 197, 94, 0.3);
    }
}

@keyframes pulseRed {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 10px 4px rgba(239, 68, 68, 0.3);
    }
}

.pulse-blue {
    animation: pulseBlue 2s ease-in-out infinite;
}

.pulse-cyan {
    animation: pulseCyan 2s ease-in-out infinite;
}

.pulse-green {
    animation: pulseGreen 2s ease-in-out infinite;
}

.pulse-red {
    animation: pulseRed 2s ease-in-out infinite;
}

/* ========================================
   TABLE ROW ANIMATIONS
   ======================================== */

@keyframes rowHighlight {
    from {
        background-color: transparent;
    }
    to {
        background-color: rgba(6, 182, 212, 0.1);
    }
}

tbody tr {
    transition: background-color var(--transition-fast);
}

tbody tr:hover {
    background-color: rgba(6, 182, 212, 0.1);
}

/* ========================================
   INPUT FOCUS ANIMATIONS
   ======================================== */

@keyframes inputFocusGlow {
    from {
        box-shadow: 0 0 0 rgba(6, 182, 212, 0.3);
        border-color: rgba(6, 182, 212, 0.5);
    }
    to {
        box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1), 0 0 8px rgba(6, 182, 212, 0.6);
        border-color: #06b6d4;
    }
}

input:focus,
textarea:focus,
select:focus {
    animation: inputFocusGlow var(--transition-fast) ease-out forwards;
}

/* ========================================
   NAVBAR SCROLL ANIMATION
   ======================================== */

@keyframes navbarSolidify {
    from {
        background-color: rgba(255, 255, 255, 0);
        box-shadow: none;
    }
    to {
        background-color: rgba(15, 23, 42, 0.95);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
}

.navbar-scrolled {
    animation: navbarSolidify var(--transition-smooth) ease-out forwards;
}

/* ========================================
   SIDEBAR ANIMATIONS
   ======================================== */

@keyframes sidebarItemHighlight {
    from {
        background: transparent;
        padding-left: 1rem;
    }
    to {
        background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), transparent);
        padding-left: 1.25rem;
    }
}

.sidebar-item-active {
    animation: sidebarItemHighlight var(--transition-smooth) ease-out forwards;
}

/* ========================================
   FORM ANIMATIONS
   ======================================== */

@keyframes formFieldEnter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    animation: formFieldEnter var(--transition-smooth) ease-out forwards;
}

/* ========================================
   BADGE ANIMATIONS
   ======================================== */

@keyframes badgeScale {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.badge {
    animation: badgeScale var(--transition-fast) ease-out;
}

/* ========================================
   LOADER ANIMATIONS
   ======================================== */

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spinner {
    animation: spin 1s linear infinite;
}

/* ========================================
   MODAL ANIMATIONS
   ======================================== */

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-dialog {
    animation: modalFadeIn var(--transition-smooth) ease-out;
}

/* ========================================
   DELAY UTILITIES
   ======================================== */

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ========================================
   STAGGER ANIMATION (for lists)
   ======================================== */

.stagger-item {
    opacity: 0;
    animation: fadeInUp var(--transition-smooth) ease-out forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }
.stagger-item:nth-child(n+7) { animation-delay: 0.6s; }

/* ========================================
   FOUNDER SECTION STYLES
   ======================================== */

.founder-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.1);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #2563eb, #10b981);
}

.founder-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(6, 182, 212, 0.2);
}

.founder-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-title {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.founder-content {
    display: grid;
    gap: 2rem;
}

.founder-content > div {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: all var(--transition-smooth);
}

.founder-content > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.founder-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.founder-content h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    border-radius: 2px;
}

.founder-content p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.founder-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.founder-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #475569;
    line-height: 1.5;
}

.founder-content li:last-child {
    border-bottom: none;
}

.founder-content li i {
    color: #06b6d4;
    font-size: 1.1rem;
    margin-top: 0.1rem;
    min-width: 16px;
}

.founder-content li strong {
    color: #1e293b;
    font-weight: 600;
}

/* Awards Section Specific Styles */
.founder-awards {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.awards-category {
    margin-bottom: 1.5rem;
}

.awards-category:last-child {
    margin-bottom: 0;
}

.awards-category h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.awards-category h5::before {
    content: '';
    width: 3px;
    height: 16px;
    background: #06b6d4;
    border-radius: 2px;
}

.awards-list li {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: all var(--transition-fast);
}

.awards-list li:hover {
    background: white;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}

.awards-list li i {
    color: #10b981;
    font-size: 1.2rem;
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.expertise-tag {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
    transition: all var(--transition-fast);
}

.expertise-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.expertise-tag::before {
    content: '⚡';
    font-size: 0.75rem;
}

/* ========================================
   FUTURISTIC ABOUT PAGE STYLES
   ======================================== */

/* Hero Ecosystem Section */
.hero-ecosystem {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-main h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.core-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
    animation: glow 3s ease-in-out infinite;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.software-orbit {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    animation: orbit 8s linear infinite;
}

.consulting-orbit {
    width: 160px;
    height: 160px;
    top: 70px;
    left: 70px;
    animation: orbit 6s linear infinite reverse;
}

.training-orbit {
    width: 120px;
    height: 120px;
    top: 90px;
    left: 90px;
    animation: orbit 4s linear infinite;
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(6, 182, 212, 0.5); }
    50% { box-shadow: 0 0 50px rgba(6, 182, 212, 0.8), 0 0 70px rgba(6, 182, 212, 0.4); }
}

/* Who We Are Ecosystem */
.who-we-are-ecosystem {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 4rem 2rem;
}

.ecosystem-overview h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ecosystem-overview p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.ecosystem-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: all var(--transition-smooth);
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.15);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pillar h4 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pillar p {
    color: #64748b;
    line-height: 1.5;
}

/* What We Do Grid */
.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: white;
}

.service-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: all var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.5;
}

/* Mission Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card-header h3 {
    font-size: 1.5rem;
    color: #06b6d4;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-content p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.card-content ul {
    list-style: none;
    padding: 0;
}

.card-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
}

.card-content li:last-child {
    border-bottom: none;
}

/* Founder Section Grid */
.founder-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
}

.founder-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.founder-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(6, 182, 212, 0.2);
}

.founder-content h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.1rem;
    color: #06b6d4;
    font-weight: 600;
    margin-bottom: 2rem;
}

.founder-content h4 {
    font-size: 1.25rem;
    color: #1e293b;
    margin: 2rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.founder-content h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border-radius: 2px;
}

.founder-content p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.expertise-item {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.founder-content blockquote {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #06b6d4;
    margin: 1.5rem 0;
    font-style: italic;
    color: #475569;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Ecosystem Structure */
.ecosystem-structure {
    background: white;
    padding: 4rem 2rem;
}

.structure-overview h3 {
    font-size: 2rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.structure-overview p {
    text-align: center;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.structure-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: all var(--transition-smooth);
}

.structure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}

.structure-card.core {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: rgba(34, 197, 94, 0.2);
}

.structure-card.ai {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: rgba(6, 182, 212, 0.2);
}

.structure-card.consulting {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.structure-card.training {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-color: rgba(139, 92, 246, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.structure-card h4 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.structure-card p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.structure-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.structure-card li {
    padding: 0.25rem 0;
    color: #475569;
    font-size: 0.9rem;
}

.ecosystem-flow {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ecosystem-flow h4 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.ecosystem-flow p {
    color: #64748b;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 4rem 2rem;
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-prop {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all var(--transition-smooth);
}

.value-prop:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.4);
}

.prop-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-prop h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-prop p {
    color: #cbd5e1;
    line-height: 1.5;
}

/* Impact & Innovation */
.impact-innovation {
    background: white;
    padding: 4rem 2rem;
}

.impact-header h3 {
    font-size: 2rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.impact-header p {
    text-align: center;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.innovation-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: all var(--transition-smooth);
}

.innovation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}

.innovation-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    display: block;
}

.innovation-card h4 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.innovation-card p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.stat {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.innovation-cta {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.innovation-cta h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.innovation-cta p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* CTA Ecosystem */
.cta-ecosystem {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
    background: white;
    color: #06b6d4;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

.cta-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.cta-contact p {
    margin: 0.5rem 0;
    color: #e2e8f0;
}

.cta-contact a {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 600;
}

.cta-contact a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid,
    .mission-vision-grid,
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-main h1 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ecosystem-diagram {
        width: 250px;
        height: 250px;
    }

    .ecosystem-pillars,
    .value-props-grid,
    .innovation-grid,
    .structure-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-ecosystem,
    .who-we-are-ecosystem,
    .what-we-do-grid,
    .mission-vision-grid,
    .founder-section,
    .ecosystem-structure,
    .why-choose-us,
    .impact-innovation,
    .cta-ecosystem {
        padding: 2rem 1rem;
    }

    .hero-main h1 {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .founder-photo {
        height: 250px;
    }
}

/* Responsive Design for Founder Section */
@media (max-width: 768px) {
    .founder-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .founder-header h3 {
        font-size: 2rem;
    }

    .founder-title {
        font-size: 1.1rem;
    }

    .founder-content {
        gap: 1.5rem;
    }

    .founder-content > div {
        padding: 1rem;
    }

    .expertise-tags {
        gap: 0.5rem;
    }

    .expertise-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .founder-section {
        padding: 1rem;
        border-radius: 12px;
    }

    .founder-header h3 {
        font-size: 1.75rem;
    }

    .founder-content h4 {
        font-size: 1.1rem;
    }

    .awards-list li {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}
