/* assets/css/style.css */
:root {
    --primary: #0062cc;
    --primary-dark: #004a99;
    --secondary: #0099ff;
    --accent: #ff471a; /* Orange text/dot from logo */
    --dark: #0f172a;
    --light: #f8f9fa;
    --gray: #64748b;
    --radius: 12px;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
}
.navbar-brand img {
    height: 40px;
}
.nav-link {
    font-weight: 500;
    color: var(--gray);
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
}
.btn-primary {
    background: var(--primary);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 98, 204, 0.4);
}
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 5rem;
    background: radial-gradient(circle at top right, #eef7ff, transparent);
    position: relative;
    overflow: hidden;
}
.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Cards & Features */
.feature-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}
.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.icon-box {
    width: 60px;
    height: 60px;
    background: #eef7ff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: #cbd5e1;
    padding-top: 5rem;
    padding-bottom: 2rem;
}
footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
}
footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}
footer a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 4rem;
    padding-top: 2rem;
}

/* Blog */
.blog-card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card img {
    height: 200px;
    object-fit: cover;
}
.blog-date {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Contact */
.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.form-control {
    border: 1px solid #e2e8f0;
    padding: 0.8rem 1rem;
    border-radius: 8px;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 98, 204, 0.1);
}

/* Utils */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-light-blue {
    background-color: #f0f7ff;
}