/* =============================================
   RiskCapCom - Professional Website Stylesheet
   Version: 2.0
   Author: RiskCapCom Development Team
   ============================================= */

/* =============================================
   1. CSS Variables & Root Definitions
   ============================================= */

/* Ensure all sections are visible by default */
section {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Fallback for loading issues */
body.loading-fallback section {
    animation: none !important;
    transition: none !important;
}

/* Force visibility for critical sections */
#home, #about, #services, #team, #insights, #contact {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}
:root {
    /* Primary Color Palette */
    --primary-navy: #001f3f;
    --primary-blue: #0056b3;
    --primary-light: #4a90e2;
    --accent-blue: #007bff;
    --accent-dark: #004085;
    
    /* Secondary Colors */
    --secondary-green: #28a745;
    --secondary-orange: #fd7e14;
    --secondary-red: #dc3545;
    --secondary-yellow: #ffc107;
    --secondary-purple: #6f42c1;
    --secondary-teal: #20c997;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    --gradient-light: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 31, 63, 0.95) 0%, rgba(0, 86, 179, 0.95) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    
    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;
    --fs-5xl: 3rem;
    --fs-6xl: 3.75rem;
    --fs-7xl: 4.5rem;
    --fs-8xl: 6rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --spacing-5xl: 8rem;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    --transition-slower: 700ms ease-in-out;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* =============================================
   2. Global Styles & Resets
   ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

/* =============================================
   3. Preloader
   ============================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-slow);
}

.preloader-wrapper {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto 20px;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-blue);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    animation-delay: -1.0s;
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
    }
}

.preloader-text {
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--primary-navy);
    letter-spacing: 2px;
}

/* =============================================
   3.5. Expertise Cards
   ============================================= */
.expertise-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: -0.025em;
}

.expertise-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.expertise-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.expertise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.expertise-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6, #1e40af);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.expertise-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

/* Banking Veterans Icon */
.expertise-card:nth-child(1) .expertise-icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.expertise-card:nth-child(1) .expertise-icon i {
    color: #d97706;
}

.expertise-card:nth-child(1):hover .expertise-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.expertise-card:nth-child(1):hover .expertise-icon i {
    color: #ffffff;
    transform: scale(1.2);
}

/* AI Geniuses Icon */
.expertise-card:nth-child(2) .expertise-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.expertise-card:nth-child(2) .expertise-icon i {
    color: #3b82f6;
}

.expertise-card:nth-child(2):hover .expertise-icon {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.expertise-card:nth-child(2):hover .expertise-icon i {
    color: #ffffff;
    transform: scale(1.2);
}

/* Cross-Industry Innovators Icon */
.expertise-card:nth-child(3) .expertise-icon {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-color: rgba(147, 51, 234, 0.2);
}

.expertise-card:nth-child(3) .expertise-icon i {
    color: #9333ea;
}

.expertise-card:nth-child(3):hover .expertise-icon {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.expertise-card:nth-child(3):hover .expertise-icon i {
    color: #ffffff;
    transform: scale(1.2);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 86, 179, 0.2);
}

.expertise-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.expertise-card-description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* =============================================
   4. Navigation
   ============================================= */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    overflow: visible; /* Changed from hidden to visible to allow dropdown to show */
}

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

.navbar:hover::before {
    left: 100%;
}

.navbar.navbar-scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo-img {
    height: 2.5rem;
    width: auto;
    transition: all var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(0, 86, 179, 0.2));
    position: relative;
}

.navbar-brand:hover .brand-logo-img {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(0, 86, 179, 0.3));
}

.navbar-brand {
    position: relative;
    transition: all var(--transition-base);
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
    border-radius: var(--radius-full);
}

.navbar-brand:hover::after {
    width: 100%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}



.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.2rem;
    margin: 0 0.1rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.2px;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
    background: rgba(0, 86, 179, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.15);
}

.navbar-nav .nav-link.active {
    color: var(--primary-blue);
    background: rgba(0, 86, 179, 0.12);
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.2);
    font-weight: 700;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Ensure dropdown container has proper positioning */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: 0.75rem;
    margin-top: 0.5rem;
    animation: dropdownFadeIn var(--transition-fast);
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10000; /* Higher z-index to appear above other content */
    position: absolute;
    min-width: 200px;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.1), transparent);
    transition: left 0.4s ease;
    z-index: -1;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    transition: all var(--transition-base);
}

.dropdown-item:hover i {
    transform: scale(1.1);
    color: var(--white);
}

.btn-nav {
    padding: 0.75rem 1.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

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

.btn-nav:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 86, 179, 0.5);
    color: var(--white);
    background: var(--gradient-primary);
}

.btn-nav span {
    position: relative;
    z-index: 2;
}

/* Navbar toggler effects */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.navbar-toggler:hover {
    transform: scale(1.05);
    background: rgba(0, 86, 179, 0.1);
}

.navbar-toggler-icon {
    transition: all var(--transition-base);
}

.navbar-toggler:hover .navbar-toggler-icon {
    transform: rotate(90deg);
}

/* Navigation responsive fixes */
@media (max-width: 991px) {
    .navbar-nav {
        gap: 0.25rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        margin: 0.1rem 0;
    }
    
    .btn-nav {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
        min-width: 120px;
    }
    

    
    .brand-logo-img {
        height: 2.2rem;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        text-align: center;
    }
    
    .btn-nav {
        width: 100%;
        margin-top: 0.5rem;
        text-align: center;
    }
    
    .brand-logo-img {
        height: 2rem;
    }
    
    .hero-visual {
        margin-top: 0; /* Reset margin on mobile for better layout */
    }
}

/* =============================================
   4.5. Bootstrap Overrides
   ============================================= */
/* Custom row spacing if needed */
.row {
    --bs-gutter-x: 2rem; /* Increase horizontal spacing */
    --bs-gutter-y: 1rem; /* Add vertical spacing */
    margin-top: -40px;
}

/* =============================================
   4.6. Client Logos Styling
   ============================================= */
.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
    min-width: 200px;
    margin: 0 1rem;
    position: relative;
    z-index: 1;
}

.client-logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.bank-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    transition: all var(--transition-base);
}

.client-logo:hover .bank-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

.bank-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.bank-info {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.bank-info h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bank-info span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}



/* =============================================
   5. Hero Section
   ============================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 120px; /* Increased top padding for more space from navigation */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(120, 119, 198, 0.3) 0%, transparent 50%);
    animation: floatPattern 20s ease-in-out infinite;
}

@keyframes floatPattern {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, -20px) scale(1.05); }
    66% { transform: translate(20px, -10px) scale(0.95); }
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 31, 63, 0.1) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-badge i {
    color: var(--secondary-yellow);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--secondary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--fs-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary-green);
    font-size: 1.25rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

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

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

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--fs-4xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    margin-top: 105px; /* Reduced margin to bring image down a bit */
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-2xl);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

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

.floating-card span {
    font-weight: 600;
    color: var(--gray-800);
}

.floating-card:first-of-type {
    top: 20%;
    right: -50px;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -50px;
    animation-delay: 1.5s;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

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

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* =============================================
   6. Client Logos Section
   ============================================= */
.client-logos-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    overflow: hidden;
    position: relative;
    margin-top: 0; /* Fixed spacing */
}

.client-logos-section .section-subtitle {
    color: var(--white);
    font-size: var(--fs-lg);
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.client-logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 31, 63, 0.1);
    z-index: 1;
}

.client-logos-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    padding: 0rem 0;
}

.client-logos-track {
    display: flex;
    animation: scrollLogos 90s linear infinite;
    gap: 0;
    width: max-content;
    position: relative;
}

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

/* =============================================
   7. Section Styles
   ============================================= */
.section-header {
    margin-bottom: 3rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: var(--fs-sm);
    margin-bottom: 1rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(0, 31, 63, 0.05) 100%);
    border: 1px solid rgba(0, 86, 179, 0.2);
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.1), transparent);
    transition: left 0.6s ease;
}

.section-label:hover::before {
    left: 100%;
}

.section-label::after {
    content: '→';
    font-size: 1.2em;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.section-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
    border-color: rgba(0, 86, 179, 0.3);
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.15) 0%, rgba(0, 31, 63, 0.08) 100%);
}

.section-label:hover::after {
    opacity: 1;
    transform: translateX(3px);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-description {
    font-size: var(--fs-lg);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   8. About Section
   ============================================= */
.about-section {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
    margin-top: -90px; /* Custom margin-top for about section */
}



.about-content {
    padding-top: 2rem;
}





.feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}



.feature-content h4 {
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-size: var(--fs-xl);
    font-weight: 700;
    text-align: center;
}

.feature-content p {
    margin: 0;
    color: var(--gray-600);
    font-size: var(--fs-base);
    line-height: 1.6;
}

.about-visual {
    position: relative;
    margin-top: 17rem;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    margin-top: -10rem;
    margin-left: 6px;
}

.about-experience-badge {
    position: absolute;
    top: -30px;
    right: -40px;
    background: var(--gradient-primary);
    width: 130px;
    height: 130px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.badge-content {
    text-align: center;
    color: var(--white);
}

.badge-content h3 {
    font-size: var(--fs-3xl);
    font-weight: 800;
    margin: 0;
    color: var(--white);
}

.badge-content p {
    font-size: var(--fs-xs);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-vision-cards {
    position: absolute;
    bottom: -30px;
    left: -30px;
    right: 50px;
    display: flex;
    gap: 1rem;
    margin-left: 10px;
}

.mv-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    flex: 1;
    transition: all var(--transition-base);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mv-card i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.mv-card h5 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.mv-card p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--gray-600);
}

/* =============================================
   9. Services Section
   ============================================= */
.services-section {
    padding: 4rem 0;
    background: var(--gray-50);
    margin-top: -50px; /* Reduced gap */
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    height: 100%;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.service-link:hover {
    gap: 1rem;
    color: var(--primary-navy);
}

.service-detail-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.service-detail-title {
    font-size: var(--fs-3xl);
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-detail-subtitle {
    font-size: var(--fs-xl);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
}

.service-features .feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-features .feature-item i {
    color: var(--secondary-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-benefits {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}

.benefit-item {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-base);
}

.benefit-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.benefit-item strong {
    display: block;
    font-size: var(--fs-2xl);
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.service-detail-visual {
    position: relative;
}

.service-detail-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.service-stats-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 2rem;
}

.service-stats-card .stat h4 {
    font-size: var(--fs-2xl);
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.service-stats-card .stat p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--gray-600);
}

/* =============================================
   10. Buttons & Components
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

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

.btn-outline-primary:hover {
    background: var(--primary-blue);
    border-color: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--fs-lg);
}

.btn i {
    margin-right: 0.5rem;
}

/* =============================================
   11. Responsive Design
   ============================================= */

/* Tablet Styles */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .mission-vision-cards {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 2rem;
        flex-direction: column;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    :root {
        --fs-5xl: 2.5rem;
        --fs-4xl: 2rem;
        --fs-3xl: 1.5rem;
    }
    
    .brand-sub {
        display: none;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-badge {
        font-size: var(--fs-xs);
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-experience-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: 2rem auto;
    }
    
    .service-detail-section {
        text-align: center;
    }
    
    .service-features .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }
}

/* Large Screen Styles */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* 4K Screen Styles */
@media (min-width: 2560px) {
    :root {
        font-size: 20px;
    }
    
    .container {
        max-width: 1920px;
    }
}

/* =============================================
   12. Animations & Utilities
   ============================================= */
.fade-in {
    animation: fadeIn var(--transition-slow);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-navy);
}

/* Selection */
::selection {
    background: var(--primary-blue);
    color: var(--white);
}

/* Focus Styles */
:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-scroll-indicator,
    .btn,
    #preloader {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: var(--black);
    }
    
    a {
        color: var(--black);
        text-decoration: underline;
    }
}

/* =============================================
   13. Expertise Section
   ============================================= */
.expertise-section {
    padding: 4rem 0;
    background: var(--white);
    margin-top: -50px; /* Reduced gap */
}

.expertise-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-xl);
    height: 100%;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.expertise-card:hover {
    background: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all var(--transition-base);
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.1) rotate(5deg);
}

.expertise-card h4 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.expertise-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: var(--fs-sm);
    padding-left: 1.5rem;
    position: relative;
}

.expertise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

/* =============================================
   14. Case Studies Section
   ============================================= */
.case-studies-section {
    padding: 4rem 0;
    background: var(--gray-50);
    margin-top: -50px; /* Reduced gap */
}

.case-study-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    backdrop-filter: blur(20px);
}

.case-study-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.case-study-header {
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.case-study-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

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

.case-study-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.case-study-card:hover .case-study-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.case-study-meta h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.case-study-meta p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.case-study-content {
    padding: 2.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.case-study-content h5 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.case-study-content h5:first-child {
    margin-top: 0;
}

.case-study-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.result-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.result-number {
    display: block;
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--primary-blue);
}

.result-label {
    display: block;
    font-size: var(--fs-sm);
    color: var(--gray-600);
}

.case-study-quote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.5rem;
    margin: 1.5rem 0 0 0;
}

.case-study-quote p {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.case-study-quote cite {
    color: var(--gray-600);
    font-size: var(--fs-sm);
    font-style: normal;
}

/* =============================================
   15. Modern Team Section
   ============================================= */
.team-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    margin-top: -50px; /* Reduced gap */
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.team-section .container {
    position: relative;
    z-index: 2;
}

/* Modern Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: -2rem;
}

.team-member-modern {
    position: relative;
}

.member-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), #3b82f6, var(--primary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-card:hover::before {
    opacity: 1;
}

.member-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

/* Member Image Container */
.member-image-container {
    position: relative;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin: 22px auto 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.member-card:hover .member-image img {
    transform: scale(1.1);
    filter: brightness(1.05) contrast(1.15);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.9), rgba(0, 86, 179, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.member-card:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 0.8rem;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: center;
    align-items: center;
}

.member-card:hover .member-social {
    transform: translateY(0);
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--white);
}

.member-badge {
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 auto 1.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.member-card:hover .member-badge {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.member-card:hover .member-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 86, 179, 0.4);
}

/* Member Info */
.member-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: -27px;
}

.member-header {
    margin-bottom: 1rem;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.member-card:hover .member-name {
    color: var(--primary-blue);
}

.member-role {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.member-role::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.member-card:hover .member-role::before {
    width: 6px;
    height: 20px;
    background: linear-gradient(180deg, var(--primary-blue), #3b82f6);
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.3);
}

.member-bio {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    transition: all 0.3s ease;
}

.member-card:hover .member-bio {
    color: var(--gray-700);
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.skill-tag {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: var(--gray-700);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-tag:hover {
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

/* Modern Stats Section */
.stats-section {
    margin-top: 5rem;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 2rem;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon-modern {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover .stat-icon-modern {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.stat-content {
    position: relative;
}

.stat-number-modern {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.stat-item:hover .stat-number-modern {
    transform: scale(1.05);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.stat-label-modern {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.stat-item:hover .stat-label-modern {
    font-weight: 700;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* =============================================
   18. GRC Constructor Section
   ============================================= */
.grc-constructor-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    margin-top: -50px; /* Reduced gap */
}

.grc-constructor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.grc-constructor-section .container {
    position: relative;
    z-index: 2;
}

/* GRC Overview Card */
.grc-overview-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.grc-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.grc-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grc-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.grc-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.grc-stat-item {
    text-align: center;
    flex: 1;
}

.grc-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.grc-stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.grc-overview-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.grc-overview-image img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.grc-overview-image:hover img {
    transform: scale(1.05);
}

/* GRC Feature Cards */
.grc-feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.grc-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grc-feature-card:hover::before {
    opacity: 1;
}

.grc-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--primary-blue);
    font-size: 0.8rem;
}

/* Comparison Section */
.comparison-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 3rem !important;
    margin-top: -15px;
}

.comparison-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.comparison-card.traditional {
    border-left: 5px solid var(--secondary-red);
}

.comparison-card.grc {
    border-left: 5px solid var(--secondary-green);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.comparison-header i {
    font-size: 1.5rem;
}

.comparison-card.traditional .comparison-header i {
    color: var(--secondary-red);
}

.comparison-card.grc .comparison-header i {
    color: var(--secondary-green);
}

.comparison-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 0.75rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-card.traditional .comparison-list li i {
    color: var(--secondary-red);
}

.comparison-card.grc .comparison-list li i {
    color: var(--secondary-green);
}

/* Implementation Section */
.implementation-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.implementation-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 3rem !important;
    margin-top: -10px;
}

.stage-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stage-card:hover::before {
    opacity: 1;
}

.stage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.stage-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

.stage-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.stage-duration {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.stage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.stage-list li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.stage-list li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* GRC CTA */
.grc-cta {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-image-container {
        height: 160px;
        width: 160px;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .member-social {
        gap: 0.6rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-number-modern {
        font-size: 2.5rem;
    }
    
    /* GRC Constructor Responsive */
    .grc-overview-card {
        padding: 2rem;
    }
    
    .grc-title {
        font-size: 2rem;
    }
    
    .grc-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comparison-section,
    .implementation-section {
        padding: 2rem;
    }
    
    .comparison-title,
    .implementation-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image-container {
        height: 140px;
        width: 140px;
    }
    
    .member-info {
        padding: 1rem;
    }
    
    .social-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .member-social {
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
}

/* =============================================
   16. Insights Section
   ============================================= */
.insights-section {
    padding: 4rem 0;
    background: var(--gray-50);
    position: relative;
    z-index: 1;
    min-height: 100vh;
    margin-top: -50px; /* Reduced gap */
}

.insight-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.insight-image {
    height: 200px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-base);
}

.insight-card:hover .insight-image img {
    transform: scale(1.1);
}

.insight-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-category {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.insight-title {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.insight-excerpt {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    flex: 1;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-sm);
    color: var(--gray-500);
}

.insight-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.insight-link:hover {
    gap: 1rem;
    color: var(--primary-navy);
}

/* =============================================
   17. Contact Section Enhanced
   ============================================= */
.contact-section {
    padding: 4rem 0;
    background: var(--white);
    margin-top: -50px; /* Reduced gap */
}

.contact-info-card {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem;
    border-radius: 24px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-color: rgba(0, 86, 179, 0.2);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
    border-radius: 16px;
    position: relative;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-info-item:hover::before {
    opacity: 1;
}

.contact-info-item:hover {
    transform: translateX(8px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

.contact-info-content h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
}

.contact-info-item:hover .contact-info-content h4 {
    color: var(--primary-blue);
}

.contact-info-content p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

.contact-form-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form-card:hover::before {
    opacity: 1;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 10px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 86, 179, 0.2);
}

.form-floating {
    margin-bottom: 1rem;
}

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.form-control:hover {
    border-color: rgba(0, 86, 179, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.form-control.is-invalid {
    border-color: var(--secondary-red);
}

.invalid-feedback {
    font-size: var(--fs-sm);
    margin-top: 0.25rem;
}

/* =============================================
   18. Footer Enhanced
   ============================================= */
.footer-section {
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--spacing-4xl) 0 var(--spacing-2xl);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
}

/* Certification Badges */
.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.certification-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.2rem 1.8rem;
    min-width: 130px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.certification-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.certification-badge i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    display: block !important;
    visibility: visible !important;
}



.certification-badge span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-badge small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================
   19. Modal Customization
   ============================================= */
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--gray-800);
    pointer-events: auto;
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    outline: 0;
    box-shadow: var(--shadow-2xl);
    margin-top: 100px;
}
.col-lg-6 {

}


/* =============================================
   20. Additional Responsive Styles
   ============================================= */
@media (max-width: 991px) {
    .expertise-card,
    .case-study-card,
    .team-member-card,
    .insight-card {
        margin-bottom: 2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        justify-content: space-around;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .case-study-header {
        flex-direction: column;
        text-align: center;
    }
    
    .team-member-image {
        height: 100px;
        width: 100px;
        border-radius: 8px;
        border: 2px solid #ffffff;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .about-visual {
        margin-top: 0;
    }
    
    .about-content {
        padding-top: 0;
    }
    

    

    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}