/* JSV Tech Flux - Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --primary: #4F46E5;
    --primary-dark: #4338ca;
    --secondary: #ec4899;
    --accent: #8b5cf6;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-800: #1e293b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --gradient-soft: linear-gradient(135deg, #f0fdf4 0%, #fff7ed 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 15px rgba(79, 70, 229, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.025em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ========================================
   CSS VARIABLES (DESIGN TOKENS)
   ======================================== */
/* Defined in :root above - these override/extend Bootstrap's CSS variables */

/* ========================================
   BOOTSTRAP OVERRIDES & EXTENSIONS
   ======================================== */

/* Extend Bootstrap buttons with custom brand styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
    font-size: 1rem;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid rgba(255,255,255,0.5);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Global Utilities */
.ls-1 { letter-spacing: 1px; }
.ls-neg-2 { letter-spacing: -2px; }
.fs-sm { font-size: 0.875rem; }
.uppercase { text-transform: uppercase; }
.mw-900 { max-width: 900px; }
.mw-700 { max-width: 700px; }
.mw-600 { max-width: 600px; }
.mt-n-4 { margin-top: -4rem; }
.bg-white-90 { background: rgba(255, 255, 255, 0.9); }
.border-white-50 { border: 1px solid rgba(255, 255, 255, 0.5); }
.bg-accent { background: var(--accent); }
.bg-indigo-100 { background-color: #e0e7ff; }

/* Grid System */
.grid { display: grid !important; }
.grid-cols-auto-fit-280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-cols-auto-fit-300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { animation-delay: 100ms; transition-delay: 100ms; }
.delay-200 { animation-delay: 200ms; transition-delay: 200ms; }
.delay-300 { animation-delay: 300ms; transition-delay: 300ms; }
.delay-400 { animation-delay: 400ms; transition-delay: 400ms; }

/* ========================================
   BOOTSTRAP INTEGRATION RULES
   ========================================
   1. Bootstrap 5 loads FIRST (in header.php)
   2. This file loads AFTER Bootstrap
   3. We extend Bootstrap, not replace it
   4. Use CSS variables for theme colors
   5. Avoid !important unless absolutely necessary
   ======================================== */

/* Navbar - Extending Bootstrap navbar component */
.navbar {
    padding: 1rem 0;
    transition: padding 0.3s ease, background-color 0.3s ease;
}

/* Shrink navbar on scroll (desktop) */
.navbar.scrolled {
    /* Use specific selector to override Bootstrap without !important */
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0.5rem 0; /* Shrink padding */
}

/* Shrink logo when scrolled */
.navbar.scrolled .navbar-brand img {
    max-height: 32px !important;
}

/* Remove sticky on mobile - better UX */
@media (max-width: 991px) {
    .navbar.fixed-top {
        position: relative !important;
    }
}

/* Navbar brand customizations */
.navbar-brand img {
    max-height: 40px !important; /* Desktop: constrain logo */
    height: auto;
    width: auto;
    transition: var(--transition-base);
}

/* Mobile logo smaller */
@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 30px !important; /* Mobile: even smaller */
    }
}

/* Nav link styling - extends Bootstrap .nav-link */
.nav-link {
    font-weight: 500;
    color: var(--gray-500);
    transition: var(--transition-base);
}

/* Override Bootstrap's default link color */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}


/* Bootstrap 5 Dropdown Component is used - custom dropdown removed */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: #f8fafc;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.25) 0%, rgba(124, 58, 237, 0) 70%);
    filter: blur(120px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -20%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.15) 0%, rgba(236, 72, 153, 0) 70%);
    filter: blur(120px);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -50px); }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================
   Bootstrap 5 Breakpoints:
   - xs: <576px (mobile)
   - sm: ≥576px (large mobile)
   - md: ≥768px (tablet)
   - lg: ≥992px (desktop)
   - xl: ≥1200px (large desktop)
   ======================================== */

/* Base styles are mobile-first (320px+) */

/* Typography - Mobile First */
h1 { 
    font-size: 2rem; /* Mobile: 32px */
    line-height: 1.2;
}

h2 { 
    font-size: 1.75rem; /* Mobile: 28px */
    line-height: 1.3;
}

h3 { 
    font-size: 1.5rem; /* Mobile: 24px */
}

/* Scale up typography for larger screens */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; } /* Tablet: 40px */
    h2 { font-size: 2rem; } /* Tablet: 32px */
    h3 { font-size: 1.75rem; } /* Tablet: 28px */
}

@media (min-width: 992px) {
    h1 { font-size: 3.5rem; } /* Desktop: 56px */
    h2 { font-size: 2.5rem; } /* Desktop: 40px */
    h3 { font-size: 2rem; } /* Desktop: 32px */
}

/* Section Padding - Mobile First */
.section {
    padding: 3rem 0; /* Mobile: smaller padding */
}

@media (min-width: 768px) {
    .section {
        padding: 4rem 0; /* Tablet */
    }
}

@media (min-width: 992px) {
    .section {
        padding: 6rem 0; /* Desktop */
    }
}

/* Hero Section - Mobile Adjustments */
.hero {
    min-height: auto; /* Remove fixed height on mobile */
    padding-top: 5rem; /* Reduced from 6rem - logo is smaller now */
    padding-bottom: 3rem;
    text-align: center; /* Center on mobile */
}

@media (min-width: 768px) {
    .hero {
        min-height: 80vh;
        padding-top: 6rem; /* Moderate padding for tablet */
        text-align: left; /* Left align on desktop */
    }
}

@media (min-width: 992px) {
    .hero {
        min-height: 100vh;
        padding-top: 6rem; /* Less padding needed with smaller logo */
    }
}

/* Images - Responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Card Spacing - Mobile adjustments */
.card {
    margin-bottom: 1.5rem; /* Mobile spacing */
}

@media (min-width: 768px) {
    .card {
        margin-bottom: 0; /* Bootstrap grid handles spacing */
    }
}

/* Button responsive sizing */
.btn {
    padding: 0.625rem 1.25rem; /* Mobile: slightly smaller */
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .btn {
        padding: 0.75rem 1.75rem; /* Desktop: original size */
        font-size: 1rem;
    }
}

/* Navbar - Mobile specific */
.navbar {
    padding: 0.75rem 0; /* Mobile: compact */
}

@media (min-width: 992px) {
    .navbar {
        padding: 1.25rem 0; /* Desktop: more spacious */
    }
}

/* Ensure navbar toggler is visible on mobile */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary);
}

/* Fix collapsed navbar spacing */
.navbar-collapse {
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .navbar-collapse {
        margin-top: 0;
    }
}

/* Mobile menu styling */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-item {
        padding: 0.5rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .dropdown-menu {
        border: none;
        padding-left: 1rem;
    }
}

/* Process Section - Mobile First */
.process-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: stack vertically */
    gap: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
    }
}

@media (min-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(6, 1fr); /* Large desktop: 6 columns */
    }
}

.process-step {
    position: relative;
    padding-top: 2rem;
}

/* Connector Line - hide on mobile, show on desktop */
.process-step::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
    display: none; /* Hidden on mobile */
}

@media (min-width: 1200px) {
    .process-step::before {
        display: block; /* Show connector on large screens */
    }
    
    .process-step:last-child::before {
        display: none;
    }
}

.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1rem;
    transition: var(--transition-base);
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--light); /* Matches section bg */
    color: var(--primary);
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: var(--transition-base);
}

.process-step:hover .step-badge {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}

/* Icon styling update handled by inline styles in index.php, but let's ensure hover affects icon too if needed */
.process-step:hover .fa-search,
.process-step:hover .fa-pencil-ruler,
.process-step:hover .fa-code,
.process-step:hover .fa-vial,
.process-step:hover .fa-rocket,
.process-step:hover .fa-chart-line {
    transform: scale(1.1);
    transition: var(--transition-base);
}

/* Global Presence Map */
.map-container {
    position: relative;
    height: 450px;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg'); /* Placeholder for specific map */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
    animation: pulse 2s infinite;
    cursor: pointer;
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    transform: translateY(-10px);
}

.marker-tooltip {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
    z-index: 10;
}

.marker-avatar {
    position: absolute;
    top: -30px;
    left: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: var(--gray-200);
    overflow: hidden;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

/* Flag Slider */
.flag-slider {
    overflow: hidden;
    padding: 2rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    white-space: nowrap;
}

.flag-track {
    display: inline-flex;
    gap: 4rem;
    animation: scroll 20s linear infinite;
}

.flag-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    font-size: 0.875rem;
}

.flag-img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Team Section - Responsive */
.team-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 350px; /* Mobile: smaller height */
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .team-card {
        height: 400px; /* Desktop: taller */
    }
}

.team-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem; /* Mobile: less padding */
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    opacity: 1; 
    transition: var(--transition-base);
}

@media (min-width: 768px) {
    .team-overlay {
        padding: 2rem; /* Desktop: more padding */
    }
}

.team-info {
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.team-card:hover .team-info {
    transform: translateY(0);
}

.team-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);

transform: scale(1.1);
    transition: var(--transition-base);
}

/* Global Presence Map */
.map-container {
    position: relative;
    height: 450px;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg'); /* Placeholder for specific map */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
    animation: pulse 2s infinite;
    cursor: pointer;
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    transform: translateY(-10px);
}

.marker-tooltip {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
    z-index: 10;
}

.marker-avatar {
    position: absolute;
    top: -30px;
    left: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: var(--gray-200);
    overflow: hidden;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

/* Flag Slider */
.flag-slider {
    overflow: hidden;
    padding: 2rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    white-space: nowrap;
}

.flag-track {
    display: inline-flex;
    gap: 4rem;
    animation: scroll 20s linear infinite;
}

.flag-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    font-size: 0.875rem;
}

.flag-img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Team Section - Responsive */
.team-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 350px; /* Mobile: smaller height */
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .team-card {
        height: 400px; /* Desktop: taller */
    }
}

.team-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem; /* Mobile: less padding */
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    opacity: 1; 
    transition: var(--transition-base);
}

@media (min-width: 768px) {
    .team-overlay {
        padding: 2rem; /* Desktop: more padding */
    }
}

.team-info {
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.team-card:hover .team-info {
    transform: translateY(0);
}

.team-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.1);
}
/* Pricing Card V2 - New Design */
.pricing-card-v2 {
    background: var(--white);
    border-radius: 1.5rem; /* Rounded corners */
    border: 2px solid transparent; /* Base border */
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Modifiers for colors */
.pricing-card-orange {
    border-color: #fdba74; /* Orange border */
}

.pricing-card-blue {
    border-color: #3b82f6; /* Blue border */
}

.pricing-card-dark-orange {
    border-color: #ea580c; /* Darker Orange border */
}

.pricing-header-v2 {
    background-color: #0f172a; /* Dark background */
    color: var(--white);
    padding: 2rem;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Diagonal Accent in Header */
.pricing-header-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: 1;
}

.pricing-card-orange .pricing-header-accent { background-color: #fdba74; }
.pricing-card-blue .pricing-header-accent { background-color: #3b82f6; }
.pricing-card-dark-orange .pricing-header-accent { background-color: #ea580c; }

.pricing-title-v2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.pricing-price-v2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.pricing-price-gst {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-body-v2 {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-feature-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.pricing-feature-icon {
    margin-top: 4px;
}

/* Icon colors matching card */
.pricing-card-orange .pricing-feature-icon { color: #c2410c; }
.pricing-card-blue .pricing-feature-icon { color: #2563eb; }
.pricing-card-dark-orange .pricing-feature-icon { color: #ea580c; }

.pricing-btn-v2 {
    width: 100%;
    margin-top: auto;
    text-align: center;
    border-radius: 0 0 var(--radius-md) var(--radius-md); /* Just fallback */
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Button styles specific to card */
.pricing-card-orange .pricing-btn-v2 {
    background: transparent;
    color: #c2410c;
    border: 1px solid #c2410c;
}
.pricing-card-orange .pricing-btn-v2:hover {
    background: #c2410c;
    color: white;
}

.pricing-card-blue .pricing-btn-v2 {
    background: #3b82f6;
    color: white;
    border: 1px solid #3b82f6;
}
.pricing-card-blue .pricing-btn-v2:hover {
    background: #2563eb;
}

.pricing-card-dark-orange .pricing-btn-v2 {
    background: #ea580c;
    color: white;
    border: 1px solid #ea580c;
}

/* Refactored Utility & Component Classes */

/* General Utilities */
.section-light { background: var(--light); }
.mb-4-rem { margin-bottom: 4rem; }
.text-spacing-1 { letter-spacing: 1px; }

/* FAQ Section Classes */
.faq-accordion { width: 100%; }
.faq-item-styled {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-header-styled {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-body-styled {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}
.faq-text {
    color: var(--gray-500);
    padding-bottom: 1.5rem;
    margin: 0;
    line-height: 1.7;
}

/* Specific Pricing & Badge Styling */
.badge-popular {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
}
.badge-popular-primary { background: var(--primary); }
.pricing-card-v2[style*="scale"], .pricing-card-popular {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-xl);
}

/* App Development Page Styles */
.text-italic-gray {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Expertise / Tech Stack Section */
.tech-stack-container {
    padding: 1.5rem; /* Replaces inline gap equivalent padding if needed or just use Bootstrap g-4 on row */
}
.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.font-weight-600 { font-weight: 600; }

/* Tech Icons */
.tech-icon-swift { color: #F05138; }
.tech-icon-android { color: #3DDC84; }
.tech-icon-flutter { color: #4285F4; }
.tech-icon-react { color: #61DAFB; }
.tech-icon-laravel { color: #FF2D20; }
.tech-icon-node { color: #339933; }

/* Abstract Code Graphic */
.code-graphic-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.code-graphic-bg {
    background: var(--white);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.code-snippet {
    font-family: monospace;
    font-size: 14px;
    opacity: 0.7;
    color: var(--primary);
}
.graphic-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary);
    opacity: 0.2;
}

/* Graphic Shapes */
.graphic-shape-bar {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 10px;
}
.graphic-shape-icon {
    position: absolute;
    top: 40%;
    left: 40%;
    color: #166534;
    opacity: 0.5;
}
.graphic-shape-box-left {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #166534;
    border-radius: 10px;
    opacity: 0.8;
}
.graphic-shape-circle-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #059669;
    border-radius: 50%;
    opacity: 0.8;
}

/* Enterprise List Icons & Button */
.check-icon-teal { color: #0d9488; margin-top: 4px; }
.btn-teal {
    background: #0d9488;
    color: white;
    width: 100%;
    margin-top: 2rem;
    text-align: center;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    transition: all 0.3s ease;
}

/* Animation Keyframes */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.step-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

/* expertise Cards Design */
.expertise-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-header {
    margin-bottom: 1.5rem;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.1) rotate(5deg);
}

.expertise-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.expertise-body p {
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Variants */
.exp-blue .expertise-icon {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}
.exp-blue:hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(255,255,255,1) 100%);
    box-shadow: 0 20px 40px -15px rgba(79, 70, 229, 0.15);
}

.exp-pink .expertise-icon {
    background: rgba(236, 72, 153, 0.1);
    color: var(--secondary);
}
.exp-pink:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(255,255,255,1) 100%);
    box-shadow: 0 20px 40px -15px rgba(236, 72, 153, 0.15);
}

.exp-purple .expertise-icon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent);
}
.exp-purple:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(255,255,255,1) 100%);
    box-shadow: 0 20px 40px -15px rgba(139, 92, 246, 0.15);
}

/* Why Choose Us Section */
.feature-list-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition-smooth);
    cursor: default;
}

.feature-list-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.feature-list-card:hover .feature-icon-box {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary) !important;
    color: var(--white) !important;
}

.why-choose-graphic-container {
    padding: 2rem;
    position: relative;
}

.why-choose-graphic-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.why-choose-img {
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
    animation: float-slow 6s infinite ease-in-out;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.badge-soft {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Portfolio / Work Page Styles */
.work-hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
    background: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    height: 480px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-100);
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.portfolio-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.1) 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition-base);
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-title {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    transform: translateY(15px);
    opacity: 0;
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.portfolio-card:hover .portfolio-category,
.portfolio-card:hover .portfolio-title {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9375rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.2s;
}

.portfolio-card:hover .portfolio-cta {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-cta i {
    transition: transform 0.3s ease;
}

.portfolio-cta:hover i {
    transform: translateX(5px);
}

/* Portfolio Stats */
.portfolio-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .portfolio-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .portfolio-stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.stat-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

/* Filter Buttons Enhancements */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    border: 1px solid var(--gray-200);
    background: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    transform: translateY(-2px);
}

/* UI Utility Classes */
.mw-800 { max-width: 800px; }
.mw-600 { max-width: 600px; }
.mw-1000 { max-width: 1000px; }
.mw-900 { max-width: 900px; }

.h-400 { height: 400px; }

.text-success-alt { color: #10b981 !important; }

.bg-soft-primary { background: rgba(79, 70, 229, 0.08) !important; }
.bg-soft-pink { background: rgba(236, 72, 153, 0.08) !important; }
.bg-soft-purple { background: rgba(139, 92, 246, 0.08) !important; }

/* Process Steps */
.process-step-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    font-size: 1.25rem;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    z-index: 10;
}

.hero-shape-blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    border-radius: 50%;
}

.blob-primary { background: rgba(79, 70, 229, 0.15); }
.blob-secondary { background: rgba(236, 72, 153, 0.1); }

.blob-lg { width: 400px; height: 400px; }
.blob-md { width: 300px; height: 300px; }

.blob-top-right { top: -100px; right: -50px; }
.blob-bottom-left { bottom: 50px; left: -50px; }

.delay-n5 { animation-delay: -5s; }

/* Site Footer */
.site-footer {
    position: relative;
    background: var(--dark);
    color: var(--white);
    padding: 6rem 0 2rem;
    overflow: hidden;
    border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.footer-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(var(--gray-500) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    /*margin-bottom: 2rem;*/
}

.footer-logo {
    height: 45px;
    width: auto;
}

.footer-brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.footer-desc {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-400);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition-base);
    font-size: 0.9375rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-newsletter-text {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    width: 100%;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Pre-Footer CTA Sync */
.pre-footer-cta {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}


.pre-footer-cta .text-white-op {
    color: var(--gray-400);
}

/* ========================================
   OUR TEAM PAGE STYLES
   ======================================== */

:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Animated Hero Background */
.team-hero.animated-hero {
    background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.1), transparent 60%),
        radial-gradient(circle at 10% 10%, rgba(236, 72, 153, 0.1), transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(16, 185, 129, 0.1), transparent 50%);
    animation: pulseGradient 10s ease-in-out infinite alternate;
    padding-top: 10rem;
    padding-bottom: 8rem;
    overflow: hidden;
    position: relative;
}

@keyframes pulseGradient {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* 3D Tilt Effect Classes */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.1s ease;
}

.tilt-content {
    transform: translateZ(20px);
}

/* Leadership Card Refinements */
.leadership-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-2xl);
    border-radius: 2rem;
    overflow: hidden;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}

@media (max-width: 991px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

.leadership-img-wrapper {
    position: relative;
    min-height: 500px;
}

.leadership-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.2), transparent);
}

.leadership-content {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .leadership-content {
        padding: 3rem 2rem;
    }
}

.leadership-content h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.leadership-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.leadership-quote {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    font-style: italic;
}

/* Stats Counter */
.leadership-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--light);
    padding-top: 2rem;
}

@media (max-width: 576px) {
    .leadership-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

.stat-number {
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Values Section */
.values-section {
    background: var(--dark);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.values-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 30px 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 1.5rem;
    transition: transform 0.3s;
    cursor: pointer;
}

.value-card:hover {
    background: rgba(255,255,255,0.08);
}

.value-icon {
    background: linear-gradient(to right, #4f46e5, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
}

/* Expert Card */
.expert-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.expert-img-box {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.expert-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.expert-card:hover .expert-img-box img {
    transform: scale(1.1);
}

.expert-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.expert-card:hover .expert-overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-glass {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-glass:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.1);
}

.expert-content {
    padding: 1.5rem 2rem;
}

.expert-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.expert-role {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Floating Shapes */
.hero-rotate-shape {
    position: absolute;
    filter: blur(50px);
    z-index: -1;
    animation: float-rotate 6s ease-in-out infinite;
}

.shape-1 {
    background: rgba(79, 70, 229, 0.2);
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.shape-2 {
    background: rgba(236, 72, 153, 0.15);
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -50px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: -3s;
}

@keyframes float-rotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.separator-line {
    width: 60px;
    height: 3px;
    margin: 1.5rem auto;
}

.pre-footer-cta .hero-bg {
    opacity: 0.3;
}

.pre-footer-cta .hero-blob {
    opacity: 0.1;
}

.cta-blob-1 {
    top: -100px;
    right: -50px;
}

.cta-blob-2 {
    bottom: -100px;
    left: -50px;
}

.pre-footer-cta h2 {
    color: var(--white);
}

.pre-footer-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.pre-footer-cta .btn-primary:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.pre-footer-cta .btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.pre-footer-cta .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

