/* service section */

.services-section {
    background: #FCF8EE;
    margin-top: 50px;
    padding: 50px 0px;
}

.services-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.services-heading .line {
    width: 35px;
    height: 3px;
    background: #F1A70A;
    border-radius: 10px;
}

.services-label {
    font-weight: 800;
    margin: 0;
    color: #00263C;
    font-size: 30px;
}

.services-title {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 500;
    color: #676767;
}

.highlight-orange {
    color: #F1A70A;
}

.service-card {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.service-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: start;
}

.service-title {
    font-weight: 600;
    color: #0F2C49;
    margin-bottom: 6px;
    font-size: 16px;
}

.service-text {
    color: #444;
    font-size: 14px;
    margin-bottom: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.service-link {
    color: #F1A70A;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    margin-top: 15px;
}

.service-link:hover {
    text-decoration: underline;
}


.title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: #0F2C49;
    margin-top: 30px;

}

.title span {
    color: #F1A70A;
}

.description {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}

.image-wrapper {
    height: 100%;
    margin-bottom: 30px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.services {
    margin-bottom: 25px;
}

.services h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.services ul {
    list-style: none;
}

.services li {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
}

.services li::before {
    content: "✓";
    color: #f26522;
    font-weight: bold;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .title {
        font-size: 1.7rem;
    }

    .description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.4rem;
    }

    .container {
        padding: 15px;
    }
}