/* Modern Color Palette */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #0f172a;
    --accent-color: #3b82f6;
    --text-color: #334155;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Typography */
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.2;
}

/* Header & Navigation */
#header {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#mainMenu nav > ul > li > a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.2s ease;
}

#mainMenu nav > ul > li:hover > a {
    color: var(--accent-color) !important;
}

/* Hero Section */
.inspiro-slider.slider-fullscreen {
    height: 90vh;
}

.bg-overlay {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.7)) !important;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.heading-text h1 {
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem;
    color: var(--secondary-color) !important;
}

.heading-text p {
    font-size: 1.125rem;
    color: var(--text-color);
    max-width: 800px;
    margin-bottom: 2rem;
}

/* Cards & Blog Posts */
.post-item {
    border: none !important;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-image img {
    border-radius: 1rem 1rem 0 0;
    height: 240px;
    object-fit: cover;
    width: 100%;
}

.post-item-description {
    padding: 1.5rem;
}

.post-item-description h2 a {
    font-size: 1.25rem;
    color: var(--secondary-color);
    text-decoration: none;
}

.post-item-description p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    border-radius: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Footer */
#footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 4rem;
}

.widget h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.widget ul.list li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.widget ul.list li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.copyright-content {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Features List */
.heading-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.heading-text ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.heading-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Partner Logos */
.team-member .team-image img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    max-height: 80px;
    object-fit: contain;
}

.team-member:hover .team-image img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Custom Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-soft {
    background-color: var(--light-bg);
}

.rounded-xl {
    border-radius: 1rem !important;
}

.shadow-card {
    box-shadow: var(--shadow-md);
}
