@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    /* margin-top: 80px; */
}

:root {
    --primary-color: #0070C0;
    --p-color: #525252;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-container:hover {
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0070C0, #1976d2);
    border-radius: 8px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #333;
    margin: 0;
}

.login-btn {
    background-color: #0070C0;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 112, 192, 0.2);
}

.login-btn:hover {
    background-color: #005a9e;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 112, 192, 0.3);
}

.hero-section {
    background: url(images/hero-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
    color: #000;
    margin-bottom: 20px;
}

.hero-paragraph {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 30px;
    color: #333;
}

.cta-button {
    background-color: #0070C0;
    width: 197px;
    height: 48px;
    border-radius: 6px;
    padding: 12px 4px;
    color: white;
    border: none;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #005a9e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 112, 192, 0.3);
}

.feature-cards-container {
    position: relative;
}

.feature-content {
    width: 100%;
    max-width: 335px;
}

.feature-card {
    position: relative;
    height: 140px;
    width: 104%;
    margin-left: 15px;
    max-width: 450px;
    background: linear-gradient(135deg, #0070C0, #1e88e5);
    clip-path: polygon(0 10%, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 90%);
    display: flex;
    align-items: center;
    padding: 20px 50px 20px 30px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 112, 192, 0.2);
    opacity: 0.7;
    transform: translateX(-20px);
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 112, 192, 0.3);
}

.feature-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-card.card-1 {
    z-index: 3;
}

.feature-card.card-2 {
    background: linear-gradient(90deg, #00B5D3 0%, #00ACCB 67.65%, #00A6C5 100%);
    z-index: 2;
    margin: -15px;
    clip-path: polygon(30px 0, 100% 10%, 100% 90%, 30px 100%, 0 50%);
    padding: 20px 30px 20px 50px;
    justify-content: flex-end;
}

.feature-card.card-2 .feature-number {
    left: 10px;
    right: auto;
}

.feature-card.card-3 {
    background: linear-gradient(90deg, #3DABFF 0%, #4699D8 100%);
    z-index: 1;
    margin-top: -10px;
}

.feature-content {
    flex: 1;
    position: relative;
}

.feature-number {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #FFFFFF 0%, #F7F7F7 26.35%, #E2E2E2 66.89%, #CCCBCB 100%);
    color: #0070C0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    opacity: 0.95;
}

.alternative-section {
    margin-top: 80px;
}

.alternative-section-heading {
    font-weight: 600;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    max-width: 508px;
    margin-bottom: 20px;
}

.alternative-section-heading span {
    color: #0070C0;
}

.alternative-section-paragraph {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

/* Comparison Cards */
.comparison-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.comparison-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.synapse-card {
    border: 2px solid #0070C0;
}

.traditional-card {
    border: 2px solid #999;
}

.card-icon {
    margin-right: 20px;
}

.card-content h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 18px;
}

.card-content p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

/* Text styles */
.section-heading, .section-subheading {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    margin: 0px;
}


.section-subheading {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.section-text {
    color: var(--p-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;


}

/* Leadership button */
.leadership-button {
    background-color: #0070C0;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
}

/* Leadership wheel */
.leadership-wheel-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.wheel-center-content {
    text-align: center;
}

.wheel-center-title {
    margin: 0;
    color: #0070C0;
    font-weight: 600;
    font-size: 14px;
}

.wheel-center-subtitle {
    margin: 0;
    color: #666;
    font-size: 12px;
}

.dimension-point {
    position: absolute;
}

.point-circle {
    width: 60px;
    height: 60px;
    background: #0070C0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 112, 192, 0.3);
}

.point-label {
    position: absolute;
    text-align: center;
    width: 120px;
}

.point-label h6 {
    color: #333;
    font-size: 12px;
    font-weight: 600;
    margin: 5px 0;
}

.point-label p {
    color: #666;
    font-size: 10px;
    margin: 0;
    line-height: 1.3;
}

/* Dimension points positioning */
.dimension-top {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.dimension-top .point-label {
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
}

.dimension-top-right {
    top: 25%;
    right: 10px;
}

.dimension-top-right .point-label {
    top: 70px;
    right: 0;
}

.dimension-bottom-right {
    top: 75%;
    right: 10px;
}

.dimension-bottom-right .point-label {
    bottom: 70px;
    right: 0;
}

.dimension-bottom {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.dimension-bottom .point-label {
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
}

.dimension-bottom-left {
    top: 75%;
    left: 10px;
}

.dimension-bottom-left .point-label {
    bottom: 70px;
    left: 0;
}

.dimension-top-left {
    top: 25%;
    left: 10px;
}

.dimension-top-left .point-label {
    top: 70px;
    left: 0;
}
.synapse-scope-img{
    width: 100%;
    max-width: 386px;
    max-height: 163px;
}
/* Communication section */
.communication-section {
    padding-top: 100px;
}

.communication-section .container >.row >.section-heading,
.communication-section .container > .row >.section-subheading {
    font-weight: 600;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0%;
    text-align: center;

}

.communication-section .section-subheading {
    color: #0070C0;
}
.integrity-section{
    background: linear-gradient(rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.408)), url(images/integrity-bg.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 160px;
    padding-bottom: 160px;
    color: #fff;
    height: 571px;
    margin-bottom: 30px;
}
.integrity-section .section-heading{
    font-weight: 500;
    font-size: 36px;
    line-height: 47px;
    letter-spacing: 0%;
    text-align: center;
    max-width: 702px;
    margin-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 36px;
        line-height: 44px;
    }

    .feature-cards-container {
        padding-left: 20px;
        margin-top: 40px;
    }

    .feature-card {
        max-width: 100%;
    }

    .leadership-wheel-container {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 28px;
        line-height: 36px;
    }
    .feature-card.card-2{
        margin-left: -29px;
    }
    .cta-button {
        width: 100%;
        margin-bottom: 15px;
    }

    .feature-card {
       margin:0 ;
       height: 200px;
    }

    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .leadership-wheel-container {
        width: 250px;
        height: 250px;
    }

    .wheel-center {
        width: 80px;
        height: 80px;
    }

    .point-circle {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}