/* --- CSS VARIABLES & RESET --- */
:root {
    --color-bg: #ffffff;
    --color-dark: #000000;
    --color-dark-secondary: #0f111a;
    
    /* MAIN HEADER COLOR: Updated to Requested Coral/Orange */
    --header-bg: rgba(6, 6, 6, 0.95); 
    
    /* SUB-HEADER COLOR: Teal */
    --sub-nav-bg: rgba(0, 139, 139, 0.95);
    
    --color-primary: #4C1D95;
    --color-accent: #D946EF;
    --color-accent-hover: #a855f7;
    --color-text-main: #ffffff;
    --color-text-muted: #94a3b8;
    
    --font-main: 'Inter', sans-serif;
    --container-width: 1440px;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* GLOBAL SCROLLBAR HIDING */
html {
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar, 
body::-webkit-scrollbar,
::-webkit-scrollbar {
    display: none;
}

body {
    font-family: var(--font-main);
    color: var(--color-dark);
    background-color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; cursor: pointer; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

/* Main Page Hero Title - Kept Large */
h1 { font-size: clamp(3rem, 8vw, 7rem); margin-bottom: 1.5rem; color: var(--color-text-main); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; color: var(--color-text-main); }
h3 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700; color: var(--color-text-main); }
p { font-size: 1.125rem; margin-bottom: 1.5rem; color: #cbd5e1; font-weight: 400; line-height: 1.7; }

.text-gradient {
    background: linear-gradient(135deg, #ffffff, #f2f2f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    background: var(--color-text-main);
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute; top: 0; left: 0; width: 0%; height: 100%;
    background: var(--color-accent);
    z-index: -1;
    transition: width 0.4s var(--ease-out-expo);
}

.btn:hover { color: var(--color-text-main); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(217, 70, 239, 0.4); }
.btn:hover::after { width: 100%; }

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-text-main);
}
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-text-main); background: rgba(255,255,255,0.05); }
.btn-outline::after { display: none; }

/* --- HEADER & NAV --- */
header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: linear-gradient(135deg, rgb(255 255 255) 0%, rgb(7 6 6 / 95%) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 80px;
    display: flex; 
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width); 
    margin: 0 auto;
    width: 100%; 
    display: flex; 
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem; 
    padding-right: 2rem;
    position: relative;
}

.logo {
    position: static;
    transform: none;
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    
}

.logo:hover img {
    transform: scale(1.05);
}

/* Modern Navigation Styles */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-nav li {
    position: relative;
}

.desktop-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
}

.desktop-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.3), transparent);
    transition: left 0.5s ease;
}

.desktop-nav a:hover::before {
    left: 100%;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(76, 29, 149, 0.2));
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
}

/* Enhanced Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 600px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-section {
    margin-bottom: 1.5rem;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section h4 {
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(217, 70, 239, 0.3);
}

.dropdown-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
}

.dropdown-section li {
    margin: 0;
}

.dropdown-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: block;
    position: relative;
    overflow: hidden;
}

.dropdown-section a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--color-accent);
    transition: height 0.2s ease;
    border-radius: 2px;
}

.dropdown-section a:hover {
    color: #ffffff;
    background: rgba(217, 70, 239, 0.1);
    padding-left: 1.2rem;
}

.dropdown-section a:hover::before {
    height: 60%;
}

.logo { 
    position: absolute;
    top: 50%;
    left: 0.1rem;
    transform: translateY(-50%);
    z-index: 1001;
    height: auto;
    width: auto;
}

.logo img {
    height: 250px;
    width: auto;
    display: block;
}

nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

nav ul { display: flex; gap: 3rem; }
nav a { font-weight: 600; font-size: 1.2rem; color: rgba(0, 0, 0, 0.8); position: relative; }
nav a:hover, nav a.active { color: #000000; }
nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--color-accent); transition: width 0.3s ease; box-shadow: 0 0 10px var(--color-accent);
}
nav a:hover::after, nav a.active::after { width: 100%; }

/* --- DROPDOWN STYLES --- */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: static;
}


.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.98) 0%, rgba(5, 5, 10, 0.99) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    min-width: 800px;
    max-width: 900px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-15px) scale(0.96);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-section {
    padding: 2rem 2.5rem;
    border-bottom: none;
    border-right: none;
    flex: 1;
    min-width: 0;
    position: relative;
}

.dropdown-section:last-child {
    border-bottom: none;
    border-right: none;
}

.dropdown-section h4 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, 
        rgba(99, 102, 241, 0.7) 0%, 
        rgba(217, 70, 239, 0.7) 50%,
        rgba(99, 102, 241, 0.7) 100%
    ) bottom/100% 2px no-repeat;
    display: block;
    position: relative;
}

.dropdown-section h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(99, 102, 241, 1) 0%, 
        rgba(217, 70, 239, 1) 50%,
        rgba(99, 102, 241, 1) 100%
    );
    border-radius: 1px;
    animation: header-glow 3s ease-in-out infinite;
}

@keyframes header-glow {
    0%, 100% { 
        opacity: 0.8; 
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    }
    50% { 
        opacity: 1; 
        box-shadow: 0 0 20px rgba(217, 70, 239, 0.8);
    }
}

.dropdown-section ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.dropdown-section ul li {
    list-style: none;
    position: relative;
}

.dropdown-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.84rem;
    font-weight: 500;
    padding: 0.7rem 1.2rem;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 255, 255, 0.01) 100%
    );
    backdrop-filter: blur(8px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dropdown-section ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.2) 30%,
        rgba(217, 70, 239, 0.2) 70%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.dropdown-section ul li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1) 0%, 
        transparent 50%,
        rgba(217, 70, 239, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.dropdown-section ul li a:hover {
    color: rgba(255, 255, 255, 0.98);
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.15) 0%, 
        rgba(217, 70, 239, 0.15) 50%,
        rgba(99, 102, 241, 0.15) 100%
    );
    transform: translateX(6px) translateY(-3px);
    border: 1px solid rgba(99, 102, 241, 0.4);
    box-shadow: 
        0 12px 35px rgba(99, 102, 241, 0.25),
        0 4px 15px rgba(217, 70, 239, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.dropdown-section ul li a:hover::before {
    left: 100%;
}

.dropdown-section ul li a:hover::after {
    opacity: 1;
}

.dropdown-section ul li a:active {
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.22) 0%, 
        rgba(217, 70, 239, 0.22) 50%,
        rgba(99, 102, 241, 0.22) 100%
    );
    transform: translateX(3px) translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Responsive dropdown for mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 320px;
        max-width: 360px;
        left: -60px;
    }
    
    .dropdown-section ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .dropdown-section {
        padding: 1.5rem;
    }
    
    .dropdown-section h4 {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .dropdown-section ul li a {
        font-size: 0.78rem;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 1024px) {
    .dropdown-menu {
        min-width: 600px;
        max-width: 700px;
    }
    
    .dropdown-section ul {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dropdown-section {
        padding: 1.8rem 2rem;
    }
}

@media (max-width: 1200px) {
    .dropdown-menu {
        min-width: 700px;
        max-width: 800px;
    }
    
    .dropdown-section ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Enhanced visual hierarchy */
.dropdown-section:first-child {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.02) 0%, transparent 100%);
}

.dropdown-section:last-child {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, transparent 100%);
}

/* Responsive dropdown for mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 320px;
        max-width: 350px;
        left: -50px;
    }
    
    .dropdown-section {
        padding: 1rem;
    }
    
    .dropdown-section ul {
        grid-template-columns: 1fr;
    }
    
    .dropdown-section h4 {
        font-size: 0.8rem;
    }
    
    .dropdown-section ul li a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 1024px) {
    .dropdown-menu {
        min-width: 700px;
        max-width: 800px;
    }
    
    .dropdown-section ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(217, 70, 239, 0.05) 100%);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #6366f1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 70, 239, 0.4);
    box-shadow: 0 20px 40px rgba(217, 70, 239, 0.2);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.testimonial-icon svg {
    width: 28px;
    height: 28px;
}

.testimonial-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.testimonial-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-card h3 {
        font-size: 1.3rem;
    }
}

.mv-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* --- INDUSTRIES PAGE STYLES --- */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(217, 70, 239, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.industry-card {
    background: transparent;
    border: 1px solid rgba(226, 232, 240, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
                0 2px 4px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.industry-card:hover {
    transform: translateY(-12px) scale(1.02) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.25),
                0 0 40px rgba(99, 102, 241, 0.2),
                inset 0 0 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.industry-card:hover .industry-arrow {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(59, 130, 246, 0.15));
    transform: translateX(6px) scale(1.1) rotate(45deg);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.4);
    animation: arrow-pulse 2s ease-in-out infinite;
}

.industry-card:hover .industry-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #3b82f6);
    animation: icon-glow 2s ease-in-out infinite alternate;
}

.industry-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.industry-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.2) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    transform: translateX(-100%) rotate(45deg);
}

.industry-card:hover .industry-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85);
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
    filter: brightness(0.75) saturate(1.1);
}

.industry-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.005);
    pointer-events: none;
    border-radius: 16px;
}

.industry-card:hover .industry-image::before {
    opacity: 1;
    transform: translateX(100%) rotate(45deg);
    animation: shimmer 1.5s ease-in-out;
}

/* Always visible title in the middle */
.industry-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.industry-card:hover .industry-title {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    pointer-events: none;
}

.industry-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(0, 0, 0, 0.6);
    animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
    from {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8),
                     0 0 20px rgba(0, 0, 0, 0.6),
                     0 0 25px rgba(99, 102, 241, 0.3);
    }
    to {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8),
                     0 0 20px rgba(0, 0, 0, 0.6),
                     0 0 30px rgba(99, 102, 241, 0.5);
    }
}

.industry-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.industry-card:hover .industry-content {
    opacity: 1;
    transform: translateY(0);
    animation: content-reveal 0.8s ease-out;
}

.industry-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    position: relative;
}

.industry-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 12px;
    z-index: -1;
    animation: icon-shimmer 3s ease-in-out infinite;
}

.industry-icon svg {
    color: #ffffff;
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.6));
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    transition: color 0.4s ease;
    letter-spacing: -0.025em;
    position: relative;
}

.industry-card h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6366f1, #8b5cf6, #3b82f6, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.industry-card:hover h3::after {
    opacity: 1;
    transform: scaleX(1);
    animation: underline-glow 2s ease-in-out infinite;
}

.industry-card:hover h3 {
    color: #ffffff;
    transform: translateY(-2px);
    animation: text-glow 2s ease-in-out infinite alternate;
}

.industry-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9375rem;
    flex: 1;
    font-family: 'Inter', sans-serif;
    transition: color 0.4s ease;
}

.industry-card:hover p {
    color: #f1f5f9;
    transform: translateY(-1px);
    animation: text-fade 1s ease-in-out;
}

.industry-arrow {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(226, 232, 240, 0.2);
    border: 1px solid rgba(226, 232, 240, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.industry-arrow svg {
    color: #ffffff;
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

/* Enhanced visual effects */
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0) 0%, 
        rgba(59, 130, 246, 0.1) 50%,
        rgba(99, 102, 241, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.industry-card:hover::before {
    opacity: 1;
    animation: card-pulse 2s ease-in-out infinite;
}

/* Particle effect */
.industry-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(99, 102, 241, 0.15) 0%, 
        transparent 70%);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

.industry-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(2);
    animation: particle-expand 3s ease-in-out infinite;
}

/* Professional loading animation */
@keyframes professional-reveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.industry-card.reveal {
    animation: professional-reveal 0.6s ease-out forwards;
}

/* New animations */
@keyframes card-float {
    0%, 100% {
        transform: translateY(-12px) scale(1.02) rotateX(2deg) rotateY(-2deg);
    }
    50% {
        transform: translateY(-15px) scale(1.02) rotateX(1deg) rotateY(-1deg);
    }
}

@keyframes arrow-pulse {
    0%, 100% {
        transform: translateX(6px) scale(1.1) rotate(45deg);
    }
    50% {
        transform: translateX(8px) scale(1.15) rotate(50deg);
    }
}

@keyframes icon-glow {
    from {
        box-shadow: 0 10px 20px rgba(99, 102, 241, 0.6),
                    0 0 25px rgba(99, 102, 241, 0.4);
    }
    to {
        box-shadow: 0 15px 30px rgba(99, 102, 241, 0.8),
                    0 0 35px rgba(99, 102, 241, 0.6);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes image-glitch {
    0%, 100% {
        transform: scale(1.15) rotate(1deg);
        filter: brightness(1.2) contrast(1.2) saturate(1.3);
    }
    25% {
        transform: scale(1.17) rotate(0deg);
        filter: brightness(1.25) contrast(1.25) saturate(1.4);
    }
    50% {
        transform: scale(1.13) rotate(2deg);
        filter: brightness(1.15) contrast(1.15) saturate(1.2);
    }
    75% {
        transform: scale(1.16) rotate(-1deg);
        filter: brightness(1.23) contrast(1.23) saturate(1.35);
    }
}

@keyframes icon-shimmer {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: rotate(180deg);
    }
}

@keyframes underline-glow {
    0%, 100% {
        opacity: 0.8;
        filter: blur(0px);
    }
    50% {
        opacity: 1;
        filter: blur(1px);
    }
}

@keyframes text-glow {
    from {
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.6),
                     0 0 30px rgba(99, 102, 241, 0.4);
    }
    to {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.9),
                     0 0 35px rgba(99, 102, 241, 0.7);
    }
}

@keyframes text-fade {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes card-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes particle-expand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0.1;
    }
}

@keyframes content-reveal {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced hover states */
.industry-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.industry-card:hover {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: card-float 3s ease-in-out infinite;
}

/* Professional focus states */
.industry-card:focus {
    outline: 2px solid rgba(99, 102, 241, 0.5);
    outline-offset: 2px;
}

/* Refined typography */
.industry-card h3 {
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.industry-card p {
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.industry-title h3 {
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .industry-card {
        border-radius: 8px;
    }
    
    .industry-content {
        padding: 1.5rem;
    }
    
    .industry-image {
        height: 180px;
    }
    
    .industry-icon {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        margin-bottom: 1rem;
    }
    
    .industry-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .industry-card h3 {
        font-size: 1.3rem;
    }
    
    .industry-arrow {
        width: 32px;
        height: 32px;
        right: 1.5rem;
        bottom: 1.5rem;
    }
    
    .industry-arrow svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .industries-grid {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .industry-content {
        padding: 1rem;
    }
    
    .industry-image {
        height: 160px;
    }
}

/* --- CREATIVE WHO WE ARE PAGE DESIGN --- */
.who-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 17, 26, 0.95) 0%, rgba(15, 17, 26, 0.85) 100%);
    overflow: hidden;
}

.who-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(217, 70, 239, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    z-index: 0;
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.who-hero .container {
    position: relative;
    z-index: 1;
}

.who-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.who-hero-text {
    position: relative;
}

.who-hero-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
    backdrop-filter: blur(10px);
}

.who-hero-text::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(45deg, transparent, rgba(217, 70, 239, 0.05), transparent);
    border-radius: 25px;
    z-index: -2;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

.who-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.who-hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #6366f1);
    border-radius: 2px;
    animation: lineGrow 2s ease-out;
}

@keyframes lineGrow {
    0% { width: 0; }
    100% { width: 100px; }
}

.who-hero-text .sub {
    font-size: 1.3rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.who-hero-image-clip {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-hero-image-clip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, var(--color-accent), transparent, var(--color-accent), transparent, var(--color-accent));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: morphing 8s ease-in-out infinite;
}

.who-hero-image-clip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes morphing {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    75% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.who-hero-image-clip img {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(217, 70, 239, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.who-hero-image-clip:hover img {
    transform: scale(1.05);
}

/* Enhanced Values Section */
.values-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(217, 70, 239, 0.02) 100%);
    overflow: hidden;
}

.values-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(217, 70, 239, 0.03), transparent, rgba(99, 102, 241, 0.03), transparent);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.values-header h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: headerGlow 3s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(99, 102, 241, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover::after {
    opacity: 1;
    top: -150%;
    left: -150%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 20px 40px rgba(217, 70, 239, 0.2);
}

.value-num-bg {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(217, 70, 239, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.value-card:hover .value-num-bg {
    color: rgba(217, 70, 239, 0.2);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: #94a3b8;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Enhanced Vision & Mission Section */
.mv-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(217, 70, 239, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.mv-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(217, 70, 239, 0.02) 50%, transparent 70%);
    animation: slideGradient 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes slideGradient {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.mv-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.holo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.holo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(217, 70, 239, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.holo-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(99, 102, 241, 0.05), transparent, rgba(217, 70, 239, 0.05), transparent);
    animation: rotateHolo 10s linear infinite;
    opacity: 0;
}

@keyframes rotateHolo {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.holo-card:hover::before {
    opacity: 1;
    animation: shimmer 0.6s ease;
}

.holo-card:hover::after {
    opacity: 0.3;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.holo-card:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 25px 50px rgba(217, 70, 239, 0.2);
}

.icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.icon-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.holo-card:hover .icon-badge::before {
    opacity: 0.3;
}

.icon-badge svg {
    width: 40px;
    height: 40px;
    color: white;
}

.holo-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.holo-card p {
    color: #e2e8f0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Enhanced Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(217, 70, 239, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(217, 70, 239, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    animation: testimonialGlow 4s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes testimonialGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(99, 102, 241, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover::after {
    opacity: 1;
    top: -150%;
    left: -150%;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 25px 50px rgba(217, 70, 239, 0.2);
}

.testimonial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.testimonial-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-icon::before {
    opacity: 0.2;
}

.testimonial-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.testimonial-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-card p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-arrow {
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-arrow {
    transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .who-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .who-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .who-hero-text .sub {
        font-size: 1.1rem;
    }
    
    .who-hero-image-clip img {
        height: 300px;
        max-width: 300px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .holo-card {
        padding: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

/* --- PROFESSIONAL TESTIMONIALS DESIGN --- */
.professional-hero-with-image {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background-color {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 17, 26, 0.9) 0%, rgba(15, 17, 26, 0.7) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-creative-element {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.floating-quote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-quote:nth-child(1) {
    animation-delay: 0s;
}

.floating-quote:nth-child(2) {
    animation-delay: 2s;
}

.floating-quote:nth-child(3) {
    animation-delay: 4s;
}

.floating-quote:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.floating-quote span {
    display: block;
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.floating-quote p {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Simple Success Stories */
.success-stories-simple {
    padding: 3rem 0;
}

.success-stories-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.success-story-simple-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.success-story-simple-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.success-story-simple-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.success-story-simple-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(217, 70, 239, 0.1);
    color: var(--color-accent);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.professional-hero {
    padding: 6rem 0;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

/* Professional Testimonials Section */
.professional-testimonials {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #94a3b8;
}

.testimonials-professional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-professional-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-professional-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-details p {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.client-details span {
    color: #94a3b8;
    font-size: 0.8rem;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #e2e8f0;
    line-height: 1.7;
    font-size: 1rem;
}

.testimonial-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-info {
    display: flex;
    gap: 1rem;
}

.project-type, .project-duration {
    background: rgba(217, 70, 239, 0.1);
    color: var(--color-accent);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Success Stories Professional */
.success-stories-professional {
    padding: 6rem 0;
}

.success-stories-professional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.success-story-professional-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.success-story-professional-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.story-icon svg {
    width: 24px;
    height: 24px;
}

.story-header h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
}

.success-story-professional-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.story-metrics {
    display: flex;
    gap: 1rem;
}

.metric {
    text-align: center;
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Culture Professional */
.culture-professional {
    padding: 3rem 0;
}

.culture-professional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.culture-professional-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.culture-professional-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.culture-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.culture-icon svg {
    width: 28px;
    height: 28px;
}

.culture-professional-card h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.culture-professional-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Benefits Professional */
.benefits-professional {
    padding: 3rem 0;
}

.benefits-professional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-professional-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-professional-item:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 70, 239, 0.3);
}

.benefit-professional-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-professional-item p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Professional CTA */
.professional-cta {
    padding: 3rem 0;
}

.cta-container {
    text-align: center;
}

.cta-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-creative-element {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .floating-quote {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .testimonials-professional-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stories-professional-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stories-simple-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-professional-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-professional-grid {
        grid-template-columns: 1fr;
    }
    
    .story-metrics {
        flex-direction: column;
    }
    
    .project-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .professional-hero-with-image {
        padding: 6rem 0;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

/* --- MODERN TESTIMONIALS DESIGN --- */
.testimonial-modern-hero {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-card .mini-quote {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-carousel {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(217, 70, 239, 0.05) 100%);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
}

.carousel-content {
    text-align: center;
}

.carousel-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.carousel-content p {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.carousel-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.carousel-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.carousel-author strong {
    color: #ffffff;
    display: block;
}

.carousel-author span {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Enhanced Testimonials Section */
.enhanced-testimonials {
    padding: 6rem 0;
}

.testimonials-showcase {
    margin-top: 3rem;
}

.featured-testimonial {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(217, 70, 239, 0.08) 100%);
    border: 2px solid rgba(217, 70, 239, 0.3);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.featured-quote {
    position: relative;
}

.quote-mark {
    font-size: 6rem;
    color: var(--color-accent);
    line-height: 1;
    position: absolute;
    top: -2rem;
    left: -2rem;
    opacity: 0.3;
}

.featured-quote p {
    color: #e2e8f0;
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.featured-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-details h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.author-details p {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-details span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.company-logo {
    margin-top: 0.5rem;
}

.company-logo img {
    height: 30px;
    width: auto;
}

.featured-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Modern Testimonial Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card-modern {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(217, 70, 239, 0.02) 100%);
    border: 1px solid rgba(217, 70, 239, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 20px 40px rgba(217, 70, 239, 0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-info img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.company-info h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.company-info span {
    color: #94a3b8;
    font-size: 0.8rem;
}

.rating {
    color: #fbbf24;
    font-size: 1.1rem;
}

.card-content {
    margin-bottom: 1.5rem;
}

.card-content p {
    color: #e2e8f0;
    line-height: 1.6;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(217, 70, 239, 0.1);
}

.card-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.card-author strong {
    color: #ffffff;
    display: block;
    font-size: 0.9rem;
}

.card-author span {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Success Stories Modern */
.success-stories-modern {
    padding: 6rem 0;
}

.success-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-case {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(217, 70, 239, 0.02) 100%);
    border: 1px solid rgba(217, 70, 239, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.success-case:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 20px 40px rgba(217, 70, 239, 0.15);
}

.case-visual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.case-icon svg {
    width: 28px;
    height: 28px;
}

.case-progress {
    text-align: center;
}

.progress-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(var(--color-accent) calc(var(--progress) * 1%), rgba(217, 70, 239, 0.1) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    position: relative;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background: #0f111a;
    border-radius: 50%;
}

.progress-circle::after {
    content: attr(data-progress);
    position: absolute;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 0.9rem;
}

.case-progress span {
    color: #94a3b8;
    font-size: 0.8rem;
}

.case-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.case-content p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.case-highlights {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight {
    text-align: center;
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.highlight-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.highlight-label {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.case-btn {
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217, 70, 239, 0.3);
}

/* Modern CTA */
.cta-modern {
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(217, 70, 239, 0.05) 100%);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 24px;
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn.primary {
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    color: white;
}

.btn.secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(217, 70, 239, 0.3);
}

.btn.secondary:hover {
    background: rgba(217, 70, 239, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-metrics {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .success-cases {
        grid-template-columns: 1fr;
    }
    
    .case-highlights {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-content {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* --- TESTIMONIALS DETAIL PAGES --- */
.testimonial-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.testimonial-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.testimonial-hero-text .sub {
    font-size: 1.3rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.testimonial-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.testimonials-detail-section {
    padding: 4rem 0;
}

.testimonials-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-detail-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(217, 70, 239, 0.02) 100%);
    border: 1px solid rgba(217, 70, 239, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-detail-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 15px 30px rgba(217, 70, 239, 0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--color-accent);
    line-height: 1;
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.testimonial-content p {
    color: #e2e8f0;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.testimonial-rating span {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(217, 70, 239, 0.1);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.author-info .tenure {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Success Stories */
.success-stories-section {
    padding: 4rem 0;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-story-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(217, 70, 239, 0.02) 100%);
    border: 1px solid rgba(217, 70, 239, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.success-story-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 15px 30px rgba(217, 70, 239, 0.1);
}

.story-image {
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.success-story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.metric {
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Culture Section */
.culture-section {
    padding: 4rem 0;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.culture-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(217, 70, 239, 0.02) 100%);
    border: 1px solid rgba(217, 70, 239, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 15px 30px rgba(217, 70, 239, 0.1);
}

.culture-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.culture-icon svg {
    width: 28px;
    height: 28px;
}

.culture-card h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.culture-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(217, 70, 239, 0.02) 100%);
    border: 1px solid rgba(217, 70, 239, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 70, 239, 0.3);
}

.benefit-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: transparent;
}

/* CTA Section Animated Background */
.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Transparent Overlay for depth */
.transparent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(217, 70, 239, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: blur(10px);
    animation: overlayShift 25s ease-in-out infinite;
}

/* Enhanced Capability Particles - More visible with transparent background */
.capability-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(217, 70, 239, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 35% 75%, rgba(99, 102, 241, 0.3) 3px, transparent 3px),
        radial-gradient(circle at 55% 15%, rgba(168, 85, 247, 0.35) 2px, transparent 2px),
        radial-gradient(circle at 75% 55%, rgba(217, 70, 239, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 25% 85%, rgba(99, 102, 241, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 45% 35%, rgba(168, 85, 247, 0.25) 4px, transparent 4px),
        radial-gradient(circle at 65% 75%, rgba(217, 70, 239, 0.35) 2px, transparent 2px),
        radial-gradient(circle at 85% 25%, rgba(99, 102, 241, 0.3) 3px, transparent 3px);
    background-size: 180px 180px, 140px 140px, 120px 120px, 160px 160px, 100px 100px, 200px 200px, 130px 130px, 150px 150px;
    animation: particleFloat 20s ease-in-out infinite;
}

/* Enhanced Growth Nodes - More prominent */
.growth-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.growth-nodes::before,
.growth-nodes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.4) 0%, rgba(99, 102, 241, 0.2) 50%, transparent 70%);
}

.growth-nodes::before {
    width: 350px;
    height: 350px;
    top: 5%;
    right: 5%;
    animation: nodePulse 4s ease-in-out infinite;
}

.growth-nodes::after {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 10%;
    animation: nodePulse 4s ease-in-out infinite 2s;
}

/* Enhanced Connectivity Lines - More visible */
.connectivity-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 47%, rgba(217, 70, 239, 0.15) 48%, rgba(217, 70, 239, 0.15) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 47%, rgba(99, 102, 241, 0.12) 48%, rgba(99, 102, 241, 0.12) 50%, transparent 51%),
        linear-gradient(135deg, transparent 48%, rgba(168, 85, 247, 0.1) 49%, rgba(168, 85, 247, 0.1) 51%, transparent 52%);
    background-size: 120px 120px, 100px 100px, 140px 140px;
    animation: lineShift 15s linear infinite;
}

/* Enhanced Floating Elements - More dramatic */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2) 0%, rgba(99, 102, 241, 0.1) 50%, rgba(168, 85, 247, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 8px 32px rgba(217, 70, 239, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.float-1 {
    width: 70px;
    height: 70px;
    top: 15%;
    left: 8%;
    animation: floatRotate 8s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.25) 0%, rgba(99, 102, 241, 0.15) 100%);
}

.float-2 {
    width: 50px;
    height: 50px;
    top: 65%;
    right: 15%;
    animation: floatRotate 10s ease-in-out infinite 2s;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(168, 85, 247, 0.15) 100%);
}

.float-3 {
    width: 90px;
    height: 90px;
    bottom: 25%;
    left: 25%;
    animation: floatRotate 12s ease-in-out infinite 4s;
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(217, 70, 239, 0.15) 100%);
}

.float-4 {
    width: 60px;
    height: 60px;
    top: 35%;
    right: 35%;
    animation: floatRotate 9s ease-in-out infinite 1s;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(217, 70, 239, 0.1) 100%);
}

/* Enhanced Animations */
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) translateX(8px);
        opacity: 1;
    }
    50% {
        transform: translateY(8px) translateX(-8px);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-12px) translateX(15px);
        opacity: 1;
    }
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

@keyframes lineShift {
    0% {
        background-position: 0 0, 0 0, 0 0;
        opacity: 0.5;
    }
    50% {
        background-position: 60px 60px, 50px 50px, 70px 70px;
        opacity: 0.8;
    }
    100% {
        background-position: 120px 120px, 100px 100px, 140px 140px;
        opacity: 0.5;
    }
}

@keyframes floatRotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(15px) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
        opacity: 0.9;
    }
}

@keyframes overlayShift {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* Ensure content stays above animations */
.cta-section .container {
    position: relative;
    z-index: 10;
}

/* Enhanced text visibility for transparent background */
.cta-section h2 {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.cta-section .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-content {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(217, 70, 239, 0.05) 100%);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonial-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .testimonials-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-detail-card {
        padding: 1.5rem;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .culture-card {
        padding: 1.5rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .cta-content {
        padding: 2rem;
    }
}

/* --- STICKY SUB NAVS --- */
.sub-nav {
    position: sticky; 
    top: 90px; /* 80px header + 10px gap */
    z-index: 900;
        background-color: #000000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    padding: 1rem 0;
    transition: background 0.5s ease;
}
.sub-nav.visible { display: block; animation: slideDown 0.4s var(--ease-out-expo); }
.sub-nav-inner {
    max-width: var(--container-width); margin: 0 auto; padding: 0 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.sub-nav-title { font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; }
.sub-nav-links { display: flex; gap: 2rem; }
.sub-nav-links a {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
    color: #d1d5db; transition: color 0.3s;
}
.sub-nav-links a:hover, .sub-nav-links a.active { color: var(--color-accent); }
.back-btn { cursor: pointer; color: #fff; display: flex; align-items: center; gap: 8px; font-weight: 600; transition: transform 0.2s; }
.back-btn:hover { transform: translateX(-5px); color: var(--color-accent); }

@keyframes slideDown { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* --- BACKGROUND FX --- */
.glow-orb {
    position: absolute; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 0;
    animation: floatOrb 10s infinite alternate ease-in-out;
}
@keyframes floatOrb { 0% { transform: translate(0, 0); } 100% { transform: translate(40px, 40px); } }

/* --- LAYOUT UTILS --- */
main { 
    padding-top: 90px; /* Matches the gap + header height */
    min-height: 100vh; 
}

.page-view {
    display: none;
    opacity: 0; transition: opacity 0.5s ease;
}
.page-view.active { display: block; opacity: 1; animation: fadeInPage 0.6s var(--ease-out-expo); }

@keyframes fadeInPage { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }

.container { max-width: var(--container-width); margin: 0 auto; padding: 4rem 2rem; position: relative; z-index: 2; }

#service-detail .container, #sub-service-detail .container, #who .container {
    padding: 2rem 2rem; 
}

.section-dark { background-color: var(--color-dark); color: var(--color-text-main); position: relative; overflow: hidden; }

/* --- ANIMATION REVEAL --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease-out-expo); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* --- HOMEPAGE HERO --- */
.hero {
    height: 90vh; position: relative; display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    background-color: #000000;
}

/* UPDATED: REMOVED OPACITY AND BLEND MODE */
.hero-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; 
    z-index: 0;
    filter: brightness(0.5) contrast(1.2);
    transform: scale(1.1); animation: slowZoom 20s infinite alternate linear;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.1); } }

/* --- SERVICES SECTION (BLOGS) --- */
#services {
    background-color: #000000;
    color: #ffffff;
    border-top: 1px solid #1a1a1a;
}
#services h2 { color: #ffffff; }
#services p { color: #94a3b8; }

/* --- BLOG GRID (STATIC LAYOUT) --- */
.cards-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); 
    gap: 2rem; margin-top: 4rem;
    overflow-x: hidden; /* Hide overflow */
    padding-bottom: 20px;
}

.service-card {
    position: relative; height: 500px; border-radius: 8px; overflow: hidden; cursor: pointer;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: transform 0.5s var(--ease-out-expo);
    background: #000;
    min-width: 350px;
}

.service-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo), opacity 0.4s ease;
    opacity: 0.8;
}

.card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(1,1,5,0.95) 0%, rgba(1,1,5,0.4) 60%, rgba(1,1,5,0) 100%);
    display: flex; flex-direction: column; justify-content: flex-start; 
    padding: 3rem;
    padding-bottom: 3.5rem; /* Added extra padding to prevent clipping at bottom */
    transition: background 0.5s ease;
}

.card-title {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem); /* Reduced from 3.2rem for better fit */
    color: #ffffff; 
    margin-bottom: 0.5rem; 
    transition: all 0.4s ease;
    transform-origin: bottom left;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    width: 100%; /* Ensure it doesn't overflow container */
}

.card-points {
    list-style: none;
    max-height: 400px; /* GENERAL FALLBACK, overridden for SAP below */
    opacity: 0;
    overflow-y: hidden; /* REMOVED SCROLL FUNCTIONALITY */
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo);
    padding-right: 0; /* Removed padding for scrollbar */
    margin-top: 10px;
    margin-bottom: 1.5rem; 
}

.card-points li {
    position: relative; 
    padding-left: 2rem; 
    margin-bottom: 0.6rem; 
    font-size: 1.05rem; /* Increased from 0.9rem */
    color: #e2e8f0; line-height: 1.4; text-align: left;
}

.card-points li::before {
    content: '✔';
    color: var(--color-accent); 
    position: absolute; left: 0; top: 0px; 
    font-size: 1.1em; 
    font-weight: bold;
}

.card-link-container {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out-expo);
    margin-top: 0.5rem;
}
.card-link {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.card-link:hover { gap: 0.8rem; color: #fff; text-shadow: 0 0 15px var(--color-accent); }

.service-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 30px 60px rgba(217, 70, 239, 0.3); 
    z-index: 10;
}
.service-card:hover img { transform: scale(1.1); opacity: 0.3; }
.service-card:hover .card-overlay { 
    background: linear-gradient(to top, rgba(1,1,5,1) 0%, rgba(1,1,5,0.8) 100%); 
}
.service-card:hover .card-title { 
    transform: scale(0.9); 
    margin-bottom: 0.5rem; 
    color: #ffffff;
}
.service-card:hover .card-points { 
    max-height: 400px; 
    opacity: 1; 
    transform: translateY(0); 
}
.service-card:hover .card-link-container {
    opacity: 1; transform: translateY(0);
}

/* --- DETAIL PAGES (Common) --- */
.detail-hero {
    height: 50vh; 
    position: relative; display: flex; align-items: center; justify-content: center;
    text-align: center; margin-bottom: 2rem; 
    background-color: #000000;
}
.detail-hero img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.4) contrast(1.2); z-index: 1;
}
.detail-hero-text { position: relative; z-index: 2; max-width: 800px; padding: 0 2rem; }

/* REDUCED TITLE SIZE FOR DETAIL & SUB-DETAIL PAGES */
.detail-hero h1 {
    font-size: clamp(2rem, 5vw, 4.5rem); 
    margin-bottom: 1rem;
    line-height: 1.1;
}

/* =========================================
   PAGE 3: SUB-SERVICE "SMALL BOXES" - UPDATED ANIMATION
   ========================================= */
.boxes-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; margin-top: 3rem;
}

.info-box {
    position: relative;
    background: #0f111a;
    border-radius: 12px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    height: auto;
    min-height: 140px; /* Ensure enough space for title alone */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 1;
}

/* Animated Gradient Border Background */
.info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        var(--color-accent), 
        transparent 30%
    );
    animation: borderRotate 4s linear infinite;
    z-index: -2;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
}

/* Solid Background Mask to create the "Border" effect */
.info-box::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #0f111a;
    border-radius: 11px;
    z-index: -1;
    transition: background 0.4s ease;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(217, 70, 239, 0.2);
}

.info-box:hover::before {
    opacity: 1;
}

.info-box:hover::after {
    background: #14161f; /* Slightly lighter bg on hover for contrast */
}

.info-box h4 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 0; /* Remove margin since text is hidden below */
    position: relative;
    z-index: 2;
    transition: margin-bottom 0.4s ease;
}

.info-box p {
    color: #cbd5e1;
    font-size: 1rem; /* Smaller initially */
    margin-bottom: 0; 
    line-height: 1.6;
    position: relative;
    z-index: 2;
    
    /* Hidden State */
    opacity: 0;
    max-height: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--ease-out-expo);
    margin-top: 0;
}

.info-box:hover h4 {
    margin-bottom: 1.5rem; /* Add space when text appears */
    color: var(--color-accent); /* Title turns accent color */
}

.info-box:hover p {
    opacity: 1;
    max-height: 500px; /* Arbitrary large height for expansion */
    transform: translateY(0);
    font-size: 1.4rem; /* INCREASED FONT SIZE AS REQUESTED */
    font-weight: 300;
}

/* --- FOOTER --- */
footer { 
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #111111 100%); 
    color: #fff; 
    padding: 3rem 2rem 1.5rem; 
    border-top: 1px solid rgba(217, 70, 239, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(217, 70, 239, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 2rem; 
    max-width: var(--container-width); 
    margin: 0 auto; 
    position: relative;
    z-index: 1;
}

.footer-link { 
    color: #94a3b8; 
    display: block; 
    margin-bottom: 1rem; 
    font-size: 0.9rem; 
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), #6366f1);
    transition: width 0.3s ease;
}

.footer-link:hover { 
    color: var(--color-accent); 
    padding-left: 1rem;
}

.footer-link:hover::before {
    width: 0.5rem;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.contact-item:hover {
    color: var(--color-accent);
    background: rgba(217, 70, 239, 0.05);
    transform: translateX(5px);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.contact-item:hover svg {
    transform: scale(1.1);
}

.copyright { 
    text-align: center; 
    color: #475569; 
    font-size: 0.85rem; 
    border-top: 1px solid rgba(217, 70, 239, 0.1); 
    padding-top: 1rem; 
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .boxes-grid, .footer-grid { grid-template-columns: 1fr; }
    .nav-container { padding-left: 120px; }
    .logo img { height: 80px; }
    nav { display: none; }
    h1 { font-size: 2.5rem; }
}

/* =========================================
   REDESIGNED FIRM/WHO WE ARE PAGE
   ========================================= */

.who-wrapper {
    position: relative;
    background-color: #050505;
    overflow: hidden;
}

.dot-grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.who-hero {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    position: relative;
    padding: 4rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 4rem;
}

.who-hero-text { z-index: 2; }
.who-hero-text h1 {
    font-size: clamp(3.5rem, 5vw, 5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
}
.who-hero-text p.sub {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.who-hero-image-clip {
    position: relative;
    height: 500px;
    width: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    overflow: hidden;
    z-index: 2;
}

.who-hero-image-clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.who-hero-image-clip:hover img {
    transform: scale(1.05);
}

.tech-decoration {
    position: absolute;
    font-family: monospace;
    color: rgba(255,255,255,0.1);
    font-size: 0.8rem;
    z-index: 1;
}
.dec-1 { top: 20%; left: 2rem; }
.dec-2 { bottom: 20%; right: 2rem; text-align: right; }

.mv-section { padding: 4rem 2rem; position: relative; z-index: 2; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: var(--container-width); margin: 0 auto; }

.holo-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.holo-card::before {
    content: ""; position: absolute; inset: 0; border-radius: 16px; padding: 2px;
    background: linear-gradient(45deg, var(--color-accent), transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0); /* Fixed syntax: removed comma */
    -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.4s ease;
}
.holo-card:hover::before { opacity: 1; }
.holo-card h3 { font-size: 1.8rem; color: #fff; margin-bottom: 1rem; position: relative; z-index: 2; }
.holo-card p { color: #cbd5e1; position: relative; z-index: 2; line-height: 1.6; }

.icon-badge {
    display: inline-block; width: 50px; height: 50px;
    background: rgba(255,255,255,255,0.05); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; position: relative; z-index: 2;
}
.icon-badge svg { width: 24px; height: 24px; stroke: var(--color-accent); stroke-width: 2; }

.values-section { padding: 6rem 2rem; position: relative; z-index: 2; }
.values-header { max-width: var(--container-width); margin: 0 auto 4rem auto; text-align: center; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: var(--container-width); margin: 0 auto; }

.value-card {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem; border-radius: 12px;
    position: relative; overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 70, 239, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.value-num-bg {
    position: absolute; top: -20px; right: -20px;
    font-size: 8rem; font-weight: 900; color: rgba(255,255,255,0.03);
    line-height: 1; z-index: 1; transition: color 0.4s ease;
}
.value-card:hover .value-num-bg { color: rgba(217, 70, 239, 0.05); }
.value-card h3 { color: #fff; margin-bottom: 1rem; position: relative; z-index: 2; }
.value-card p { color: #94a3b8; font-size: 1rem; position: relative; z-index: 2; }

.stats-strip { background: #000; border-top: 1px solid #1a1a1a; padding: 4rem 0; }
.stats-container { display: flex; justify-content: space-around; max-width: var(--container-width); margin: 0 auto; flex-wrap: wrap; gap: 2rem; }
.stat-item { text-align: center; flex: 1; min-width: 150px; }
.stat-item .num { font-size: 3.5rem; font-weight: 800; color: #fff; display: block; line-height: 1; margin-bottom: 0.5rem; }
.stat-item .label { color: var(--color-accent); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

@media (max-width: 768px) {
    .who-hero { grid-template-columns: 1fr; text-align: center; }
    .who-hero-image-clip { height: 350px; order: -1; clip-path: none; border-radius: 12px; }
    .mv-grid, .values-grid { grid-template-columns: 1fr; }
    .tech-decoration { display: none; }
}

/* =========================================
   OUTCOMES SECTION
   ========================================= */

#s-outcomes {
    background: #000000;
    padding: 8rem 2rem;
    position: relative;
}

.outcomes-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.outcomes-header {
    text-align: center;
    margin-bottom: 5rem;
}

.outcomes-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.outcomes-header p {
    color: #94a3b8;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.outcomes-narrative h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.outcomes-narrative p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.outcomes-checklist {
    background: #0f111a;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.check-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.check-icon {
    min-width: 40px; height: 40px;
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.check-content h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.check-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .outcomes-grid { grid-template-columns: 1fr; }
    .outcomes-header h2 { font-size: 2rem; }
}

.detail-back-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
.detail-back-btn:hover { color: var(--color-accent); transform: translateX(-5px); }

/* =========================================
   REDESIGNED CONNECT PAGE (GLASSMORPHISM)
   ========================================= */

.connect-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050505;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
}
.shape-1 { width: 400px; height: 400px; background: var(--color-primary); top: -100px; left: -100px; animation: floatOrb 15s infinite alternate; }
.shape-2 { width: 300px; height: 300px; background: var(--color-accent); bottom: -50px; right: -50px; animation: floatOrb 12s infinite alternate-reverse; }

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    align-items: center;
}

.connect-visual {
    padding-right: 2rem;
}

.connect-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.connect-subtitle {
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    display: block;
}

.connect-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.connect-points { margin-bottom: 2rem; }
.cp-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; color: #cbd5e1; }
.cp-item span { color: var(--color-accent); font-weight: bold; }

.connect-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    width: 100%;
}

.connect-form-card h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
}

.c-form-group {
    position: relative;
    margin-bottom: 2rem;
}

.c-input {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #334155;
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.3s ease;
}

.c-label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: #64748b;
    pointer-events: none;
    transition: 0.3s ease all;
    font-size: 1rem;
}

.c-form-group:focus-within .c-label,
.c-input:not(:placeholder-shown) + .c-label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--color-accent);
}

.c-form-group:focus-within .c-input,
.c-input:focus {
    border-bottom-color: var(--color-accent);
}

.submit-btn-wrapper {
    margin-top: 1rem;
    text-align: center;
}

.submit-btn-wrapper button {
    width: 100%;
}

@media (max-width: 900px) {
    .connect-grid { grid-template-columns: 1fr; text-align: center; }
    .connect-visual { padding-right: 0; margin-bottom: 3rem; }
}

/* --- LEADERSHIP SECTION --- */
.leadership-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(217, 70, 239, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.leadership-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.leader-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #6366f1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 20px 40px rgba(217, 70, 239, 0.15);
}

.leader-card:hover::before {
    transform: scaleX(1);
}

.leader-image {
    width: 100%;
    height: 50px;
    border-radius: 0;
    overflow: hidden;
    margin: 0 0 1.5rem 0;
    border: 3px solid rgba(217, 70, 239, 0.2);
    transition: all 0.4s ease;
}

.leader-card:hover .leader-image {
    border-color: var(--color-accent);
    transform: scale(1.02);
}

.leader-image img {
    width: 100%;
    height: 50%;
    object-fit: cover;
}

.leader-info {
    text-align: center;
}

.leader-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.leader-title {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.leader-bio {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.leader-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.leader-social a {
    width: 40px;
    height: 40px;
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
}

.leader-social svg {
    width: 18px;
    height: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .leadership-section {
        padding: 4rem 1rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .leader-card {
        padding: 1.5rem;
    }
    
    .leader-image {
        height: 80px;
    }
    
    .leader-info h3 {
        font-size: 1.3rem;
    }
}

/* --- MOBILE HAMBURGER MENU --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: rgba(0, 0, 0, 0.8);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 17, 26, 0.98) 0%, rgba(6, 6, 6, 0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 2rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-nav.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav ul {
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    font-weight: 600;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 0;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    cursor: pointer;
    position: relative;
}

.mobile-dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(180deg);
    opacity: 1;
}

.mobile-dropdown-menu {
    display: none;
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-section {
    margin-bottom: 1.5rem;
}

.mobile-dropdown-section h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-dropdown-section ul {
    list-style: none;
    padding: 0;
}

.mobile-dropdown-section li {
    margin-bottom: 0.5rem;
}

.mobile-dropdown-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-dropdown-section a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
    }
    
    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-container {
        padding-left: 1rem;
        padding-right: 4rem;
    }
}

/* --- BLOG PAGE STYLES --- */
.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.article-image {
    border-radius: 16px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-category {
    background: var(--color-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.article-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.article-meta span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.read-more {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-accent);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    background: rgba(217, 70, 239, 0.2);
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.blog-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.blog-card-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-meta span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.blog-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    transform: translateX(5px);
}

.newsletter-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(76, 29, 149, 0.1));
    border-radius: 20px;
    margin-bottom: 4rem;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* --- CASE STUDIES PAGE STYLES --- */
.case-studies-header {
    text-align: center;
    margin-bottom: 4rem;
}

.case-studies-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.featured-case {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.case-image {
    border-radius: 16px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-header {
    margin-bottom: 2rem;
}

.industry-tag {
    background: var(--color-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
}

.case-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(217, 70, 239, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(217, 70, 239, 0.3);
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.case-outcomes h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.case-outcomes ul {
    list-style: none;
    padding: 0;
}

.case-outcomes li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    border-left: 3px solid var(--color-accent);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.case-outcomes li:hover {
    padding-left: 1rem;
    background: rgba(217, 70, 239, 0.1);
}

.case-testimonial {
    background: rgba(217, 70, 239, 0.1);
    border-left: 4px solid var(--color-accent);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.case-testimonial blockquote {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.case-testimonial cite {
    color: var(--color-accent);
    font-weight: 600;
    font-style: normal;
}

.case-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.case-link:hover {
    transform: translateX(5px);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.case-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-accent);
}

.case-card-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-card-image img {
    transform: scale(1.05);
}

.case-industry {
    background: rgba(217, 70, 239, 0.2);
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.case-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.case-card-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.highlight {
    text-align: center;
    padding: 1rem;
    background: rgba(217, 70, 239, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(217, 70, 239, 0.3);
}

.highlight-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.3rem;
}

.highlight-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-card-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.case-card-link:hover {
    transform: translateX(5px);
}

.case-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(76, 29, 149, 0.1));
    border-radius: 20px;
    margin-bottom: 4rem;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Blog & Case Studies */
@media (max-width: 768px) {
    .featured-article,
    .featured-case {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .case-metrics {
        grid-template-columns: 1fr;
    }
    
    .case-highlights {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}
    
    .logo {
        position: static;
        transform: none;
        left: 0;
        top: auto;
    }
    
    .logo img {
        height: 60px;
    }
    
    header {
        height: 70px;
    }

/* --- LEADERSHIP SECTION STYLES --- */
.leadership-section {
    padding: 6rem 2rem;
    background: #000000;
}

.leadership-header {
    text-align: center;
    margin-bottom: 4rem;
}

.leadership-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.leadership-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.leader-card {
    background: #000000;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
    border-color: var(--color-accent);
}

.leader-image {
    width: 400px;
    height: 180px;
    max-width: 100%;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid var(--color-accent);
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
    background: #000;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-content {
    text-align: center;
}

.leader-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.leader-bio {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.leader-social {
    margin-top: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.4rem 0.7rem;
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(12px);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%, 8px 50%);
    position: relative;
    overflow: hidden;
}

.linkedin-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.3), rgba(76, 29, 149, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.linkedin-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 70, 239, 0.4);
}

.linkedin-link:hover::before {
    opacity: 1;
}

.linkedin-link svg {
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.linkedin-link:hover svg {
    transform: scale(1.05);
    filter: brightness(0) invert(1);
}

/* Responsive Design for Leadership Section */
@media (max-width: 768px) {
    .leadership-section {
        padding: 4rem 1rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leader-card {
        padding: 1.5rem;
    }
    
    .leader-image {
        width: 300px;
        height: 300px;
    }
    
    .leader-content h3 {
        font-size: 1.2rem;
    }
    
    .leadership-header h2 {
        font-size: 2rem;
    }
}
