/* Specific styles for Mechanical Engineering Page */

/* Common Section Styles (Specific to Mechanical) */
.mech-section {
    margin-bottom: 100px;
}

.mech-section:last-child {
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #0075C1;
    border-radius: 2px;
}

/* Charging Section */
.charging-section .section-desc {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
}

.image-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.img-box {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.img-box:hover img {
    transform: scale(1.05);
}

/* Fire Section */
.fire-section .section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
}

.sub-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
    border-left: 5px solid #0075C1;
    padding-left: 15px;
    font-weight: 600;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 117, 193, 0.1);
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1;
}

.feature-card h4 {
    color: #0075C1;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.places-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.place-tag {
    background: #f0f7ff;
    color: #0075C1;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.place-tag:hover {
    background: #0075C1;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 117, 193, 0.3);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .image-grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .img-box {
        height: 250px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .sub-title {
        font-size: 1.3rem;
    }
}
