:root {
    --brand-dark: #1E272E; 
    --brand-accent: #ea7229 !important;
    --text-primary: var(--brand-dark);
    --text-secondary: #555555; 
    --text-light: #F8F8F8;
    --bg-main: #FFFFFF; 
    --bg-section: #F5F5F5; 
    --border-light: #E0E0E0;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.03); 
}

body {
   
    color: var(--text-primary);
    line-height: 1.7; 
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.5px; 
}




.footer-link a {
    display: block;
    color: var(--footer-link);
    font-size: 15px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: color 0.3s 
ease, transform 0.3s 
ease;
    font-weight: 400;
}

.footer-link a:hover {
    color: var(--footer-link-hover);
    transform: translateX(5px);
}

.breadcromb {
    background: linear-gradient(90deg, #1E272E 0%, #343a40 100%); 
    
    padding: 40px 0 60px 0 !important; 
    
    color: var(--text-light);
    
    border-bottom: 5px solid var(--brand-accent); 
    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); 
}

.breadcromb-box {
    padding-top: 0 !important; 
}

.breadcromb-box h2 {
    font-size:28px; 
    font-weight: 800; 
    color: white;
    text-transform: uppercase; 
  
    margin-bottom: 10px;
}

.breadcromb-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    
    font-size: 16px; 
}

.breadcromb-box li {
    color: #ced4da; 
    margin-right: 8px; 
    font-weight: 400;
}

.breadcromb-box li i {
    color: var(--brand-accent); 
    font-size: 12px;
    margin-right: 8px;
}

.breadcromb-box a {
    color: #e9ecef; 
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.breadcromb-box a:hover {
    color: var(--brand-accent);
    text-decoration: underline;
}


@media (max-width: 767px) {
    .breadcromb {
        padding: 40px 0 30px 0; 
    }

    .breadcromb-box h2 {
        font-size: 28px; 
        text-align: center; 
        margin-bottom: 15px;
    }

    .breadcromb-box ul {
        justify-content: center; 
        font-size: 14px;
        flex-wrap: wrap; 
    }
}
.about-promo {
    padding: 100px 0;
    background-color: var(--bg-main);
}
.about-promo-text .heading {
    font-size: 25px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--brand-dark);
}
.about-promo-text .highlight {
    color: var(--brand-accent);
}
.about-promo-text .intro-text {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--text-secondary);
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
}
.service-list li {
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    padding-left: 25px;
}
.service-list li::before {
    content: "\f054"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--brand-accent);
    position: absolute;
    left: 0;
    font-size: 14px;
}

.cta-text {
    font-weight: 600 !important;
    font-size: 18px !important;
    color: var(--brand-dark);
    margin-top: 40px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: var(--brand-accent);
    color: white;
    padding: 16px 40px;
    border-radius: 4px; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 15px rgba(0, 173, 181, 0.3);
}
.cta-button:hover {
    background-color: #04032b !important;
    box-shadow: 0 10px 20px rgba(42, 75, 224, 0.5);
    transform: translateY(-2px);
    color:white !important;
}
.about-promo img {
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.service-problem-area {
    padding: 80px 0;
    background-color: var(--bg-section); 
}
.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--brand-dark);
}
.section-title .highlight {
    color: var(--brand-accent);
}

.problem-item {
    background-color: var(--bg-main);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light); 
    height: 100%;
}
.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-accent);
}

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

.problem-heading-card {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--brand-accent); 
}
.problem-text-card {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}
.problem-text-card strong {
    color: var(--brand-dark);
    font-weight: 700;
}

@media (max-width: 991px) {
    body,html{
        overflow-x: hidden;
        overflow-y: none;

    }
    .about-promo {
        padding: 25px 0;
    }
    .about-promo-text .heading {
        font-size: 25px;
    }
    .section-title {
        font-size: 25px;
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    .breadcromb{
        padding: 30px 0px;
    }
    .breadcromb-box h2 {
        font-size: 24px;
    }
    .about-promo-text .heading {
        font-size: 18px !important;
    }
    .cta-button {
        display: block;
        text-align: center;
    }
    .service-list li {
        padding-left: 20px;
        margin-right: 15px;
    }
    .service-problem-area {
        padding: 40px 0;
    }
}