/* Who We Serve Section Styles */
.who-we-serve-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.who-we-serve-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.who-we-serve-section .container {
    position: relative;
    z-index: 2;
}

/* Background Shapes */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Content Container */
.serve-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Header Styles */
.serve-header {
    margin-bottom: 3rem;
}

.serve-title {
    font-size: 48px !important;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
}

.serve-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 2px;
}

/* Service List */
.service-list {
    margin-bottom: 50px;
}

.serve-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.serve-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.checkmark {
    color: var(--dark-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.item-text {
    color: var(--secondary-color);
    font-weight: 400;
}

/* Footer Message */
.serve-footer {
    margin-top: 40px;
}

.footer-message {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .who-we-serve-section {
        padding: 60px 0;
    }
    
    .serve-title {
        font-size: 2.5rem;
    }
    
    .serve-item {
        font-size: 1rem;
    }
    
    .checkmark {
        font-size: 1.1rem;
        margin-right: 12px;
    }
    
    .footer-message {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .who-we-serve-section {
        padding: 40px 0;
    }
    
    .serve-title {
        font-size: 2rem;
    }
    
    .serve-item {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .checkmark {
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .footer-message {
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .who-we-serve-section {
        background: white;
    }
} 