/* ===== Iron Repair Page ===== */

.toplead p {
    max-width: 800px;
}

.toplead .phone-link {
    color: #d3162c;
    text-decoration: none;
    font-weight: bold;
}

.toplead .phone-link:hover {
    text-decoration: underline;
}

/* Main Page Container */
.iron-page {
    background-color: #fff;
    padding: 2rem 0;
}

.iron-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Sections */
.iron-section {
    margin-bottom: 3rem;
}

.iron-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #111;
    border-right: 4px solid #d3162c;
    padding-right: 0.5rem;
}

/* Grid Cards */
.iron-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.iron-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.iron-card:hover {
    transform: translateY(-4px);
}

/* Images */
.iron-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Card Text */
.iron-card-content {
    padding: 1rem;
}

.iron-card-content h3 {
    margin-bottom: 0.5rem;
    color: #222;
    font-size: 1.1rem;
}

.iron-card-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

/* Issue List */
.issue-list {
    margin: 1rem 0 2rem 1rem;
    color: #333;
    line-height: 2;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.call-box {
    margin: 1.5rem 0;
}

.phone-call-btn {
    background-color: #d3162c;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s;
}

.phone-call-btn:hover {
    background-color: #aa1124;
}


/* iron-team.css */
.our-team-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.team-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-card .short-desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.team-card .profession {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
    list-style: circle;
    padding: 0;
    text-align: right;
}

.team-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.call-btn,
.profile-btn {
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease;
    font-weight: 900;
}

.call-btn {
    background: #007bff;
}

.call-btn:hover {
    background: #0056b3;
}

.profile-btn {
    background: #28a745;
}

.profile-btn:hover {
    background: #1e7e34;
}

@media (max-width: 767px) {
    .team-card img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767px) {


    .topleadbannercont {
        height: 400px;
    }
}