/* Hero section starts here */
.industry-page-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.industry-page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.industry-page-hero-image-mobile {
    display: block;
}

.industry-page-hero-image-desktop {
    display: none;
}

.industry-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.industry-page-hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    
}

.industry-page-hero-title-wrapper {
    max-width: 600px;
    color: white;
    margin-top: 20%;
}

@media (max-width: 600px) {
    .industry-page-hero-title-wrapper {
        margin-top: 54%;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}

.industry-page-hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    color: white;
}

.industry-page-hero-subtitle {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .industry-page-hero-image-mobile {
        display: none;
    }

    .industry-page-hero-image-desktop {
        display: block;
    }

    .industry-page-hero-content {
        /* padding: 0 60px; */
    }

    .industry-page-hero-title {
        font-size: 3.5rem;
    }

    .industry-page-hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Hero section ends here */

/* About section starts here */
.industry-page-about {
    background-color: white;
}

.industry-page-about-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.industry-page-about-content {
    flex: 1;
}

.industry-page-about-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
    color: #222242;
    line-height: 1.3;
}

.industry-page-about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #222242;
    margin: 0 0 1rem 0;
}

.industry-page-about-image-wrapper {
    flex: 1;
}

.industry-page-about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

@media (min-width: 768px) {
    .industry-page-about {
        padding: 80px 40px;
    }

    .industry-page-about-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .industry-page-about-title {
        font-size: 2.5rem;
    }

    .industry-page-about-description {
        font-size: 1.1rem;
    }

    .industry-page-about-image {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .industry-page-about {
        padding: 100px 60px;
    }

    .industry-page-about-title {
        font-size: 3rem;
    }

    .industry-page-about-image {
        height: 500px;
    }
}

/* About section ends here */

/* Product section starts here */
.industry-page-product {
    background-color: #f8f9fa;
}

.industry-page-product-container {}

.industry-page-product-header {
    text-align: center;
    margin-bottom: 50px;
}

.industry-page-product-title {
    font-size: 2rem;
    font-weight: bold;
    color: #222242;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.industry-page-product-title-underline {
    width: 80px;
    height: 3px;
    background-color: #dc3545;
    margin: 0 auto;
}

.industry-page-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.industry-page-product-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-page-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.industry-page-product-image-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.industry-page-product-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.industry-page-product-info {
    text-align: center;
}

.industry-page-product-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222242;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.industry-page-product-details-toggle {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 15px;
    padding: 5px 0;
}

.industry-page-product-details-toggle:hover {
    color: #c82333;
}

.industry-page-product-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.industry-page-product-arrow.open {
    transform: rotate(180deg);
}

.industry-page-product-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.industry-page-product-description.show {
    max-height: 500px;
    margin-top: 15px;
}

@media (min-width: 768px) {
    .industry-page-product {
        padding: 80px 40px;
    }

    .industry-page-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .industry-page-product-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .industry-page-product {
        padding: 100px 60px;
    }

    .industry-page-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industry-page-product-title {
        font-size: 3rem;
    }
}

/* Product section ends here */

/* Process section starts here */
.industry-page-process {
    background-color: white;
}

.industry-page-process-container {}

.industry-page-process-header {
    margin-bottom: 40px;
}

.industry-page-process-subtitle {
    font-size: 1rem;
    color: #222242;
    margin-bottom: 10px;
    font-weight: 500;
}

.industry-page-process-title {
    font-size: 2rem;
    font-weight: bold;
    color: #222242;
    margin-bottom: 15px;
    line-height: 1.3;
}

.industry-page-process-title-underline {
    width: 80px;
    height: 3px;
    background-color: #dc3545;
    margin-bottom: 30px;
}

.industry-page-process-content {
    color: #666;
    line-height: 1.8;
}

.industry-page-process-paragraph {
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
}

.industry-page-process-subheading {
    font-size: 1.1rem;
    color: #222242;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

@media (min-width: 768px) {
    .industry-page-process {
        padding: 80px 40px;
    }

    .industry-page-process-subtitle {
        font-size: 1.1rem;
    }

    .industry-page-process-title {
        font-size: 2.5rem;
    }

    .industry-page-process-paragraph {
        font-size: 1.05rem;
    }

    .industry-page-process-subheading {
        font-size: 1.15rem;
    }
}

@media (min-width: 1024px) {
    .industry-page-process {
        padding: 100px 60px;
    }

    .industry-page-process-title {
        font-size: 3rem;
    }

    .industry-page-process-paragraph {
        font-size: 1.1rem;
    }

    .industry-page-process-subheading {
        font-size: 1.2rem;
    }
}

/* Process section ends here */

/* Certification section starts here */
.industry-page-certification {
    background-color: #f8f9fa;
}

.industry-page-certification-container {}

.industry-page-certification-header {
    text-align: center;
    margin-bottom: 50px;
}

.industry-page-certification-title {
    font-size: 2rem;
    font-weight: bold;
    color: #222242;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.industry-page-certification-title-underline {
    width: 80px;
    height: 3px;
    background-color: #dc3545;
    margin: 0 auto;
}

.industry-page-certification-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.industry-page-certification-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.industry-page-certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.industry-page-certification-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.industry-page-certification-footer {
   
    display: flex;
    justify-content: space-between;
}

.industry-page-certification-footer img {
    object-fit: contain;
}

.industry-page-certification-badge {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222242;
    text-transform: uppercase;
}

.industry-page-certification-badge-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222242;
    margin-top: 5px;
}

/* Modal styles */
.industry-page-certification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.industry-page-certification-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.industry-page-certification-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-page-certification-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.industry-page-certification-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transition: transform 0.2s ease;
}

.industry-page-certification-modal-close:hover {
    transform: scale(1.2);
}

.industry-page-certification-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: black;
    border: none;
    font-size: 40px;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.industry-page-certification-modal-nav:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.industry-page-certification-modal-prev {
    left: 20px;
}

.industry-page-certification-modal-next {
    right: 20px;
}

.industry-page-certification-modal-counter {
    position: absolute;
    top: -40px;
    left: 0;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.industry-page-certification-modal-actions {
    position: absolute;
    top: -40px;
    right: 150px;
    display: flex;
    gap: 20px;
}

.industry-page-certification-modal-action {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.2s ease;
}

.industry-page-certification-modal-action:hover {
    transform: scale(1.2);
}

@media (min-width: 640px) {
    .industry-page-certification-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .industry-page-certification {
        padding: 80px 40px;
    }

    .industry-page-certification-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .industry-page-certification {
        padding: 100px 60px;
    }

    .industry-page-certification-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .industry-page-certification-title {
        font-size: 3rem;
    }
}

/* Certification section ends here */