/* Industries Page Styles */

.industries-page {
    min-height: 100vh;
    background: #f8fafc;
    padding-top: 80px;
}

/* Hero Section */
.industries-hero {
    position: relative;
    padding: 8px 0;
    background: linear-gradient(90deg, #1e3c72, #2a5298, #ff0081);
    overflow: hidden;
    margin-bottom: 10px;
    margin-top: 0;
}

.industries-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.industries-hero .gradient-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.industries-hero p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    margin-bottom: 0;
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 50%;
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: white;
    transform: rotate(45deg);
    bottom: -50px;
    left: 100px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: -75px;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: white;
    transform: rotate(30deg);
    bottom: 20%;
    right: 10%;
}

/* Industries Content Section */
.industries-content {
    padding: 30px 0;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.industries-grid .industry-card {
    width: calc(25% - 23px);
}

/* Industry Card - New Modern Design */
.industry-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* PDF Preview Container - Prominent Design */
.pdf-preview-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(145deg, #f0f4f8 0%, #e2e8f0 100%);
    cursor: pointer;
}

.pdf-preview-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.03) 100%);
    z-index: 1;
    pointer-events: none;
}

.pdf-preview {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* View PDF Overlay on Hover */
.pdf-preview-container::after {
    content: 'Click to Preview';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 5;
}

.industry-card:hover .pdf-preview-container::after {
    opacity: 1;
    transform: translateY(0);
}

/* Industry Icon - Floating Badge Style */
.industry-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 190px;
    right: 16px;
    z-index: 15;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.industry-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Industry Info Section */
.industry-info {
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.industry-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
    line-height: 1.4;
    padding-right: 50px;
}

.industry-info p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Download Button - Modern Style */
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
    width: 100%;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    background: linear-gradient(135deg, #5a6fd6 0%, #6a4190 100%);
}

.download-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.download-btn:hover i {
    transform: translateY(2px);
}

/* Company Profile Section */
.company-profile-section {
    margin-top: 20px;
}

.profile-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px 30px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.profile-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.profile-icon i {
    font-size: 3rem;
    color: white;
}

.profile-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.profile-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.download-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.download-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    color: #764ba2;
}

.download-btn-large i {
    font-size: 1.2rem;
}

/* CTA Section */
.industries-cta {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 50px 0;
    text-align: center;
    color: white;
}

.industries-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.industries-cta p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-secondary {
    background: white;
    color: #667eea;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: #764ba2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .industries-grid .industry-card {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .industries-grid .industry-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .industries-hero {
        padding: 60px 0 40px;
    }

    .industries-hero .gradient-title {
        font-size: 2.2rem;
    }

    .industries-hero p {
        font-size: 1rem;
    }

    .industries-grid .industry-card {
        width: 100%;
    }

    .industries-grid {
        gap: 24px;
        padding: 0 10px;
    }

    .industry-card {
        max-width: 100%;
    }

    .pdf-preview-container {
        height: 200px;
    }

    .industry-icon {
        top: 170px;
        width: 50px;
        height: 50px;
    }

    .industry-icon i {
        font-size: 1.3rem;
    }

    .industry-info {
        padding: 20px 16px 16px;
    }

    .industry-info h3 {
        font-size: 1.1rem;
        padding-right: 40px;
    }

    .profile-card {
        padding: 30px 20px;
    }

    .profile-icon {
        width: 80px;
        height: 80px;
    }

    .profile-icon i {
        font-size: 2.5rem;
    }

    .profile-content h2 {
        font-size: 1.6rem;
    }

    .profile-content p {
        font-size: 0.95rem;
    }

    .industries-cta {
        padding: 40px 0;
    }

    .industries-cta h2 {
        font-size: 1.8rem;
    }

    .industries-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .industries-hero .gradient-title {
        font-size: 1.8rem;
    }

    .pdf-preview-container {
        height: 180px;
    }

    .industry-icon {
        top: 150px;
        width: 46px;
        height: 46px;
        right: 12px;
    }

    .industry-icon i {
        font-size: 1.2rem;
    }

    .download-btn {
        padding: 11px 20px;
        font-size: 0.85rem;
    }

    .download-btn-large {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}
