/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #0A1A2F;
    background-color: #FAFAF7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0A1A2F;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #0A1A2F, #1a2f4a);
    color: #FAFAF7;
    box-shadow: 0 4px 15px rgba(10, 26, 47, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a2f4a, #2a3f5a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 26, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #0A1A2F;
    border: 2px solid #0A1A2F;
}

.btn-secondary:hover {
    background: #0A1A2F;
    color: #FAFAF7;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed !important;
    top: 0;
    width: 100%;
    background: #0A1A2F !important;
    background-color: #0A1A2F !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 140px;
    width: auto;
    filter: none !important;
    opacity: 1 !important;
    -webkit-filter: none !important;
    image-rendering: auto;
    display: block;
    max-width: 100%;
}

.footer-logo {
    height: 140px;
    width: auto;
    filter: none !important;
    opacity: 1 !important;
    -webkit-filter: none !important;
    image-rendering: auto;
    display: block;
    max-width: 100%;
    margin-bottom: 1rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #FAFAF7;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    opacity: 0.8;
}

/* LinkedIn Link */
.linkedin-link {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.linkedin-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0077B5, #005885);
    color: #FAFAF7;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
}

.linkedin-btn:hover {
    background: linear-gradient(135deg, #005885, #004266);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
    color: #FAFAF7;
}

.linkedin-btn i {
    font-size: 0.9rem;
}

.linkedin-btn span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #FAFAF7;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FAFAF7 0%, #f5f5f2 100%);
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
    transition: opacity 0.1s ease-out, transform 0.1s ease-out;
    will-change: opacity, transform;
}



.hero::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="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0A1A2F;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.highlight {
    color: #0A1A2F;
    position: relative;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1A2F;
    font-family: 'Playfair Display', serif;
}

.stat-number i {
    font-size: 1.8rem;
}

.stat-approach {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0A1A2F;
    font-family: 'Playfair Display', serif;
}

.stat-icon {
    display: block;
    font-size: 2rem;
    color: #0A1A2F;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 30%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 20%;
    right: 5%;
    animation-delay: 4s;
}

.floating-card i {
    font-size: 1.5rem;
    color: #0A1A2F;
}

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

/* Section Styling */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}



/* About Section */
.about {
    background: #FAFAF7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0A1A2F, #1a2f4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.about-card h3 {
    color: #0A1A2F;
    margin-bottom: 1rem;
}

/* Founder Profile */
.founder-profile {
    background: linear-gradient(135deg, #0A1A2F, #1a2f4a);
    border-radius: 20px;
    padding: 3rem;
    color: #FAFAF7;
}

.founder-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.founder-name {
    color: rgba(250, 250, 247, 0.98) !important;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.founder-title {
    font-size: 1.125rem;
    color: rgba(250, 250, 247, 0.9) !important;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.founder-description {
    opacity: 1;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: justify;
    font-size: 0.95rem;
    color: rgba(250, 250, 247, 0.95) !important;
    text-shadow: 0 1px 2px rgba(10, 26, 47, 0.1);
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credential {
    display: flex;
    gap: 1rem;
}

.credential-label {
    font-weight: 600;
    min-width: 80px;
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.corporate-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.visual-element {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-element:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}



/* CV/Executive Profile Section - TEMPORARILY COMMENTED OUT (Future Use)
.cv-icon-bg {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cv-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.icon-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cv-icon-bg:hover .cv-icon {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.cv-icon-bg:hover .icon-label {
    color: rgba(255, 255, 255, 1);
}
*/

.metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(250, 250, 247, 0.95);
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(250, 250, 247, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Services Section */
.services {
    background: white;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0A1A2F, #1a2f4a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    color: #0A1A2F;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    color: #0A1A2F;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Expertise Section */
.expertise {
    background: #FAFAF7;
}

.expertise-content {
    display: grid;
    gap: 4rem;
}

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

.stat-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0A1A2F;
    display: block;
    font-family: 'Playfair Display', serif;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card.specialized {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.specialization-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.specialization-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0A1A2F;
    display: block;
}

.specialization-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    font-weight: 500;
}

/* Client Logos */
.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
    justify-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 180px;
}

.client-logo:hover {
    transform: translateY(-3px);
}

.client-logo-img {
    width: 160px;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    background: transparent;
}

.client-logo-img.sinner-logo {
    background: transparent;
    filter: none;
    border-radius: 12px;
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.client-logo-img.edicare-logo {
    background: transparent !important;
    background-color: transparent !important;
    filter: none;
    width: 180px;
    height: 70px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Alternative approach if background persists */
.edicare-logo-container {
    background: transparent;
    overflow: hidden;
}

.edicare-logo-container .client-logo-img.edicare-logo {
    filter: contrast(1.2) brightness(0.9);
}

.client-logo:hover .client-logo-img {
    transform: scale(1.05);
}

/* Remove any unwanted backgrounds from image logos */

/* Text-based logo placeholders */
.logo-text-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 160px;
    height: 80px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bridge-text {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
}

.bridge-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.bridge-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.9;
}

.newco-text {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
}

.newco-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.newco-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.8;
}

/* Expertise Metrics - Clean & Uniform */
.expertise-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.metric-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.metric-card:hover {
    border-color: #0A1A2F;
    box-shadow: 0 4px 15px rgba(10, 26, 47, 0.08);
    transform: translateY(-2px);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: #0A1A2F;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.metric-icon i {
    font-size: 1.25rem;
    color: #FAFAF7;
}

.metric-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.metric-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1A2F;
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.3;
}

.sector-expertise h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #0A1A2F;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.sector-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.sector-item:hover {
    background: #0A1A2F;
    color: #FAFAF7;
    transform: translateY(-2px);
}

.sector-item i {
    font-size: 1.25rem;
    color: #0A1A2F;
    transition: color 0.3s ease;
}

.sector-item:hover i {
    color: #FAFAF7;
}

/* Credentials Section */
.credentials {
    background: white;
}

.credentials-category {
    margin-bottom: 4rem;
}

.credentials-category:last-child {
    margin-bottom: 2rem;
}

.category-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.category-header h3 {
    color: #0A1A2F;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.category-header i {
    color: #0A1A2F;
    font-size: 1.2rem;
}

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

.credential-card {
    background: linear-gradient(135deg, #fafafa, #f8fafc);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(10, 26, 47, 0.1);
    transition: all 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(10, 26, 47, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.credential-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Specific sizing for Edicare logo */
.credential-logo[alt*="Edicare"] {
    width: 100px;
    height: 65px;
    padding: 12px;
}

/* NewCo text logo styling for credentials */
.credential-logo-text {
    width: 70px;
    height: 50px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newco-name-cred {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: #ffffff;
    line-height: 1;
    text-align: center;
}

.newco-subtitle-cred {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    text-align: center;
    margin-top: 1px;
}

/* Bridge Capital text logo styling for credentials */
.credential-logo-text.bridge-text {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.bridge-name-cred {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    color: #ffffff;
    line-height: 1;
    text-align: center;
    letter-spacing: 1px;
}

.bridge-subtitle-cred {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    text-align: center;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.card-header h4 {
    color: #0A1A2F;
    margin: 0;
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services-section {
    background: rgba(10, 26, 47, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #0A1A2F;
}

.services-section h5 {
    color: #0A1A2F;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
    color: #4a5568;
}

.bullet-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 0;
    color: #0A1A2F;
    font-size: 0.8rem;
    font-weight: bold;
}

.bullet-list li strong {
    color: #0A1A2F;
    font-weight: 600;
}

/* Credentials Carousel */
.credentials-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.credentials-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.credential-slide {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.credential-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.carousel-btn {
    background: linear-gradient(135deg, #0A1A2F, #1a2f4a);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 26, 47, 0.2);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #1a2f4a, #2a3f5a);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(10, 26, 47, 0.3);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 26, 47, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #0A1A2F;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(10, 26, 47, 0.6);
}

/* Dropdown functionality */
.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.dropdown-header:hover {
    background: rgba(10, 26, 47, 0.05);
}

.dropdown-header h5 {
    margin: 0;
    pointer-events: none;
}

.dropdown-icon {
    color: #0A1A2F;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.dropdown-content.open {
    max-height: 1000px;
}

.dropdown-header.open .dropdown-icon {
    transform: rotate(180deg);
}

.deal-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.deal-value {
    background: linear-gradient(135deg, #0A1A2F, #1a2f4a);
    color: #FAFAF7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.deal-metric {
    background: rgba(10, 26, 47, 0.1);
    color: #0A1A2F;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid rgba(10, 26, 47, 0.2);
}

.credential-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(10, 26, 47, 0.1);
    color: #0A1A2F;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25px;
}

/* Ampersand styling - use Inter font for & in titles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

h1 .ampersand, h2 .ampersand, h3 .ampersand, h4 .ampersand, h5 .ampersand, h6 .ampersand {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Specific spacing fix for M&A abbreviation */
.ampersand.tight {
    margin: 0;
    white-space: nowrap;
}

/* Prevent line breaks in abbreviations */
h1, h2, h3, h4, h5, h6 {
    word-spacing: normal;
}

/* Force abbreviations to stay together */
.no-break {
    white-space: nowrap;
    display: inline-block;
}

/* M&A Advisory title spacing control */
.ma-title {
    white-space: nowrap;
    word-spacing: -0.05em;
}

/* Capital & Fundraising title spacing control */
.cf-title {
    white-space: nowrap;
    word-spacing: -0.05em;
}

/* Contact Section */
.contact {
    background: #FAFAF7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0A1A2F, #1a2f4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-details h4 {
    color: #0A1A2F;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: #0A1A2F;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0A1A2F;
}

/* Footer */
.footer {
    background: #0A1A2F;
    color: #FAFAF7;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FAFAF7;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0A1A2F, #1a2f4a);
    color: #FAFAF7;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 26, 47, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-logo .logo-img {
        height: 120px;
        filter: none !important;
        opacity: 1 !important;
        image-rendering: high-quality;
        -ms-interpolation-mode: bicubic;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 160px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(10, 26, 47, 0.1);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu .nav-link {
        color: #0A1A2F !important;
        font-size: 1.1rem;
        padding: 0.75rem 0;
        font-weight: 600;
        /* Mobile menu text visibility fix */
    }

    .nav-menu .nav-link:hover {
        color: #1a2f4a !important;
        opacity: 0.8;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .linkedin-btn {
        background: linear-gradient(135deg, #0077B5, #005885);
        color: #FAFAF7 !important;
        margin: 0 auto;
        width: fit-content;
    }

    .nav-menu .linkedin-btn:hover {
        background: linear-gradient(135deg, #005885, #004266);
        color: #FAFAF7 !important;
    }

    .language-toggle {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }

    .language-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        padding: 160px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .founder-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .founder-description {
        text-align: left;
        font-size: 0.9rem;
    }

    .corporate-visual {
        margin-top: 2rem;
    }

    .metrics {
        gap: 1rem;
    }



    /* CV Responsive Styles - TEMPORARILY COMMENTED OUT (Future Use)
    .cv-icon-bg {
        width: 150px;
        height: 100px;
    }

    .cv-icon {
        font-size: 2.2rem;
    }

    .icon-label {
        font-size: 0.7rem;
    }
    */

    .founder-name {
        font-size: 1.5rem !important;
    }

    .specialization-title {
        font-size: 1.2rem !important;
    }

    .specialization-desc {
        font-size: 0.8rem !important;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .client-logo {
        max-width: 140px;
    }

    .client-logo-img {
        width: 120px;
        height: 60px;
    }

    .logo-text-placeholder {
        width: 120px;
        height: 60px;
    }

    .bridge-name,
    .newco-name {
        font-size: 1rem !important;
    }

    .bridge-subtitle,
    .newco-subtitle {
        font-size: 0.6rem !important;
    }

    .client-logo-img.sinner-logo {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }

    .client-logo-img.edicare-logo {
        width: 140px;
        height: 50px;
    }

    .credential-logo {
        width: 40px;
        height: 40px;
        padding: 6px;
    }

    .credential-logo[alt*="Edicare"] {
        width: 80px;
        height: 55px;
        padding: 10px;
    }

    .credential-logo-text {
        width: 55px;
        height: 40px;
        padding: 4px;
    }

    .newco-name-cred {
        font-size: 0.7rem;
    }

    .newco-subtitle-cred {
        font-size: 0.45rem;
    }

    .bridge-name-cred {
        font-size: 0.72rem;
        letter-spacing: 0.8px;
    }

    .bridge-subtitle-cred {
        font-size: 0.48rem;
        letter-spacing: 0.3px;
    }

    .client-info {
        gap: 0.75rem;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .carousel-container {
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
        position: static;
        transform: none;
    }

    .credentials-wrapper {
        order: 2;
        margin: 0;
    }

    .carousel-prev {
        order: 1;
        left: auto;
    }

    .carousel-next {
        order: 3;
        right: auto;
    }

    .carousel-indicators {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .dropdown-header {
        padding: 0.25rem;
    }

    .dropdown-icon {
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }

    .deal-metrics {
        gap: 0.4rem;
    }

    .deal-value {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .deal-metric {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .services-section {
        padding: 1rem;
    }

    .services-section h5 {
        font-size: 1rem;
    }

    .bullet-list li {
        font-size: 0.85rem;
        gap: 0.75rem;
    }

    .expertise-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .metric-card {
        padding: 1.5rem 1rem;
        min-height: 140px;
        gap: 0.75rem;
    }

    .metric-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.25rem;
    }

    .metric-icon i {
        font-size: 1rem;
    }

    .metric-number {
        font-size: 1.2rem !important;
    }

    .metric-label {
        font-size: 0.75rem !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .floating-card {
        display: none;
    }
    


    .footer-logo {
        height: 140px !important;
        filter: none !important;
        opacity: 1 !important;
        image-rendering: high-quality !important;
        -ms-interpolation-mode: bicubic !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Policy Pages Styles */
.policy-content {
    padding: 200px 0 80px;
    background: #FAFAF7;
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.policy-header h1 {
    color: #0A1A2F;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: #64748b;
    font-style: italic;
    margin: 0;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.policy-text h2 {
    color: #0A1A2F;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text h3 {
    color: #0A1A2F;
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.policy-text p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a5568;
}

.policy-text ul {
    margin: 1rem 0 1.5rem 1rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.contact-info-policy {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #0A1A2F;
}

.contact-info-policy p {
    margin: 0.25rem 0;
    color: #0A1A2F;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FAFAF7;
}

.footer-links span {
    color: #94a3b8;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0A1A2F, #1a2f4a);
    color: #FAFAF7;
    padding: 1.5rem;
    z-index: 10000;
    border-top: 3px solid #3b82f6;
    box-shadow: 0 -4px 20px rgba(10, 26, 47, 0.3);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-text p {
    margin: 0;
    color: #FAFAF7;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.cookie-link {
    color: #cbd5e1;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.cookie-link:hover {
    color: #FAFAF7;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Mobile responsiveness for policy pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 180px 0 60px;
    }
    
    .policy-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links span {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}