body {
    font-family: 'Roboto', sans-serif;    
    margin: 0;
    padding: 0;
    /* background-color: #f4f4f4; Light background color for contrast */
    background: linear-gradient(to bottom, #c6feff, #f4f4f4); 

}

.ind-main-content {
    padding: 20px 50px;
}

.box-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 40px;
}

/* Industry Section */
.industry {
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align:center;
}

.industry h2 {
    font-size: 1.5rem;
    color: #00254a;
    margin-bottom: 20px;
    text-align: center;
}

.industry-content {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    gap: 20px;
  
}

.industry-content .box {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.industry-content .box:hover {
    transform: translateY(-5px);
}

.industry-content p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}


@media (min-width: 1024px) {
    .industry-columns {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 4 columns */
        grid-template-rows: repeat(4, auto);  /* 2 rows */
        gap: 20px; /* Adjust gap as needed */
    }
}

@media (max-width: 1023px) {
    .industry-columns {
        display: flex;
        flex-direction: column;
    }
}
.industry-column {
    flex: 1;
}

.industry {
    margin-bottom: 20px; /* Ensure some space between sections */
}


/* .industry h2 {
    color: #0a3d62;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.industry h3 {
    color: #0a3d62;
    font-size: 22px;
    margin-top: 20px;
    text-align: center;
}

.industry p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.industry img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
} */


