* {
    font-family: 'Inter', sans-serif;
}
body {
    background: linear-gradient(135deg, #f5f7fe 0%, #e9eefa 100%);
    scroll-behavior: smooth;
}
/* Navbar */
.navbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}
/* Smaller brand text on mobile */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
}
.nav-link {
    font-weight: 500;
    color: #1e293b !important;
    transition: 0.2s;
}
.nav-link:hover {
    color: #2563eb !important;
}
/* Hero section */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    justify-content: center;
}
.hero .d-flex {
    justify-content: center;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.btn-custom {
    background: #2563eb;
    color: white;
    border-radius: 40px;
    padding: 12px 30px;
    font-weight: 600;
    transition: 0.2s;
}
.btn-custom:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}
.btn-outline-custom {
    border: 2px solid #2563eb;
    color: #2563eb;
    border-radius: 40px;
    padding: 12px 30px;
    font-weight: 600;
}
.btn-outline-custom:hover {
    background: #2563eb;
    color: white;
}
/* Cards */
.service-card, .pricing-card, .portfolio-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    transition: all 0.25s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.service-card:hover, .pricing-card:hover, .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}
/* Center service card text */
.service-card {
    text-align: center;
}
/* Center pricing card text */
.pricing-card {
    text-align: center;
}
.pricing-card ul {
    display: inline-block;
    text-align: left;
    margin-top: 1rem;
}
.pricing-card li {
    margin-bottom: 0.5rem;
}
.icon-circle {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
}
.icon-circle i {
    font-size: 1.8rem;
    color: #2563eb;
}
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}
.portfolio-card img {
    border-radius: 16px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
/* Portfolio link styling */
.portfolio-card h5 {
    margin-top: 1rem;
}
.portfolio-card h5 a {
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 40px;
    background: #f1f5f9;
    transition: all 0.2s ease;
}
.portfolio-card h5 a:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.02);
}
/* Contact form */
.contact-form {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
}
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 0;
    margin-top: 60px;
}
footer a {
    color: #cbd5e1;
    text-decoration: none;
}
footer a:hover {
    color: white;
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
}