        /* CSS Variables for theming based on the designs */
:root {
    --primary-color: #0b1c3c;
    /* Navy Blue */
    --secondary-color: #f7d002;
    /* Highlight Yellow */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8faff;
    --bg-white: #ffffff;
    --accent-blue: #00add8;
    /* Light blue accent from lines */
    --border-color: #e0e5f2;
    --transition: all 0.3s ease;
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography styles */
h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    margin-top: 40px;

}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #1a3a6c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 28, 60, 0.2);
}

.btn-yellow {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-yellow:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 208, 2, 0.3);
}

/* Header & Navigation */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-car {
    color: var(--text-dark);
}

.logo-doc {
    color: #000000;
    background-color: var(--secondary-color);
    padding: 0 4px;
    border-radius: 4px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 30px;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.desktop-nav a:hover:not(.btn) {
    color: var(--accent-blue);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background-color: var(--bg-white);
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

/* Sections Base */
section {
    padding: 80px 0;
    margin-top: 0;
    scroll-margin-top: 80px;
    /* Offset for fixed header */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8faff 0%, #e6effa 100%);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    /* Fill screen minus header */
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 80px;
}

/* Background lines specific to Cardoc's design style */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Abstract Graphic Representation for Hero */
.hero-graphic {
    position: relative;
    width: 400px;
    height: 400px;
}

.graphic-element {
    position: absolute;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 2rem;
    color: var(--primary-color);
}

.bank {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    background: #e3f2fd;
    color: #1565c0;
}

.doc-folder {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: #fff8e1;
    color: #fbc02d;
    font-size: 3rem;
}

.car {
    width: 140px;
    height: 140px;
    bottom: 10%;
    right: 20%;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 3.5rem;
}

.graphic-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"><path d="M 50 200 Q 200 50, 350 150 T 300 350" fill="transparent" stroke="%23bbdefb" stroke-width="8" stroke-dasharray="10, 10" /></svg>');
    opacity: 0.6;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.car {
    animation: float 4s ease-in-out infinite;
}

.bank {
    animation: float 5s ease-in-out infinite 1s;
}

.doc-folder {
    animation: float 4.5s ease-in-out infinite 0.5s;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 30px 0;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-text {
        margin-bottom: 50px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.4rem;
    }

    .hero-graphic {
        width: 300px;
        height: 300px;
        transform: scale(0.8);
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-dark {
    color: var(--text-dark);
}

.text-yellow {
    color: var(--secondary-color);
}

.text-danger {
    color: #d32f2f;
}

.bg-light {
    background-color: var(--bg-white);
}

.mt-4 {
    margin-top: 2rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #444;
}

/* About Section */
.about {
    background-color: var(--bg-white);
    position: relative;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.mission-box {
    background: linear-gradient(to right, rgba(247, 208, 2, 0.05), transparent);
    padding: 25px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
    position: relative;
}

.mission-line {
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-blue), transparent);
    width: 150px;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bridge-illustration {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, #e6effa 0%, #ffffff 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.buildings {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: #90caf9;
}

.road-curve {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 40px solid #bbdefb;
    border-radius: 50%;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.side-car-1 {
    position: absolute;
    top: 40%;
    right: 20%;
    font-size: 2rem;
    color: var(--primary-color);
}

.side-car-2 {
    position: absolute;
    bottom: 30%;
    left: 40%;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

/* Problems Section */
.problems {
    background-image: radial-gradient(circle at center, #ffffff 0%, #f4f7fb 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.problem-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.problem-card:nth-child(1) {
    border-color: #f44336;
}

.problem-card:nth-child(2) {
    border-color: #ff9800;
}

.problem-card:nth-child(3) {
    border-color: #9c27b0;
}

.problem-card:nth-child(4) {
    border-color: #607d8b;
}

.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background-color: #ffebee;
    color: #f44336;
}

.problem-icon.alert {
    background-color: #fff3e0;
    color: #ff9800;
}

.problem-icon.burden {
    background-color: #f3e5f5;
    color: #9c27b0;
}

.problem-icon.friction {
    background-color: #eceff1;
    color: #607d8b;
}

.problem-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.problem-center-graphic {
    margin-top: 60px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.bottleneck-visual {
    height: 120px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(90deg, rgba(33, 150, 243, 0.1) 0%, rgba(244, 67, 54, 0.1) 100%);
    border-radius: 60px;
}

.bottleneck-point {
    position: absolute;
    left: 45%;
    background: #ffebee;
    color: #d32f2f;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #ffcdd2;
    z-index: 10;
}

.flow-out.warning {
    position: absolute;
    right: 20%;
    background: #ffcdd2;
    color: #c62828;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 700;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

/* Animations Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive Adjustments for new sections */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }

    .problems-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }

    .bottleneck-point {
        left: 25%;
    }

    section {
        padding: 30px 0;
    }

    .section-title,
    .section-header h2 {
        font-size: 28px;
        line-height: 36px;
    }
}

/* Utility extensions */
.mb-5 {
    margin-bottom: 3rem;
}

.font-weight-bold {
    font-weight: 700;
}

.text-primary {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-blue);
}

.text-success {
    color: #4caf50;
}

.text-warning {
    color: #ff9800;
}

/* Solution / Bridge Section */
.solution {
    background-color: #fafbfc;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.bridge-container {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

.bridge-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 30px;
}

/* Connective lines behind icons */
.bridge-flow::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 6px;
    background: linear-gradient(90deg, #bbdefb, var(--secondary-color), #bbdefb);
    z-index: 1;
    border-radius: 3px;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 4px solid var(--bg-light);
    position: relative;
}

.center-step .step-icon {
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.maker-checker i {
    background: -webkit-linear-gradient(#00add8, #0b1c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.flow-step h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.flow-step p {
    font-size: 0.95rem;
}

.bridge-graphic {
    margin-top: 50px;
    border-top: 2px dashed var(--border-color);
    padding-top: 20px;
}

.bridge-text {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Services Lifecycle Timeline */
.services {
    overflow: hidden;
}

.lifecycle-timeline {
    position: relative;
    padding: 40px 0;
}

/* The curved timeline path across the section */
.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 120px;
    transform: translateY(-50%);
    background: radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(0, 0, 0, 0) 40.1%);
    border-top: 8px solid #8fc5e3;
    border-bottom: 8px solid var(--secondary-color);
    border-radius: 60px;
    opacity: 0.3;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    transform: translateY(-20px);
}

.timeline-item.alt {
    transform: translateY(20px);
    flex-direction: column-reverse;
}

.t-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.timeline-item.alt .t-icon {
    margin-bottom: 0;
    margin-top: 20px;
}

.timeline-item:hover .t-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.t-content h4 {
    color: var(--accent-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.t-content p {
    font-size: 0.85rem;
}

/* Workflow Section */
.workflow {
    background: var(--bg-white);
    position: relative;
}

/* Background watermark effect */
.workflow::after {
    content: '\f15c';
    /* File text icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 30rem;
    color: rgba(0, 0, 0, 0.015);
    z-index: 0;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.w-step {
    flex: 1;
    text-align: center;
    min-width: 150px;
}

.w-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.w-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    border: 5px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    box-shadow: 0 0 0 5px var(--secondary-color);
    transition: var(--transition);
}

.w-step:hover .w-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.w-number {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-dark);
    padding: 0 10px;
}

.w-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: -100px 10px 0;
    /* Align with circles */
}

.w-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.w-step p {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Workflow Banner */
.tat-banner {
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(11, 28, 60, 0.8) 100%);
    color: white;
    border-radius: 50px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(11, 28, 60, 0.3);
}

.tat-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-right: 30px;
}

.tat-text h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.tat-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .bridge-flow {
        flex-direction: column;
        gap: 50px;
    }

    .bridge-flow::before {
        display: none;
        /* Hide connecting line on mobile */
    }

    .timeline-items {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .timeline-item,
    .timeline-item.alt {
        transform: none;
        flex-direction: column;
        max-width: 400px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-item.alt .t-icon {
        margin-bottom: 20px;
        margin-top: 0;
    }

    .workflow-steps {
        flex-wrap: wrap;
        gap: 30px;
    }

    .w-arrow {
        display: none;
    }

    .w-step {
        min-width: 40%;
    }
}

@media (max-width: 768px) {
    .w-step {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .tat-banner {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
    }

    .tat-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Utility Extensions */
.text-left {
    text-align: left;
}

.text-white {
    color: white;
}

.text-muted {
    color: #888;
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-yellow {
    background-color: var(--secondary-color);
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.d-inline-block {
    display: inline-block;
}

.mx-4 {
    margin: 0 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.rounded {
    border-radius: 8px;
}

.shadow {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Leadership Section */
.leadership-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.leader-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    flex: 1;
    max-width: 450px;
    position: relative;
    border-top: 5px solid;
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tech-leader {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, rgba(11, 28, 60, 0.02) 0%, rgba(255, 255, 255, 1) 50%);
}

.finance-leader {
    border-color: var(--secondary-color);
    background: linear-gradient(180deg, rgba(247, 208, 2, 0.05) 0%, rgba(255, 255, 255, 1) 50%);
}

.leader-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: -70px auto 20px;
    /* pull up out of card */
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leader-img.gold {
    background: linear-gradient(135deg, #d4af37, #f7d002);
}

.leader-info h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.designation {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.leader-info hr {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin-bottom: 15px;
}

.bio {
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-finance-connector {
    font-size: 3rem;
    color: #bbdefb;
    z-index: 10;
}

.support-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.support-member {
    background: white;
    padding: 20px;
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-left: 3px solid var(--accent-blue);
}

/* Partners Section */
.partners {
    background: radial-gradient(circle at bottom, #f8faff 0%, #ffffff 100%);
}

.partners-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.partner-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.partner-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-color: #bbdefb;
}

.partner-name {
    font-size: 1.8rem;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.metrics {
    justify-content: space-between;
    background: #f8faff;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed var(--border-color);
}

.metric {
    width: 45%;
}

.metric strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Models Section */
.models-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.model-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    max-width: 500px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.type-a {
    border-left: 4px solid var(--primary-color);
}

.type-b {
    border-left: 4px solid var(--secondary-color);
}

.model-header {
    padding: 20px;
    text-align: center;
}

.model-header h3 {
    margin: 0;
    font-size: 1.3rem;
    line-height: normal;
    /* Fix spacing issue if headers wrap */
}

/* Apply specific colors for title styling based on design */
.model-card.type-b .model-header h3 {
    color: var(--text-dark);
}

.model-card.type-a .model-header h3 {
    color: white;
}

.model-body {
    padding: 30px;
}

.model-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    text-align: left;
    /* reset to left inside body */
}

.model-feature:last-child {
    margin-bottom: 0;
}

.model-feature i {
    font-size: 1.8rem;
    margin-right: 20px;
    margin-top: 5px;
}

.model-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.model-feature p {
    margin: 0;
    font-size: 0.95rem;
}

/* Main Footer Update */
.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-brand {
    flex: 2;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Image Logo Styles */
.brand-logo {
    max-height: 100px;
    width: auto;
    display: block;
    margin-top: 35px;
}

.inline-logo {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
}

.footer-logo {
    max-height: 100px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .brand-logo {
        max-height: 75px;
    }

    .footer-logo {
        max-height: 75px;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 60px;
}

.contact-image {
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 40px 20px;
    }

    .contact-image {
        min-height: 300px;
    }
}

/* Final Responsive Tweaks */
@media (max-width: 992px) {

    .leadership-cards,
    .partners-grid,
    .models-grid {
        flex-direction: column;
        align-items: center;
    }

    .tech-finance-connector {
        transform: rotate(90deg);
        margin: 40px 0;
    }

    .leader-card,
    .partner-card,
    .model-card {
        max-width: 100%;
        margin-top: 50px;
        /* Leave space for floating icon */
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
}    