/* --- Design Variables and Core Styles --- */
:root {
    --brand-blue: #313D5E; /* Primary Blue from logo */
    --brand-orange: #F48B2F; /* Accent Orange from logo */
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #F8F8F8;
    --bg-light: #FFFFFF;
    --bg-lighter: #F9F9F9;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
a:hover {
    color: var(--brand-orange);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--brand-blue);
}

/* --- Breadcrumb/Header Banner --- */
.breadcromb {
    background-color: var(--brand-blue);
    padding: 50px 0;
    color: var(--text-light);
}
.breadcromb-box h2 {
    letter-spacing: 1px;
    font-size: 25px;
    font-weight: 900;
    color: white;
}
.breadcromb-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 15px;
}
.breadcromb-box li {
    margin-right: 10px;
    color: #e0e0e0;
}
.breadcromb-box li i {
    color: var(--brand-orange);
    font-size: 13px;
}
.breadcromb-box a {
    color: #f0f0f0;
}
.breadcromb-box a:hover {
    color: var(--brand-orange);
}

/* --- Main Promo/Service Introduction Section --- */
.about-promo {
    position: relative;
    padding: 50px 0;
    background-color: var(--bg-lighter);
    color: var(--text-dark);
}
.about-promo-text .heading {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--brand-blue);
}
.about-promo-text .highlight {
    color: var(--brand-orange);
}
.about-promo-text .intro-text {
    font-size: 17px;
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--text-medium);
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}
.service-list li {
    margin-bottom: 10px;
    color: var(--text-medium);
}
.service-list li::before {
    content: "\f00c"; /* Checkmark Icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--brand-orange);
    margin-right: 12px;
    font-size: 15px;
}

.cta-button {
    display: inline-block;
    background-color: var(--brand-orange);
    color: white;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(244, 139, 47, 0.4);
    transition: all 0.3s ease-in-out;
    border: none;
}
.cta-button:hover {
    background-color: #e67c22;
    box-shadow: 0 8px 20px rgba(244, 139, 47, 0.6);
    transform: translateY(-2px);
}
.about-promo img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--brand-orange);
}

/* --- Alternating Service/Problem Boxes --- */
.service-problem-area {
    padding: 50px 0;
    background-color: var(--bg-light);
}
.section-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    color: var(--brand-blue);
}
.section-title .highlight {
    color: var(--brand-orange);
}

.problem-item {
    background-color: var(--bg-light);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--brand-blue);
    height: 100%;
}
.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--brand-orange);
}

.problem-image-box {
    margin-bottom: 20px;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
}
.problem-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.problem-item:hover .problem-image-box img {
    transform: scale(1.05);
}

.problem-heading-card {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--brand-blue);
}
.problem-text-card {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

/* --- Repair Process/Why Choose Us Section (Contrasting Dark CTA) --- */
.process-section {
    /* padding: 70px 0; */
    background-color: var(--brand-blue);
    color: var(--text-light);
}
.process-section .heading {
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}
.process-section .highlight {
    color: var(--brand-orange);
}
.process-card {
    background-color: #4A5676;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
    height: 100%;
    transition: background-color 0.3s ease;
}
.process-card:hover {
    background-color: #5d6b8b;
}

.process-card h5 {
    font-size: 18px;
    color: var(--brand-orange);
    font-weight: 700;
    margin-bottom: 15px;
}
.process-card i {
    color: var(--brand-orange);
    margin-right: 12px;
    font-size: 16px;
}
.process-card p, .process-card ul li {
    color: var(--text-light);
    font-size: 15px;
}
.process-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}
.process-card ul li {
    margin-bottom: 8px;
    font-weight: 400;
}
.process-card ul li i {
    font-size: 15px;
    color: var(--brand-orange);
}
.process-card a {
    color: var(--brand-orange);
}
.process-card a:hover {
    color: white;
}

.contact-cta-footer {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 30px;
}
.contact-cta-footer .highlight-text {
    color: var(--brand-orange);
}
.contact-cta-footer a {
    color: var(--brand-orange);
    font-weight: 700;
}
.contact-cta-footer a:hover {
    color: white;
}

/* Media Queries */
@media (max-width: 991px) {
    .about-promo-text .heading {
        font-size: 20px;
    }
    .section-title, .process-section .heading {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .about-promo-text .heading, .process-section .heading {
        font-size: 20px !important;
    }
    .problem-image-box {
        height: 180px;
    }
    .breadcromb{
        padding : 10px 0px ;
    }
    .breadcromb-box h2 {
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 700;
   
}
}