:root {
    --primary: #6C2BD9;
    --primary-dark: #4A1A8A;
    --primary-light: #9B6BFF;
    --primary-ultra-light: #F0EAFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tahoma', 'Segoe UI', sans-serif;
    background: #fafafa;
}

.bg-purple {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    box-shadow: 0 4px 20px rgba(108, 43, 217, 0.3);
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--primary-light) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero .highlight {
    color: #FFD700;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.btn-purple {
    background: white;
    color: var(--primary);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-purple:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #FFD700;
    color: var(--primary-dark);
}

.btn-outline-purple {
    background: transparent;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid white;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-decoration: none;
}

.btn-outline-purple:hover {
    background: white;
    color: var(--primary);
}

/* Cards - Services */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    border-bottom: 4px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
    box-shadow: 0 20px 50px rgba(108, 43, 217, 0.15);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: var(--primary-ultra-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    color: #888;
    font-size: 1.1rem;
}

/* Team / Employees */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(108, 43, 217, 0.12);
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-card .info {
    padding: 20px;
}

.team-card .info h5 {
    color: var(--primary-dark);
    font-weight: 700;
}

.team-card .info .position {
    color: var(--primary);
    font-weight: 500;
}

/* Projects */
.project-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s;
    background: white;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(108, 43, 217, 0.12);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-card .info {
    padding: 20px;
}

/* Contact */
.contact-section {
    background: var(--primary-ultra-light);
    padding: 80px 0;
}

.contact-form input,
.contact-form textarea {
    border-radius: 15px;
    padding: 15px 20px;
    border: 2px solid #e0d6f0;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 43, 217, 0.1);
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 40px 0;
}

footer .social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin: 0 5px;
}

footer .social-links a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    .section-title {
        font-size: 1.8rem;
    }
}