/* Solutions Page Specific Styles */

/* Hero Section */
.solutions-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.solutions-hero .parallax-bg {
    background-image: url('../images/solutions-hero-bg.jpg');
    opacity: 0.15;
}

.min-vh-80 {
    min-height: 80vh;
}

/* Solution Sections */
.solution-section {
    position: relative;
    padding: 100px 0;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.solution-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.solution-section:nth-child(odd) .parallax-bg {
    background-color: #f8f9fa;
}

.solution-section.bg-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solution-section .container {
    position: relative;
    z-index: 2;
}

/* Solution Image Container */
.solution-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.solution-section:hover .solution-image-container {
    transform: translateY(-10px);
}

.solution-image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.solution-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.solution-image-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

.image-prompt {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-top: 3px solid #667eea;
    font-size: 0.85rem;
    color: #666;
}

/* Solution Content */
.solution-content {
    padding: 40px;
}

.solution-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(102, 126, 234, 0.1);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}

.solution-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.solution-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* Solution Features */
.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    padding: 8px 0;
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: flex-start;
}

.solution-features i {
    color: #4CAF50;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.cta-box h3 {
    color: white;
}

.cta-box .btn-outline-light {
    border-color: white;
    color: white;
}

.cta-box .btn-outline-light:hover {
    background: white;
    color: #667eea;
}

/* Solution Navigation */
.solution-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.solution-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-nav li {
    margin: 10px 0;
}

.solution-nav a {
    display: block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.solution-nav a.active,
.solution-nav a:hover {
    background: #667eea;
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .solution-content {
        padding: 20px;
    }
    
    .solution-image-placeholder {
        height: 300px;
    }
    
    .solution-number {
        font-size: 3rem;
    }
    
    .solution-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .solutions-hero {
        padding: 150px 0 80px;
    }
    
    .solution-section {
        padding: 60px 0;
    }
    
    .solution-image-placeholder i {
        font-size: 3rem;
    }
    
    .cta-box {
        padding: 30px 20px !important;
    }
}

/* Animation for solution sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-section {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover effects */
.solution-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.solution-features li:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}
/* ===== INDUSTRY FOCUS SECTION ===== */
.industry-focus {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.industry-listgroup-container {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

/* Horizontal List Group */
.list-group-horizontal {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
}

.list-group-horizontal::-webkit-scrollbar {
    height: 8px;
}

.list-group-horizontal::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.list-group-horizontal::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.list-group-horizontal .list-group-item {
    border: none;
    background: transparent;
    min-width: 180px;
    text-align: center;
    padding: 20px 15px;
    margin-right: 10px;
    border-radius: 10px !important;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.list-group-horizontal .list-group-item:hover {
    background: rgba(57, 73, 171, 0.05);
    transform: translateY(-5px);
    border-color: rgba(57, 73, 171, 0.1);
}

.list-group-horizontal .list-group-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(57, 73, 171, 0.3);
}

.list-group-horizontal .list-group-item.active .industry-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(57, 73, 171, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.industry-name {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Industry Content */
.tab-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industry-content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-content-wrapper h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.industry-content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.industry-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #444;
    display: flex;
    align-items: flex-start;
}

.industry-benefits li:last-child {
    border-bottom: none;
}

.industry-benefits li strong {
    color: var(--primary-color);
    min-width: 180px;
    display: inline-block;
}

.industry-image {
    padding-left: 30px;
}

.industry-image .image-placeholder {
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
}

/* Industry Responsive */
@media (max-width: 992px) {
    .industry-image {
        padding-left: 0;
        margin-top: 30px;
    }

    .industry-image .image-placeholder {
        height: 300px;
    }

    .list-group-horizontal .list-group-item {
        min-width: 160px;
        padding: 15px 10px;
    }

    .industry-content-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .industry-focus {
        padding: 60px 0;
    }

    .list-group-horizontal .list-group-item {
        min-width: 140px;
        padding: 12px 8px;
    }

    .industry-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .industry-name {
        font-size: 0.8rem;
    }

    .industry-content-wrapper {
        padding: 20px;
    }

    .industry-benefits li {
        flex-direction: column;
    }

    .industry-benefits li strong {
        min-width: 100%;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .list-group-horizontal .list-group-item {
        min-width: 120px;
        padding: 10px 5px;
    }

    .industry-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .industry-name {
        font-size: 0.75rem;
    }

    .industry-content-wrapper h3 {
        font-size: 1.5rem;
    }
}

/* Active State Animation */
.list-group-item.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 20px rgba(57, 73, 171, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(57, 73, 171, 0.5);
    }
    100% {
        box-shadow: 0 10px 20px rgba(57, 73, 171, 0.3);
    }
}

/* ============================================================
   Coming Soon  —  Future Capability Treatment (Solutions 04-08)
   ============================================================ */

/* ---- Inline Badge (beside h3 title) ---- */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: middle;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    padding: 5px 14px;
    border-radius: 40px;
    white-space: nowrap;
    position: relative;
    top: -4px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.30);
    animation: badgePulse 3s ease-in-out infinite;
}

.coming-soon-badge i {
    font-size: 0.75rem;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(245, 158, 11, 0.30); }
    50%      { box-shadow: 0 4px 16px rgba(245, 158, 11, 0.50); }
}

/* ---- Diagonal Corner Ribbon (on image placeholder) ---- */
.coming-soon-ribbon {
    position: absolute;
    top: 24px;
    right: -36px;
    z-index: 10;
    width: 180px;
    text-align: center;
    padding: 7px 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

/* ---- Feature-list icon color for future items ---- */
.coming-soon .solution-features i.bi-circle-fill {
    color: #f59e0b;
    font-size: 0.55rem;
    margin-top: 7px;
}

/* ---- Subtle section treatment ---- */
/* A slight visual soften so the eye naturally distinguishes current vs future */
.coming-soon .solution-content {
    position: relative;
}

/* Left-edge roadmap accent bar */
.coming-soon .solution-content::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #f59e0b 0%, rgba(245, 158, 11, 0.15) 100%);
    border-radius: 3px;
}

/* ---- Responsive adjustments ---- */
@media (max-width: 992px) {
    .coming-soon-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .coming-soon-ribbon {
        width: 160px;
        font-size: 0.6rem;
        top: 20px;
        right: -40px;
    }
}

@media (max-width: 768px) {
    .coming-soon-badge {
        font-size: 0.55rem;
        padding: 3px 8px;
        gap: 4px;
        top: -2px;
    }

    .coming-soon-badge i {
        font-size: 0.6rem;
    }

    .coming-soon-ribbon {
        width: 140px;
        font-size: 0.55rem;
        top: 16px;
        right: -42px;
    }

    .coming-soon .solution-content::before {
        display: none;
    }
}