/* Static Services Styling for Royal Blue Theme */

.static-services {
    margin-bottom: 20px;
}

.static-services .service-item {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    display: block;
    position: relative;
    padding-left: 24px;
}

.static-services .service-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.static-services .service-item:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Styling for the typed title */
.typed-title {
    color: var(--accent-color);
    font-weight: 700;
}

/* Hero section additional styling */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(94, 145, 255, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(94, 145, 255, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(41, 98, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Button styling */
.btn-default {
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(41, 98, 255, 0.3);
}

.btn-default:hover {
    background-color: var(--accent-color-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 98, 255, 0.4);
}

/* Video play button styling */
.video-play-button a {
    background-color: var(--accent-color);
    color: white;
}

.video-play-button a:hover {
    background-color: var(--accent-color-light);
}

/* Responsive styles */
@media (max-width: 768px) {
    .static-services .service-item {
        font-size: 16px;
        padding-left: 20px;
    }
    
    .static-services .service-item:before {
        width: 12px;
        height: 12px;
    }
    
    .static-services .service-item:after {
        width: 6px;
        height: 6px;
        left: 3px;
    }
}
