:root {
    --primary: #fd7e14; /* Matching the blue from your about section */
    --light: #F5F5F5;
    --dark: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
}

.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #fd7e14;
    border-color: #fd7e14;
}

.bg-light {
    background-color: var(--light) !important;
}

.service-area-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.service-city {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.service-city:last-child {
    border-bottom: none;
}

.service-icon {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
}

.wow {
    visibility: visible;
}





.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #fd7e14;
    border-color: #fd7e14;
}

.bg-light {
    background-color: var(--light) !important;
}

.service-additional-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    background: white;
}

.service-additional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
}

.service-additional-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-additional-card:hover .service-additional-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: #fd7e14;
}

.section-additional-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 15px;
}



.zigzag-container {
    position: relative;
    padding: 80px 0;
}

.zigzag-item {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.zigzag-item:last-child {
    margin-bottom: 0;
}

.zigzag-item:nth-child(even) {
    flex-direction: row-reverse;
}

.zigzag-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.zigzag-image {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.service-additional-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.zigzag-item:hover .service-additional-img {
    transform: scale(1.03);
}

.number-badge {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 0 0 10px rgba(43, 124, 188, 0.2);
    z-index: 3;
}

.zigzag-item:nth-child(even) .number-badge {
    left: auto;
    right: 30px;
}

@media (max-width: 992px) {

    .zigzag-item,
    .zigzag-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .number-badge,
    .zigzag-item:nth-child(even) .number-badge {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .zigzag-content {
        margin-top: 40px;
    }

    .zigzag-item {
        margin-bottom: 80px;
    }

    .service-img {
        height: 250px;
    }
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 40px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary);
    margin-right: 10px;
}

.text-box {
    background: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}






.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #fd7e14;
    border-color: #fd7e14;
}

.bg-light {
    background-color: var(--light) !important;
}

.contact-container {
    padding: 80px 0;
}

.contact-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background-color: #fd7e14;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact-info {
    margin-top: 15px;
}

.contact-info a {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

@media (max-width: 992px) {
    .contact-card {
        margin-bottom: 30px;
    }
}
