/* Add this to the top of your CSS to import the font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

:root {
    --primary-color: #9b59b6; /* A more vibrant purple */
    --primary-color-dark: #8e44ad; /* Darker purple for hover */
    --light-color: #f8f9fa; /* Bootstrap's light color */
    --dark-text: #343a40;
}

body {
    font-family: 'Poppins', sans-serif; /* Use the imported font */
    background-color: var(--light-color);
    color: #000; /* Set default text color to black */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

.navbar-brand {
    font-weight: bold;
}

.hero-section {
    padding: 6rem 1.5rem;
}

.btn-custom-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
}

.btn-custom-primary:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    color: #fff;
}

.footer {
    border-top: 1px solid #e7e7e7;
    color: var(--dark-text);
}

.footer .text-muted {
    color: var(--dark-text) !important;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.04);
}

.page-header {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}

.service-item {
    padding: 3rem 0;
}

.portfolio-card {
    transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
}
.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,.1);
}

.team-card {
    border: none;
    background-color: transparent;
}

.team-img {
    width: 150px;
    height: 150px;
    margin-top: 1.5rem;
    object-fit: cover;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-top: 1rem;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    text-align: center;
}

.tech-item {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    font-weight: 500;
    transition: all .2s ease-in-out;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,.05);
    color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--primary-color);
}

.team-social a {
    font-size: 1.25rem;
    margin: 0 0.5rem;
    transition: color .2s ease-in-out;
}
.team-social a:hover {
    color: var(--primary-color) !important;
}

.portfolio-item {
    transition: all 0.3s ease-in-out;
}

.client-logos {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}

.client-logos:hover {
    filter: grayscale(0%);
    opacity: 1;
}
