/* Hero Section */
.services-hero {
    background: linear-gradient(rgba(11, 27, 43, 0.9), rgba(11, 27, 43, 0.9)),
    url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--highlight-yellow);
    text-decoration: none;
}

/* Service Categories */
.service-categories {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.category-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    margin-bottom: 30px;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.category-body {
    padding: 25px;
}

.category-title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.badge-service {
    background-color: var(--accent-orange);
    color: white;
}

/* Service Details */
/* Service Details */
.service-details {
    padding: 100px 0;
    background-color: #fff;
}

.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background-color: var(--primary-blue) !important;
}

.feature-card:hover .icon-wrapper i {
    color: white !important;
}

.process-step {
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 15px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background-color: #e9ecef;
}

.step-number {
    font-size: 0.875rem;
    font-weight: 600;
}

.bg-light-primary {
    background-color: rgba(11, 27, 43, 0.1);
}

/* Tech Stack */
.tech-stack {
    background-color: var(--dark-bg);
    color: white;
    padding: 80px 0;
}

.tech-logo {
    height: 60px;
    margin: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s;
}

.tech-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF6A00 0%, #FFC400 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.btn-white {
    background: white;
    color: var(--accent-orange);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
}