.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #004085;
    margin-bottom: 30px;
}
.industry-card {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}
.industry-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.industry-card h5 {
    font-size: 1.25rem;
    margin: 15px 0;
    color: #333;
}
.industry-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    padding: 0 15px;
}
.industry-card ul {
    list-style-type: disc;
    padding: 0 30px;
    margin: 15px 0;
    color: #555;
}
p{
font-weight: bold;
}
  /* Global modal styles */
  .modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 10px;
    width: 90%; /* Default for small screens */
    height: 90%; /* Default for small screens */
    max-width: 1000px; /* Restrict size on larger screens */
    max-height: 1000px; /* Restrict size on larger screens */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.close {
    position: absolute;
    top: 3px;
    right: 0px;
    font-size: 30px;
    font-weight: bold;
    color: #f1f1f1;
    cursor: pointer;
}

#pdfViewer {
    width: 100%;
    height: 100%;
    border: none;
}

/* Ensure proper scaling for very small screens (e.g., 300px) */
@media (max-width: 992px) {
    .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0; /* Remove rounded corners for small screens */
    }
   
    .close {
        font-size: 24px;
        top: 5px;
        right: 10px;
    }

    .industry-card h5{
        text-align: center;
    }
}