@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* CSS Variables */
:root {
    --primary-color: #0070C0;
    --primary-hover: #005999;
    --text-primary: #000000;
    --text-secondary: #475569;
    --text-light: #525252;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #081F37;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --font-primary: 'Roboto', sans-serif;
}

/* Reset margins and padding for headings and paragraphs */
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

/* Body styles */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-light);
    padding-top: 55px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    height: 549px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./images/hero-section.png') no-repeat center center;
    background-size: cover;
    opacity: 1;
    z-index: 1;
}

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

.hero-section h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-section h1 span {
    color: var(--primary-color);
}

.hero-section p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Hero Image */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 24px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 112, 192, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 24px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 112, 192, 0.3);
}

/* Section Styles (for future sections) */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Card Styles (for future use) */
.feature-card {
    background: var(--bg-primary);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* How SynapseScope Stands Apart Section */
.comparison-section {
    padding: 5rem 0;
}

.comparison-section h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.comparison-section .text-center p {
    font-size: 16px;
    line-height: 28px;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.comparison-content {
    gap: 2rem;
}

.comparison-card {
    background: var(--bg-primary);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.traditional-card {
    background: #f8f9fa;
}

.synapsescope-card {
    background: #e6f3ff;
}

.comparison-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-item {
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 81px;
}

.comparison-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-item p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0;
}

.synapsescope-card .comparison-item {
    background: var(--bg-primary);
}

/* Why Behaviour Matters Section */
.behaviour-matters-section {
    padding: 5rem 0;
    background-color: var(--bg-primary);
}

.behaviour-matters-section h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.behaviour-matters-section p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.behaviour-matters-section p:last-child {
    margin-bottom: 0;
}

.personas-showcase {
    position: relative;
    text-align: center;
    width: 550px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.personas-header {
    text-align: left;
    margin-bottom: 2rem;
    position: absolute;
    top: 0;
    left: 0;
}

.personas-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.personas-header p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 0;
}

.central-image {
    width: 240px;
    height: 240px;
    margin: 2rem auto;
    position: relative;
    z-index: 2;
}

.central-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.persona-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    z-index: 3;
}

.persona-top {
    top: 0;
    right: 50px;
}

.persona-center {
    left: 20px;
    top: 40%;
    transform: translateY(-50%);
}

.persona-bottom {
    bottom: 10%;
    right: 0;
}

.persona-icon {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.persona-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Why Emerging Leaders Stay Hidden Section */
.hidden-leaders-section {
    padding: 5rem 0;
}

.hidden-leaders-section h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.hidden-leaders-section .text-center p {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hidden-reason-card {
    background: #FFFFFF;
    box-shadow: 0px 1px 4px 0px #00000040;
    max-width: 300px;
    height: 260px;
    border-radius: 9px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.hidden-reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.reason-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.reason-icon img {
    width: 60px;
    height: 60px;
    color: white;
    font-size: 28px;
}

.hidden-reason-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hidden-reason-card p {
    font-size: 14px;
    line-height: 21px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* How SynapseScope Reveals Leadership Talent Section */
.reveals-leadership-section {
    padding: 5rem 0;
}

.reveals-leadership-section h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.reveals-leadership-section .text-center p {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-light);
    margin-bottom: 0;
}

.step-content {
    padding: 2rem 0;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.step-content p {
    font-size: 16px;
    line-height: 28px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.leadership-dimensions,
.leadership-insights,
.development-pathways {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leadership-dimensions li,
.leadership-insights li,
.development-pathways li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-light);
}

.leadership-dimensions li::before,
.leadership-insights li::before,
.development-pathways li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.leadership-dimensions li strong,
.development-pathways li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.step-image {
    text-align: center;
    padding: 1rem;
}

.step-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.step-image img:hover {
    transform: translateY(-5px);
}

/* Build Your Leadership Pipeline Section */
.leadership-pipeline-section {
    background: url('./images/team-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.leadership-pipeline-section h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.leadership-pipeline-section p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-pipeline-section .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 15px 30px;
    font-weight: 500;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 112, 192, 0.3);
}

.leadership-pipeline-section .btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 112, 192, 0.4);
}

/* Find Leaders Section */
.find-leaders-section {
    background-color: var(--bg-primary);
    padding: 5rem 0;
    text-align: center;
}

.find-leaders-section h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.find-leaders-section p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 100%;
}

.find-leaders-section .btn {
    padding: 12px 24px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.find-leaders-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 112, 192, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero-section {
        height: auto;
        padding: 3rem 0;
    }

    .hero-section h1 {
        font-size: 32px;
        margin-bottom: 1rem;
    }

    .hero-section p {
        font-size: 16px;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .comparison-section {
        padding: 3rem 0;
    }

    .comparison-section h2 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .comparison-section .text-center p {
        font-size: 16px;
        margin-bottom: 2rem;
    }

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

    .comparison-content .col {
        margin-bottom: 1.5rem;
    }

    .comparison-card {
        padding: 1.5rem;
        margin-bottom: 0;
    }

    .comparison-card h3 {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }

    .comparison-item {
        padding: 0.8rem 1rem;
        margin-bottom: 0.8rem;
    }

    .comparison-item p {
        font-size: 14px;
        line-height: 24px;
        font-weight: 400;
    }

    .reveals-leadership-section {
        padding: 3rem 0;
    }

    .reveals-leadership-section h2 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .reveals-leadership-section .text-center p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 2rem;
    }

    .step-content {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }

    .step-content h3 {
        font-size: 24px;
        margin-bottom: 1rem;
    }

    .step-content p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 1rem;
    }


    .step-image {
        padding: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hidden-leaders-section {
        padding: 3rem 0;
    }

    .hidden-leaders-section h2 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .hidden-leaders-section .text-center p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 2rem;
    }

    .hidden-reason-card {
        max-width: 100%;
        height: auto;
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .reason-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .reason-icon i {
        font-size: 24px;
    }

    .behaviour-matters-section {
        padding: 3rem 0;
    }

    .behaviour-matters-section h2 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .behaviour-matters-section p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 1rem;
    }

    .personas-showcase {
        height: 500px;
        justify-content: flex-end;
    }



    .personas-header {
        margin-bottom: 1.5rem;
    }

    .leadership-pipeline-section {
        background-attachment: scroll;
        padding: 5rem 0;
    }

    .leadership-pipeline-section h2 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .leadership-pipeline-section p {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .leadership-pipeline-section .btn-primary {
        padding: 12px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }

    .find-leaders-section {
        padding: 3rem 0;
    }

    .find-leaders-section h2 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .find-leaders-section p {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .find-leaders-section .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }

    .find-leaders-section .btn {
        width: 100%;
    }

    .feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 14px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }

    .d-flex.gap-3 .btn {
        width: 100%;
    }

    .comparison-content {
        flex-direction: column;
    }

    .comparison-card {
        padding: 1rem;
    }

    .comparison-card h3 {
        font-size: 16px;
        margin-bottom: 1rem;
    }

    .comparison-item {
        padding: 0.6rem 0.8rem;
        margin-bottom: 0.6rem;
    }

    .comparison-item p {
        font-size: 14px;
        line-height: 22px;
        font-weight: 400;
    }

    .persona-top,.persona-bottom {
        right: 0;
        padding: 0;
    }
    .persona-top{
        top:100px;
    }
    .persona-center{
        left: 2px;
        padding: 0;
    }
}