/* industries.css - Dedicated styles for Industries page */

/* Industries Hero Section */
.industries-hero {
    text-align: center;
    padding: 80px 40px;
    margin-bottom: 60px;
}

.industries-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
     background: linear-gradient(135deg, #ffffff 0%, #f0f3f4 50%, #f7f7f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.industries-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Industries Main Section */
.industries-main {
    margin: 80px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.industry-card:hover::before {
    left: 100%;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 188, 212, 0.3);
}

.industry-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.industry-card > p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.05rem;
}

.industry-solutions {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-solutions h4 {
    color: #00bcd4;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industry-solutions ul {
    list-style: none;
    padding: 0;
}

.industry-solutions li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.industry-solutions li:hover {
    color: white;
    transform: translateX(5px);
}

.industry-solutions li:last-child {
    border-bottom: none;
}

.industry-solutions li::before {
    content: '✓';
    color: #00bcd4;
    font-weight: bold;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.industry-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.benefit-item span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.industry-cta {
    text-align: center;
    margin-top: 25px;
}

/* Industry Cases Section */
.industry-cases {
    margin: 100px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
}

.case-studies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.case-study {
    padding: 35px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.case-study:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 188, 212, 0.3);
}

.case-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-industry {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(102, 126, 234, 0.2));
    color: #00bcd4;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-header h3 {
    font-size: 1.4rem;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.case-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.result-item {
    text-align: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.result-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00bcd4;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 188, 212, 0.3);
}

.result-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Technology Partners Section */
.technology-partners {
    margin: 100px 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.partner-category {
    padding: 30px 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.partner-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 188, 212, 0.3);
}

.partner-category h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.partner-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.partner-tech span {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.partner-tech span:hover {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.25), rgba(102, 126, 234, 0.25));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.2);
}

/* Industries CTA Section */
.industries-cta {
    margin: 100px 0;
}

.industries-cta .cta-content {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(102, 126, 234, 0.2));
    border: 1px solid rgba(0, 188, 212, 0.3);
}

.industries-cta .cta-content h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.industries-cta .cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Animation for industry items */
@keyframes industriesFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industry-card,
.case-study,
.partner-category {
    animation: industriesFadeInUp 0.6s ease-out;
}

/* Stagger animation for industry items */
.industry-card:nth-child(1) { animation-delay: 0.1s; }
.industry-card:nth-child(2) { animation-delay: 0.2s; }
.industry-card:nth-child(3) { animation-delay: 0.3s; }
.industry-card:nth-child(4) { animation-delay: 0.4s; }
.industry-card:nth-child(5) { animation-delay: 0.5s; }
.industry-card:nth-child(6) { animation-delay: 0.6s; }

.case-study:nth-child(1) { animation-delay: 0.2s; }
.case-study:nth-child(2) { animation-delay: 0.3s; }
.case-study:nth-child(3) { animation-delay: 0.4s; }

.partner-category:nth-child(1) { animation-delay: 0.3s; }
.partner-category:nth-child(2) { animation-delay: 0.4s; }
.partner-category:nth-child(3) { animation-delay: 0.5s; }

/* Responsive Design for Industries */
@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .case-studies {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .case-studies {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .industries-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-studies {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .industries-hero {
        padding: 60px 20px;
    }
    
    .industries-hero h1 {
        font-size: 2.5rem;
    }
    
    .industries-hero p {
        font-size: 1.1rem;
    }
    
    .industry-card {
        padding: 30px 25px;
    }
    
    .industry-card h3 {
        font-size: 1.6rem;
    }
    
    .case-results {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .result-number {
        font-size: 1.5rem;
    }
    
    .industries-cta .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .industries-cta .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-card {
        padding: 25px 20px;
    }
    
    .industry-card h3 {
        font-size: 1.4rem;
    }
    
    .industry-icon {
        font-size: 3rem;
    }
    
    .industry-solutions {
        padding: 15px;
    }
    
    .industry-solutions li {
        font-size: 0.9rem;
    }
    
    .case-studies {
        grid-template-columns: 1fr;
    }
    
    .case-study {
        padding: 25px 20px;
    }
    
    .case-header h3 {
        font-size: 1.3rem;
    }
    
    .case-results {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .result-item {
        padding: 12px 8px;
    }
    
    .result-number {
        font-size: 1.3rem;
    }
    
    .result-label {
        font-size: 0.75rem;
    }
    
    .partner-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-category {
        padding: 25px 20px;
    }
    
    .partner-tech {
        gap: 8px;
    }
    
    .partner-tech span {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .industries-cta .cta-content {
        padding: 40px 25px;
    }
    
    .industries-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .industries-cta .cta-content p {
        font-size: 1rem;
    }
}