/* industries.css */

.industries-hero-section {
    position: relative;
    margin: 0 24px 24px 24px;
    border-radius: 24px;
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    min-height: 580px;
    background-image: url('../assets/Images/industry-hero.webp'); /* Placeholder for the actual image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* If the image does not have baked-in text and we need an overlay */
.industries-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(12, 33, 63, 0.85) 0%, rgba(12, 33, 63, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.industries-hero-content {
    padding: 60px 0 40px 0;
    width: 100%;
    max-width: 950px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease forwards;
}

.industries-title {
    color: white;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.industries-title span {
    color: var(--primary-orange);
}

.industries-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 850px;
    font-weight: 400;
}

/* Fallback if the user meant to just show the image as-is because it has baked text */
.industries-hero-image-only {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

@media (max-width: 1200px) {
    .industries-title {
        font-size: 52px;
    }
    .industries-hero-content {
        padding: 60px 0;
    }
}

@media (max-width: 992px) {
    .industries-title {
        font-size: 42px;
    }
    .industries-hero-content {
        padding: 40px 0;
    }
}

/* Explore Industries Section */
.explore-industries-section {
    padding: 80px 0;
    background-color: white; 
}

.explore-header {
    margin-bottom: 48px;
}







.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: white;
    border: 1.5px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.industry-card.reveal {
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-orange); /* Primary Orange */
    transition: all 0.2s ease;
}

.industry-card:hover .industry-number {
    color: var(--primary-orange); /* Primary Orange */
}

.industry-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.industry-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #fff7ed;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.industry-card:hover .industry-icon-wrapper {
    background-color: var(--primary-orange);
    color: white;
}

.industry-number {
    font-size: 16px;
    font-weight: 700;
    color: #e5e7eb;
    transition: color 0.2s ease;
}

.industry-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

/* Blueprint Section */
.blueprint-section {
    background-color: #0b1328;
    margin: 0 24px 24px 24px;
    border-radius: 24px;
    padding: 80px 40px;
    overflow: hidden;
}

.blueprint-header {
    margin-bottom: 60px;
    max-width: 800px;
}







.blueprint-title {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.blueprint-title span {
    color: var(--primary-orange);
}

.blueprint-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 700px;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.blueprint-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
}

.blueprint-card.reveal {
    opacity: 0;
    transform: translateX(120px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.blueprint-card.reveal.active {
    opacity: 1;
    transform: translateX(0);
}

.blueprint-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.layer-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 0.5px;
}

.layer-text.blue-text {
    color: #5a7398;
}

.layer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot-orange {
    background-color: var(--primary-orange);
}

.dot-blue {
    background-color: #5a7398;
}

.blueprint-card-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
}

.blueprint-card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1200px) {
    .blueprint-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blueprint-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blueprint-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .blueprint-grid {
        grid-template-columns: 1fr;
    }
}

.industry-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.industry-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-orange);
    text-decoration: none;
    display: inline-block;
}

.industry-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-sections {
    padding: 100px 24px;
    background-color: rgb(255, 255, 255); 
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}









.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 24px 0;
    line-height: 1.15;
    letter-spacing: -1px;
}

.cta-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 48px 0;
    max-width: 720px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background-color: var(--primary-orange);
    color: white;
    padding: 16px 36px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 24px -8px rgba(232, 93, 36, 0.5);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-primary:hover {
    background-color: #cc511f;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -8px rgba(232, 93, 36, 0.6);
}

.btn-cta-outline {
    background-color: transparent;
    color: var(--primary-orange);
    border: 1.5px solid var(--primary-orange);
    padding: 16px 36px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background-color: #fff7ed;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .industries-hero-section {
        min-height: 400px;
        margin: 0 16px 16px 16px;
    }

    .cta-title {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn-cta-primary, .btn-cta-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
