/* Services Section Styles */
.our-services {
    padding: 80px 0;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.services-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-family: bahnschrift;
}














/* Responsive Design */






/* Advanced Features Section */
.advanced-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
}

.feature-card {
    background-color: rgba(0, 20, 40, 0.5);
    border: none;
    border-radius: 10px;
    padding: 2rem;
    width: 100%;
    max-width: 480px;
    min-height: 250px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.01);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Invoice Preview */
.invoice-preview {
    background-color: rgba(0, 40, 60, 0.6);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
}

.invoice-header {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.invoice-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1rem;
}

.invoice-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.7;
}

.invoice-total {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 1rem;
}

.services-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}





.central-card {
    max-width: 400px;
}




.service-visual {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-container {
    width: 100%;
    height: 150px;
    position: relative;
}

.chart {
    width: 100%;
    height: 100%;
}

.chart-line {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 5px var(--primary-glow));
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: dash 3s ease-in-out forwards;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.team-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(0, 255, 102, 0.1);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-avatars {
    width: 80%;
    height: 80%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='rgba(0, 255, 102, 0.2)'/%3E%3C/svg%3E");
    background-size: contain;
    border-radius: 50%;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header .section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 20px;
    font-size: 0.9rem;
}

.services-header .section-heading {
    color: #6366f1;
    font-size: 2.5rem;
    margin: 1rem 0;
}

.services-description {
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* card css */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.service-card {
    background: linear-gradient(to bottom right, #E8EFEB, #ffffff);
    border: 1px solid #e5e5e5;;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.service-small-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background-color: rgba(0, 204, 102, 0.1);
    border-radius: 50%;
    padding: 8px;
}

.card-header h3 {
    font-size: 1.5rem;
    color: hsla(143, 78%, 15%, 1);
    margin: 0;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: bahnschrift;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.service-tag {
    background: rgba(0, 204, 102, 0.1);
    color: #00cc66;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #00cc66;
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(0, 204, 102, 0.2);
    transform: translateY(-2px);
}

.service-image {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-shape {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
