/* Solutions.css - Custom styles for solutions.html */

/* Hero Section */
.solutions-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.solutions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.solutions-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: grain 8s infinite;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-5%, -5%); }
    50% { transform: translate(-10%, 5%); }
    75% { transform: translate(5%, -10%); }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20%;
    padding-bottom: 45px;
}


.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin-bottom: 1.5rem;
    margin-left: 1rem;
    line-height: 1.2;
    margin-top: 50px;
}

.gradient-text {
    background: linear-gradient(75deg, #0055ff, #0091ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    margin-left: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: rgb(0, 0, 0);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {


    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Industry Solutions */
.industry-solutions {
    background: #f8fafc;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .industry-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.industry-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.industry-card.retail::before {
    background: #000000;
}

.industry-card.healthcare::before {
    background: #000000;
}

.industry-card.hospitality::before {
    background: #000000;
}

.industry-card.education::before {
    background: #000000;
}

.industry-card.corporate::before {
    background: #000000;
}

.industry-card.transportation::before {
    background: #000000;
}

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

.industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.retail .industry-icon {
    background: #061cfc;
}

.healthcare .industry-icon {
    background: #061cfc;
}

.hospitality .industry-icon {
    background: #061cfc;
}

.education .industry-icon {
    background: #061cfc;
}

.corporate .industry-icon {
    background: #061cfc;
}

.transportation .industry-icon {
    background: #061cfc;
}

.industry-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.industry-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.industry-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.industry-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.industry-cta {
    color: #061cfc;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.industry-cta:hover {
    color: #0040ff;
    transform: translateX(4px);
}

/* Solution Types */
.solution-types {
    background: #f8fafc;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.solution-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.solution-icon.cloud {
    background: #061cfc;
}

.solution-icon.hybrid {
    background: #061cfc;
}

.solution-icon.custom {
    background: #061cfc;
}

.solution-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.solution-body p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568;
}

.benefit i {
    color: #48bb78;
    font-size: 1rem;
}

/* Use Cases */
.use-cases {
    background: white;
}

.use-case-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: #061cfc;
    color: #061cfc;
    background: rgba(6, 28, 252, 0.1);
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.use-case-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.use-case-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.use-case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.use-case-item:hover .use-case-image img {
    transform: scale(1.05);
}

.use-case-content {
    padding: 1.5rem;
}

.use-case-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.use-case-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Integrations */
.integrations {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.integration-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.integration-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.integration-logo {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.integration-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: #061cfc;
}

.integration-logo i {
    font-size: 2rem;
    color: #061cfc;
    margin-bottom: 0.75rem;
    display: block;
}

.integration-logo span {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

/* Solutions CTA */
.solutions-cta {
    background: linear-gradient(75deg, #01134e 0%, #012bb4 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.solutions-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.solutions-cta .section-title,
.solutions-cta .section-subtitle {
    color: white;
}

.solutions-cta .section-subtitle {
    opacity: 0.9;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.cta-option h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-option p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .industry-grid,
    .solution-cards,
    .use-case-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .integration-logos {
        grid-template-columns: 1fr;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
    
    .solutions-hero {
        min-height: 60vh;
    }
    
    .hero-content {
        padding-top: 12%;
    }
}

@media (max-width: 425px){
    .hero-content{
        padding-top: 30%;
        margin-left: 0;
    }
    .hero-title{
        font-size: clamp(2rem, 6vw, 3rem);
        
    }
} 

/* Dark Mode Styles */
body.dark-mode .solutions-hero {
    background: url('../img/abstract_lines_transparent busy (white).png') center/cover no-repeat;
}

body.dark-mode .hero-subtitle {
    color: white;
}
body.dark-mode .hero-title {
    color: white;
}
body.dark-mode .hero-content {
    color: white;
}
body.dark-mode .stat-label {
    color: white;
}    

body.dark-mode .gradient-text {
    background: linear-gradient(to right, #0040ff, #44aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .stat-number {
    color: #44aaff;
}

body.dark-mode .industry-solutions {
    background: #1a1a1a;
}

body.dark-mode .industry-card {
    background: #2d2d2d;
    border-color: rgba(68, 170, 255, 0.15);
}

body.dark-mode .industry-card::before {
    background: #44aaff;
}

body.dark-mode .industry-icon {
    background: #44aaff !important;
}

body.dark-mode .industry-content h3 {
    color: white;
}

body.dark-mode .industry-content p {
    color: #b5d6ff;
}

body.dark-mode .industry-features li {
    color: #b5d6ff;
}

body.dark-mode .industry-cta {
    color: #44aaff;
}

body.dark-mode .industry-cta:hover {
    color: #66bbff;
}

body.dark-mode .solution-types {
    background: #1a1a1a;
}

body.dark-mode .solution-card {
    background: #2d2d2d;
    border-color: rgba(68, 170, 255, 0.15);
}

body.dark-mode .solution-icon {
    background: #44aaff !important;
}

body.dark-mode .solution-header h3 {
    color: white;
}

body.dark-mode .solution-body p {
    color: #b5d6ff;
}

body.dark-mode .benefit {
    color: #b5d6ff;
}

body.dark-mode .use-cases {
    background: #1a1a1a;
}

body.dark-mode .tab-btn {
    border-color: rgba(68, 170, 255, 0.3);
    color: #b5d6ff;
    background: transparent;
}

body.dark-mode .tab-btn.active,
body.dark-mode .tab-btn:hover {
    border-color: #44aaff;
    color: #44aaff;
    background: rgba(68, 170, 255, 0.1);
}

body.dark-mode .use-case-item {
    background: #2d2d2d;
    border: 1px solid rgba(68, 170, 255, 0.15);
}

body.dark-mode .use-case-content h4 {
    color: white;
}

body.dark-mode .use-case-content p {
    color: #b5d6ff;
}

body.dark-mode .integrations {
    background: #1a1a1a;
}

body.dark-mode .integration-category h3 {
    color: white;
}

body.dark-mode .integration-logo {
    background: #2d2d2d;
    border-color: rgba(68, 170, 255, 0.15);
}

body.dark-mode .integration-logo:hover {
    border-color: #44aaff;
}

body.dark-mode .integration-logo i {
    color: #44aaff;
}

body.dark-mode .integration-logo span {
    color: #b5d6ff;
}

body.dark-mode .solutions-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

body.dark-mode .cta-option {
    background: rgba(68, 170, 255, 0.1);
    border-color: rgba(68, 170, 255, 0.2);
}

body.dark-mode .cta-option:hover {
    background: rgba(68, 170, 255, 0.15);
}

body.dark-mode .cta-icon {
    background: rgba(68, 170, 255, 0.2);
}

body.dark-mode .section-title {
    color: white;
}

body.dark-mode .section-subtitle {
    color: #b5d6ff;
}
body.dark-mode .cta-option h3 {
    color: white;
}