/* Hero Section Styles */
.hero-section {
    padding: 80px 0 60px 0;
    background: #f8f9fa;
}

.hero-content {
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-content .highlight,.highlight {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary-custom {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

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

.btn-secondary-custom {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
}

/* Hero Image Styles */
.hero-image-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.hero-main-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.card-success {
    top: 20%;
    right: -10%;
    z-index: 10;
}

.card-stats {
    bottom: 30%;
    left: -15%;
    z-index: 10;
}

.card-leadership {
    top: 60%;
    right: 10%;
    z-index: 10;
}

.success-text {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.stats-content {
    display: flex;
    gap: 20px;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.leadership-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Value Section Styles */
.value-section {
    padding: 80px 0;
    background: white;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Problem Section Styles */
.problem-section {
    padding: 80px 0;
    background: white;
}

.problem-content h2 {
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 3rem;
}

.problem-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

.comparison-container {
    margin-top: 3rem;
}

.comparison-card {
    padding:1.2rem;
    border-radius: 12px;
    height: 100%;
    margin-bottom: 0rem;
}

.legacy-card {
    background: #F6F6F6;
    border: 1px solid #F6F6F6;
}

.miss-card {
    background: #D3E9FF;
    border: 1px solid #D3E9FF;
}

.comparison-card h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: center;
}

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

.comparison-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    text-align: center;
}

.comparison-item span {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Solution Section Styles */
.solution-section {
    background: white;
}

/* Header Section */
.solution-header {
    padding: 80px 0 40px 0;
    background: #F6F6F6;
}

.solution-header h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5625rem;
}

.solution-header p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.solution-content{
    background: #F6F6F6;
    padding-bottom: 40px;
}
.solution-content .container-xxl{
    background: #05314E;
    color: white;
    padding: 60px;
    border-radius: 12px;
    min-height: 500px;
    align-content: center;
}

/* Tabs Navigation */
.solution-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 0;
    position: relative;
}

.tab-controls {
    margin-left: 2rem;
}

.play-pause-btn {
    background: #05314E;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-pause-btn:hover {
    background: #05314E;
    transform: scale(1.1);
}

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

.solution-tab {
    background: transparent;
    color: var(--text-light);
    border: none;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.solution-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.solution-tab:hover {
    color: var(--text-primary);
}

/* Tab Content */
.tab-content {
    display: none;
    /* padding: 3rem 0; */
}
.read-more-link{
    color: #FFFFFF;
    font-weight: 500;
    text-decoration: none;
}
.tab-content.active {
    display: block;
}

.tab-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}
.tab-image{
    display: flex;
    justify-content: center;
    height: 100%;
    max-height: 350px;

}
.outcome-how {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.outcome-item, .how-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.outcome-item strong, .how-item strong {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.outcome-item span, .how-item span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Hiring Cards */
.hiring-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.hiring-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.hiring-card:hover {
    transform: translateY(-2px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hiring-card h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.card-btn:hover {
    background: var(--primary-hover);
}

/* Market Flow */
.market-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.role-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.role-badge.synapse {
    background: #4CAF50;
}

.arrow {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.matching-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    min-width: 200px;
}

.matching-box h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.match-score {
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.result-item {
    padding: 4px 0;
    font-size: 0.85rem;
}

.result-item.error {
    color: #f44336;
}

.result-item.success {
    color: #4CAF50;
}

/* Professional Image */
.professional-image {
    position: relative;
}

.professional-image img {
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
}

.insight-cards {
    position: absolute;
    top: 20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insight-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 200px;
}

.insight-card.growth {
    background: #e3f2fd;
}

.insight-card h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.insight-card p {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.chart-icon {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Leadership Image */
.leadership-image img {
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
}

/* Who Should Use This Section */
.who-section {
    background: #F0E4FF;
}
.who-section .who-content{
    padding: 80px 0;

}

.who-content h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.who-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.who-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.who-item i {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.087);
    font-size: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.who-item span {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}
.who-image{
   height: 100%;
}
.who-image img {
    width: 100%;
}

/* What You'll Achieve Section */
.achieve-section {
    padding: 80px 0;
    background: white;
}

.achieve-section h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 3rem;
    line-height: 1.3;
}

.achieve-card {
    background: #F6F6F6;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.achieve-icon {
    margin-bottom: 1.5rem;
}

.achieve-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.achieve-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

.stat-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.4;
}

/* Plan for Today and Tomorrow Section */
.plan-section {
    padding: 80px 0;
}

.plan-section h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.plan-images-container {
    position: relative;
    width: 100%;
    height: 500px; /* Fixed height to ensure all images match */
}

.plan-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1;
}

.plan-image.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.plan-image img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-height: 500px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-feature-card {
    background: #F6F6F6;
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid #F6F6F6 ;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.plan-feature-card:hover {
    transform: translateY(-2px);
    border: 1px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-hover);
}

.learn-more i {
    font-size: 0.8rem;
}

/* Why Organizations Trust SynapseScope Section */
.trust-section {
    padding: 80px 0;
    background: #05314E;
    color: white;
}

.trust-content h2 {
    font-size: 2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-point i {
    color: white;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.trust-point span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}
.trust-image{
    width: 100%;
    max-width: 400px;
}
.trust-image img {
    border-radius: 12px;
    width: 100%;
}

/* Ready to Transform Your Hiring Section */
.cta-section {
    
    background:url('./images/cta-bg.png');
    background-size: cover;
    background-position: center;
}

.cta-content {
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

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

.cta-image img {
    margin-top: 2.6rem;
    border-radius: 12px;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        text-align: center;
        width: 100%;
    }
    
    .floating-card {
        position: static;
        margin: 10px 0;
        animation: none;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .value-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stats-content {
        flex-direction: column;
        gap: 10px;
    }
}