/* ===================================
   BRIGHT THEME OVERRIDE
   Modern, Clean Design inspired by Manipal Digital
   =================================== */

/* Modern Typography */
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .hero-title-modern, .philosophy-main-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Color Overrides */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #0ea5e9;
    --accent: #06b6d4;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --border-light: rgba(15, 23, 42, 0.08);
    --border-medium: rgba(15, 23, 42, 0.12);
    
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.16);
}

/* Navigation - Light & Clean */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    background: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white;
    border: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

/* Hero - Modern & Bright */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.12) 0%, transparent 50%);
    z-index: 0;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-block {
    max-width: 650px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.tag-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title-modern {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-word {
    display: block;
    overflow: hidden;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 1.5px solid var(--border-medium);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hero-badges {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.badge-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.badge-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Hero Visual Block */
.hero-visual-block {
    position: relative;
    height: 600px;
}

.visual-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(14, 165, 233, 0.1));
}

.visual-card.card-1 {
    width: 350px;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 2;
}

.visual-card.card-2 {
    width: 280px;
    height: 320px;
    bottom: 50px;
    right: 0;
    z-index: 1;
}

.visual-card:hover {
    transform: translateY(-10px) rotate(-2deg);
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.element-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.element-3 {
    top: 50%;
    right: 30%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Scroll Indicator */
.scroll-indicator-modern {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Philosophy Section - Clean Grid */
.philosophy-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.philosophy-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.philosophy-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.7) 50%, rgba(255, 255, 255, 0.85) 100%);
}

.philosophy-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(14, 165, 233, 0.1));
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.philosophy-main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.philosophy-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Philosophy Visual Icons */
.philosophy-visual-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.icon-item {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.icon-item:hover {
    transform: translateY(-10px) scale(1.1);
}

.icon-item svg {
    filter: drop-shadow(0 4px 20px rgba(59, 130, 246, 0.2));
    transition: filter 0.4s ease;
}

.icon-item:hover svg {
    filter: drop-shadow(0 8px 30px rgba(59, 130, 246, 0.4));
}

@media (max-width: 768px) {
    .philosophy-visual-icons {
        gap: 1.5rem;
    }
    
    .icon-item svg {
        width: 45px;
        height: 45px;
    }
}

/* New Philosophy Grid */
.philosophy-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.philosophy-card-modern {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.philosophy-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.philosophy-card-visual {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.philosophy-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.philosophy-card-modern:hover .philosophy-card-visual img {
    transform: scale(1.1);
}

.philosophy-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.philosophy-card-content {
    padding: 2rem;
}

.philosophy-number-badge {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.philosophy-card-title-new {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.philosophy-card-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-card-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.philosophy-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.philosophy-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.philosophy-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Philosophy Quote */
.philosophy-quote {
    max-width: 900px;
    margin: 5rem auto 0;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.1);
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 2rem;
}

.philosophy-quote blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
}

.philosophy-quote p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.philosophy-quote cite {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-style: normal;
    font-weight: 600;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .philosophy-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-quote p {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .philosophy-section {
        padding: 5rem 0;
    }
    
    .philosophy-intro {
        margin-bottom: 3rem;
    }
    
    .philosophy-card-visual {
        height: 200px;
    }
    
    .philosophy-quote {
        padding: 2rem;
    }
    
    .quote-mark {
        font-size: 4rem;
    }
}

/* Innovation Section */
.innovation-lab {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

@media (max-width: 1200px) {
    .innovation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .innovation-grid {
        grid-template-columns: 1fr;
    }
}

.innovation-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.innovation-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}

.innovation-card-bg {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.innovation-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.innovation-card:hover .innovation-card-bg img {
    transform: scale(1.1);
}

.innovation-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.innovation-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.innovation-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.innovation-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.innovation-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.innovation-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    padding: 0.4rem 0.875rem;
    background: var(--bg-tertiary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.innovation-card:hover .tech-tag {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

/* Impact Section */
.impact-section {
    padding: 6rem 0;
    background: white;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 50%, #bfdbfe 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.metric-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.metric-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Manifesto Section */
.manifesto-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.manifesto-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.manifesto-statements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.manifesto-item {
    background: white;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--primary);
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.manifesto-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.manifesto-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
}

.manifesto-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.manifesto-cta h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.btn-primary-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: all 0.4s ease;
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual-block {
        height: 400px;
    }
    
    .visual-card.card-1 {
        width: 280px;
        height: 320px;
    }
    
    .visual-card.card-2 {
        width: 220px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .hero-badges {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .philosophy-grid,
    .innovation-grid,
    .impact-metrics {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   MANIPAL DIGITAL-INSPIRED ANIMATIONS
   Smooth, Professional Transitions
   =================================== */

/* Smooth Fade-In on Scroll */
[data-fade-in] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-fade-in].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delay for Multiple Elements */
[data-fade-in]:nth-child(1) { transition-delay: 0s; }
[data-fade-in]:nth-child(2) { transition-delay: 0.1s; }
[data-fade-in]:nth-child(3) { transition-delay: 0.2s; }
[data-fade-in]:nth-child(4) { transition-delay: 0.3s; }
[data-fade-in]:nth-child(5) { transition-delay: 0.4s; }

/* Smooth Image Scale on Hover */
.visual-card,
.philosophy-card,
.innovation-card,
.metric-card {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.visual-card img,
.philosophy-card img,
.innovation-card img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.visual-card:hover img,
.philosophy-card:hover img,
.innovation-card:hover img {
    transform: scale(1.05);
}

/* Smooth Parallax Effect */
[data-parallax] {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Text Reveal Animation */
.reveal-text {
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: revealText 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Counter Animation */
.counter {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Button Ripple Effect */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

/* Smooth Section Transitions */
section {
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* Card Lift Effect */
.philosophy-card,
.innovation-card,
.metric-card,
.manifesto-item {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Gradient Animation */
.gradient-text {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Smooth Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 9999;
    transform-origin: left;
    transition: transform 0.1s linear;
}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-element {
    animation: fadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Smooth Image Lazy Load */
img {
    opacity: 1;
    transition: opacity 0.6s ease;
}

img.loaded {
    opacity: 1;
}

img[src] {
    opacity: 1;
}

/* Interactive Hover States */
a, button {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth Page Transitions */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.page-transition.active {
    opacity: 1;
}

/* ===========================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   =========================== */

/* Large Tablets */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content-grid {
        gap: 3rem;
    }
    
    .innovation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .philosophy-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-quote p {
        font-size: 1.25rem;
    }
    
    .innovation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .philosophy-section {
        padding: 5rem 0;
    }
    
    .philosophy-intro {
        margin-bottom: 3rem;
    }
    
    .philosophy-visual-icons {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .icon-item svg {
        width: 45px;
        height: 45px;
    }
    
    .philosophy-card-visual {
        height: 200px;
    }
    
    .philosophy-card-content {
        padding: 1.5rem;
    }
    
    .philosophy-card-title-new {
        font-size: 1.5rem;
    }
    
    .philosophy-quote {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .quote-mark {
        font-size: 4rem;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .innovation-card-bg {
        height: 160px;
    }
    
    .innovation-content {
        padding: 1.5rem;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-visual-block {
        order: -1;
    }
    
    .hero-badges {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: space-between;
        padding-top: 1.5rem;
    }
    
    .badge-item {
        flex: 1;
        text-align: center;
        min-width: 0;
    }
    
    .badge-number {
        font-size: 1.75rem;
    }
    
    .badge-label {
        font-size: 0.75rem;
    }
    
    .visual-card {
        height: 250px;
    }
    
    .hero-stats-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 0 2rem;
        transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1000;
        overflow-y: auto;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    
    .nav-menu.active {
        left: 0;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .philosophy-main-title {
        font-size: 2rem;
    }
    
    .philosophy-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .philosophy-visual-icons {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .icon-item svg {
        width: 40px;
        height: 40px;
    }
    
    .philosophy-card-modern {
        border-radius: 16px;
    }
    
    .philosophy-card-visual {
        height: 180px;
    }
    
    .philosophy-card-content {
        padding: 1.25rem;
    }
    
    .philosophy-number-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .philosophy-card-title-new {
        font-size: 1.25rem;
    }
    
    .philosophy-card-desc {
        font-size: 0.95rem;
    }
    
    .philosophy-quote {
        padding: 1.5rem;
    }
    
    .philosophy-quote p {
        font-size: 1.1rem;
    }
    
    .quote-mark {
        font-size: 3rem;
        left: 1rem;
    }
    
    .innovation-card-bg {
        height: 140px;
    }
    
    .innovation-content {
        padding: 1.25rem;
    }
    
    .innovation-content h3 {
        font-size: 1.25rem;
    }
    
    .innovation-number {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .visual-card {
        height: 200px;
    }
    
    .metric-card {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Handle mobile cursor */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto !important;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}
