/* Thermonic Website - Industries Page CSS Styles
   This stylesheet contains styles specific to the industries page
*/

/* Industries Header Section */
.industries-header-section {
    padding: 120px 0 60px;
    background-color: #f1faee;
    text-align: center;
}

.industries-header-content h1 {
    color: #1d3557;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Industries Grid Section */
.industries-grid-section {
    padding: 80px 0;
}

.industry-box {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.industry-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-image {
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.industry-box:hover .industry-image img {
    transform: scale(1.1);
}

.industry-content {
    padding: 20px;
}

.industry-content h3 {
    margin-bottom: 15px;
    color: #1d3557;
    position: relative;
    padding-bottom: 10px;
}

.industry-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #3c5f8e;
}

/* Industry Applications Section */
.industry-applications-section {
    padding: 80px 0;
    background-color: #f1faee;
}

.application-box {
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.application-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.application-icon {
    margin-bottom: 20px;
}

.application-icon i {
    font-size: 48px;
    color: #3c5f8e;
}

.application-box h3 {
    margin-bottom: 15px;
    color: #1d3557;
}

/* Media Queries */
@media (max-width: 1199.98px) {
    .industries-header-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .industries-header-content h1 {
        font-size: 2.2rem;
    }
    
    .industries-header-section {
        padding: 100px 0 50px;
    }
    
    .industries-grid-section,
    .industry-applications-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .industries-header-content h1 {
        font-size: 2rem;
    }
    
    .industries-header-section {
        padding: 80px 0 40px;
    }
    
    .industry-image {
        height: 200px;
        margin-bottom: 15px;
    }
    
    .industries-grid-section,
    .industry-applications-section {
        padding: 50px 0;
    }
}

@media (max-width: 575.98px) {
    .industries-header-content h1 {
        font-size: 1.8rem;
    }
    
    .industries-header-section {
        padding: 70px 0 30px;
    }
    
    .industries-grid-section,
    .industry-applications-section {
        padding: 40px 0;
    }
}

.blog-description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 5.6em; /* Adjust depending on line-height */
  line-height: 1.4em;
  position: relative;
}



.blog-card{
    margin-bottom: 60px;
    margin-top: 20px;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1d3557, #457b9d);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #457b9d, #1d3557);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    text-decoration: none;
}

.contact-info-box p .contact-title {
    display: block;
    margin-top: 12px;  /* 👈 દરેક title ઉપર space */
    margin-bottom: 4px;
    font-weight: 600;
    color: #1d3557;    /* optional: attractive color */
}
