/* Pari Digital Solutions CSS */
:root {
    --primary: #1e3a8a; /* Deep Blue */
    --secondary: #4f46e5; /* Indigo */
    --accent: #06b6d4; /* Cyan */
    --light-bg: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

/* Header */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.nav-link.active, .nav-link:hover {
    color: var(--accent) !important;
}

.btn-primary-custom {
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #0891b2;
    color: white;
}

/* Cards */
.service-card, .portfolio-card, .feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover, .portfolio-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* Badges */
.tech-badge {
    background: #e2e8f0;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.25);
}

/* Footer */
.footer-section {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 50px 0;
    }
}
