/* Service Pages Theme Styling */

/* Section Headers */
.sec-title3 {
    color: #0078B6;
    position: relative;
    padding-bottom: 15px;
}

.sec-title3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0078B6;
}

/* Feature Icons and Cards */
.feature-style2 {
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(205, 155, 44, 0.1);
    background: #fff;
    box-shadow: 0 5px 15px rgba(205, 155, 44, 0.05);
}

.feature-style2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(205, 155, 44, 0.1);
    border-color: #0078B6;
}

.feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: rgba(205, 155, 44, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    color: #0078B6;
    font-size: 28px;
}

.feature-title {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Process Steps */
.process-step {
    padding: 25px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(205, 155, 44, 0.05);
    border: 1px solid rgba(205, 155, 44, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(205, 155, 44, 0.1);
    border-color: #0078B6;
}

.step-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: rgba(205, 155, 44, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
    color: #0078B6;
    font-size: 24px;
}

.process-arrow {
    color: #0078B6;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

/* Service Features Grid */
.service-features-container {
    padding: 20px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.feature-item {
    padding: 25px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(205, 155, 44, 0.05);
    border: 1px solid rgba(205, 155, 44, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(205, 155, 44, 0.1);
    border-color: #0078B6;
}

.feature-item .feature-icon {
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-arrow {
        transform: rotate(90deg);
        margin: 15px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Button Styling */
.vs-btn {
    background-color: #0078B6;
    border-color: #0078B6;
    color: #fff;
    transition: all 0.3s ease;
}

.vs-btn:hover {
    background-color: #b88a25;
    border-color: #b88a25;
    color: #fff;
}

/* Links */
a {
    color: #0078B6;
    transition: all 0.3s ease;
}

a:hover {
    color: #b88a25;
}

/* Section Spacing */
.space-top {
    padding-top: 80px;
}

.space-extra-bottom {
    padding-bottom: 80px;
}

/* Container Padding */
.container {
    padding: 0 15px;
}

/* Text Colors */
.text-theme {
    color: #0078B6;
}

/* Background Colors */
.bg-theme {
    background-color: #0078B6;
}

/* Border Colors */
.border-theme {
    border-color: #0078B6;
}
