/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0;
}

.why-choose-us .feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    padding: 16px 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    min-height: 200px;
    box-sizing: border-box;
}

.why-choose-us .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #3b82f6;
    font-size: 18px;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.why-choose-us .feature-item:hover .feature-icon {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-us .feature-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #ffffff;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.4em;
    min-height: 2.4em;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.why-choose-us .feature-description {
    color: #cbd5e1;
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 3.9em;
    min-height: 3.9em;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 0 20px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    line-height: 1.2;
}

.trust-label {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .why-choose-us .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        padding: 0 20px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 50px auto 0;
    }
}

@media (max-width: 767px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-us .features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 15px;
        gap: 20px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 15px;
        margin-top: 30px;
    }
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Image/pattern-bg.png') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.why-choose-us .section-header {
    margin-bottom: 60px;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

.why-choose-us .feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.why-choose-us .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.why-choose-us .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.why-choose-us .feature-item:hover::before {
    opacity: 1;
}

.why-choose-us .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #3b82f6;
    font-size: 18px;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.why-choose-us .feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    transform: rotateY(180deg);
}

.pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.why-choose-us .feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.why-choose-us .feature-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transition: width 0.3s ease;
}

.why-choose-us .feature-item:hover h3::after {
    width: 80px;
}

.why-choose-us .feature-item p {
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.feature-benefits li {
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.feature-benefits li i {
    color: #3b82f6;
    margin-right: 10px;
    margin-top: 4px;
    font-size: 0.9em;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.trust-item {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    line-height: 1.2;
}

.trust-label {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .why-choose-us .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .why-choose-us .feature-item {
        padding: 30px 25px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .why-choose-us .features-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        padding: 0 20px;
    }
    
    .why-choose-us .feature-item {
        padding: 30px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .trust-item {
        padding: 25px 15px;
    }
}

@media (max-width: 576px) {
    .why-choose-us .features-grid {
        padding: 0 15px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .trust-item {
        padding: 20px 15px;
    }
    
    .full-width-features {
        padding: 60px 0;
    }
    
    .full-width-trust {
        padding: 40px 0;
    }
}

/* Service Sections Base Style */
.subcontract-section,
.recruitment-section,
.outsourced-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Add subtle pattern overlay */
.subcontract-section::before,
.recruitment-section::before,
.outsourced-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.subcontract-section::before,
.recruitment-section::before,
.outsourced-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Image/pattern-bg.png') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.section-header.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    margin: 0 15px;
}

.section-divider i {
    color: #3b82f6;
    font-size: 1.5rem;
}

.subcontract-content,
.recruitment-content,
.outsourced-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.subcontract-image,
.recruitment-image,
.outsourced-image {
    flex: 1;
    position: relative;
    min-width: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subcontract-image:hover,
.recruitment-image:hover,
.outsourced-image:hover {
    transform: translateY(-10px);
}

.image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    border-radius: 15px;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(5deg);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    display: block;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.subcontract-details,
.recruitment-details,
.outsourced-details {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.description-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.description-box h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.description-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.description-box p {
    color: #e0e0e0;
    line-height: 1.8;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #3b82f6;
    font-size: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
}

.feature-content h4 {
    color: #ffffff;
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.feature-content p {
    color: #cbd5e1;
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-box {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(8, 51, 68, 0.2) 100%);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-box .btn-primary {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 20px 0 15px;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-box .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #0891b2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.cta-box .btn-primary:hover::before {
    opacity: 1;
}

.cta-box .btn-primary i {
    margin-left: 8px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.cta-box .btn-primary:hover i {
    transform: translateX(3px);
}

.cta-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 1.1rem;
}

.contact-info i {
    color: #3b82f6;
}

/* Outsourced Section Specific Styles */
.outsourced-section .feature-icon {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
}

.outsourced-section .btn-primary {
    background: linear-gradient(90deg, #9c27b0, #e91e63);
    border: none;
}

.outsourced-section .btn-primary:hover {
    background: linear-gradient(90deg, #8e24aa, #d81b60);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(156, 39, 176, 0.3);
}

.outsourced-content::before {
    background: linear-gradient(90deg, #9c27b0, #e91e63);
}

/* Recruitment Section Specific Styles */
.recruitment-section .feature-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.recruitment-section .btn-primary {
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    border: none;
}

.recruitment-section .btn-primary:hover {
    background: linear-gradient(90deg, #ff5252, #ff7676);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .subcontract-content,
    .recruitment-content,
    .outsourced-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .subcontract-image,
    .recruitment-image,
    .outsourced-image {
        min-width: 100%;
        margin: 0 auto 40px;
        max-width: 600px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .subcontract-content,
    .recruitment-content,
    .outsourced-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .subcontract-image,
    .subcontract-details,
    .recruitment-image,
    .recruitment-details,
    .outsourced-image,
    .outsourced-details {
        min-width: 100%;
    }
    
    .experience-badge {
        top: 15px;
        right: 15px;
        padding: 10px 15px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .cta-box {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .cta-box .btn-primary {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.service-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Image/pattern-bg.png') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    z-index: -1;
}

.service-detail-content {
    flex: 1;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-detail-image:hover {
    transform: translateY(-5px);
}

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

.service-description {
    margin-top: 20px;
    color: #e0e0e0;
    line-height: 1.8;
}

.service-description h4 {
    color: #ffffff;
    margin: 25px 0 15px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.service-description h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
}

.highlight-item i {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* Responsive for service detail */
@media (max-width: 992px) {
    .service-detail {
        flex-direction: column-reverse;
        padding: 30px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Page Styles */
.services-section {
    padding: 80px 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Image/pattern-bg.png') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 0 0 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.service-card p {
    color: #a1a1aa;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.service-features li {
    color: #e5e7eb;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.btn-outline {
    display: block;
    width: max-content;
    margin: 30px auto 0;
    padding: 10px 25px;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-item p {
    color: #a1a1aa;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 30px auto 0;
    }
    
    .service-card, .feature-item {
        padding: 25px 20px;
    }
}
