.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/pattern.svg') repeat;
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

.services-detailed {
    padding: 80px 0;
    background-color: var(--background-color);
}

.service-detail {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Remove transparent backgrounds */
.service-content {
    display: block;
    padding: 0;
    background: white;
}

.service-text {
    padding-right: 0;
}

/* Remove the transparent/gradient effects */
.service-detail::after,
.service-detail::before {
    display: none;
}

/* Keep the text styling clean */
.service-detail h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-detail h2 i {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.9;
}

.service-detail p {
    margin-bottom: 1.5rem;
}

.service-detail ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-detail li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    padding: 30px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.service-text {
    padding-right: 30px;
}

.service-text h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.service-text ul {
    list-style: none;
    padding: 0;
}

.service-text ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-text li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
}

.service-image {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-section {
    background: var(--primary-color);
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: var(--light);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.glowing-border {
    position: relative;
}

.glowing-border::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glowing-border:hover::after {
    opacity: 1;
}

.demo-link {
    margin-top: 25px;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--secondary-color);
}

.demo-button i {
    font-size: 0.9em;
}

@keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-text {
        padding-right: 0;
    }
}