/* ===========================
   Reset & Base Styles
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1E88E5;
    --secondary-color: #0D47A1;
    --white: #FFFFFF;
    --light-gray: #ECEFF1;
    --dark-gray: #37474F;
    --text-color: #263238;
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #F44336;
    --info: #2196F3;
    --gradient: linear-gradient(135deg, #1E88E5 0%, #0D47A1 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===========================
   Preloader
   =========================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===========================
   Container & Utilities
   =========================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   Navigation
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--dark-gray);
}

.dashboard-mockup {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mockup-header {
    background: var(--light-gray);
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--dark-gray);
}

.mockup-dots span:nth-child(1) {
    background: #F44336;
}

.mockup-dots span:nth-child(2) {
    background: #FF9800;
}

.mockup-dots span:nth-child(3) {
    background: #4CAF50;
}

.mockup-content {
    padding: 30px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 32px;
    color: var(--primary-color);
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 12px;
    color: var(--dark-gray);
}

.card-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.card-1 {
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    right: -60px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: -50px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.hero-wave svg {
    display: block;
    fill: var(--white);
}

/* ===========================
   Section Headers
   =========================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-gray);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--dark-gray);
}

/* ===========================
   Features Section
   =========================== */

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 40px;
    color: var(--white);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--dark-gray);
}

.feature-list i {
    color: var(--success);
    font-size: 18px;
}

/* ===========================
   Dashboard Demo Section
   =========================== */

.dashboard-demo {
    background: var(--light-gray);
}

.dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-button.active {
    background: var(--gradient);
    color: var(--white);
    border-color: var(--primary-color);
}

.dashboard-content {
    position: relative;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.dashboard-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.dashboard-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.dashboard-card .card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.dashboard-card .card-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card canvas {
    max-height: 280px;
}

/* KPI Cards */

.kpi-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kpi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.kpi-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kpi-icon i {
    font-size: 28px;
    color: var(--white);
}

.kpi-icon.sales {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.kpi-icon.orders {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.kpi-icon.conversion {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.kpi-icon.average {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.kpi-icon.inventory {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.kpi-icon.warning {
    background: linear-gradient(135deg, #ff9800 0%, #f44336 100%);
}

.kpi-icon.success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.kpi-icon.info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.kpi-icon.production {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.kpi-icon.quality {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.kpi-icon.downtime {
    background: linear-gradient(135deg, #ff9800 0%, #f44336 100%);
}

.kpi-icon.output {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.kpi-icon.revenue {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.kpi-icon.profit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.kpi-icon.margin {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.kpi-icon.cashflow {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.kpi-info h4 {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.kpi-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
}

.kpi-trend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    width: fit-content;
}

.kpi-trend i {
    font-size: 16px;
}

.kpi-trend span {
    color: var(--dark-gray);
    font-weight: 400;
}

.kpi-trend.positive {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.kpi-trend.negative {
    background: rgba(244, 67, 54, 0.1);
    color: var(--danger);
}

.kpi-trend.neutral {
    background: rgba(158, 158, 158, 0.1);
    color: var(--dark-gray);
}

/* Chart Cards */

.chart-card {
    grid-column: span 2;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h4 {
    font-size: 18px;
    font-weight: 600;
}

.chart-legend {
    display: flex;
    gap: 20px;
}

.chart-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.chart-legend i {
    font-size: 10px;
}

/* Alert Cards */

.alert-card {
    grid-column: span 2;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.alert-header h4 {
    font-size: 18px;
    font-weight: 600;
}

.alerts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.alert-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid;
}

.alert-item.warning {
    background: rgba(255, 152, 0, 0.1);
    border-color: var(--warning);
}

.alert-item.success {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--success);
}

.alert-item.info {
    background: rgba(33, 150, 243, 0.1);
    border-color: var(--info);
}

.alert-item.danger {
    background: rgba(244, 67, 54, 0.1);
    border-color: var(--danger);
}

.alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-item.warning .alert-icon {
    background: var(--warning);
}

.alert-item.success .alert-icon {
    background: var(--success);
}

.alert-item.info .alert-icon {
    background: var(--info);
}

.alert-item.danger .alert-icon {
    background: var(--danger);
}

.alert-icon i {
    color: var(--white);
    font-size: 20px;
}

.alert-content {
    flex: 1;
}

.alert-content h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.alert-content p {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.alert-time {
    font-size: 12px;
    color: var(--dark-gray);
}

/* Table Cards */

.table-card {
    grid-column: span 2;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.table-header h4 {
    font-size: 18px;
    font-weight: 600;
}

.responsive-table {
    overflow-x: auto;
}

.responsive-table table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table thead {
    background: var(--light-gray);
}

.responsive-table th {
    padding: 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.responsive-table td {
    padding: 12px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
}

.responsive-table tbody tr:hover {
    background: var(--light-gray);
}

.trend-positive {
    color: var(--success);
    font-weight: 600;
}

.trend-negative {
    color: var(--danger);
    font-weight: 600;
}

.amount-positive {
    color: var(--success);
    font-weight: 600;
}

.amount-negative {
    color: var(--danger);
    font-weight: 600;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success {
    background: rgba(76, 175, 80, 0.2);
    color: var(--success);
}

.badge-warning {
    background: rgba(255, 152, 0, 0.2);
    color: var(--warning);
}

.badge-danger {
    background: rgba(244, 67, 54, 0.2);
    color: var(--danger);
}

.badge-info {
    background: rgba(33, 150, 243, 0.2);
    color: var(--info);
}

/* ===========================
   Vision Section
   =========================== */

.vision {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.vision-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.vision-text {
    padding: 40px 0;
}

.vision-text p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 40px;
    text-align: justify;
}

.vision-quote {
    font-size: 28px;
    font-weight: 700;
    color: #1E88E5;
    font-style: italic;
    margin: 40px 0;
    padding: 30px 40px;
    border-left: 5px solid #1E88E5;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.vision-quote:before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: -10px;
    left: 10px;
    color: rgba(30, 136, 229, 0.2);
    font-family: Georgia, serif;
}

.vision-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.vision-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1E88E5 0%, #0D47A1 100%);
    border-radius: 30px;
    padding: 100px;
    box-shadow: 0 30px 80px rgba(30, 136, 229, 0.4);
    position: relative;
}

.vision-mockup::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2) 0%, rgba(13, 71, 161, 0.2) 100%);
    border-radius: 35px;
    z-index: -1;
}

.vision-mockup i {
    font-size: 140px;
    color: white;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.vision-description {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.vision-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.vision-feature {
    display: flex;
    gap: 20px;
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vision-icon i {
    font-size: 28px;
    color: var(--white);
}

.vision-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.vision-info p {
    font-size: 16px;
    color: var(--dark-gray);
}

.vision-stats {
    display: flex;
    gap: 40px;
}

.vision-stat {
    text-align: center;
}

.vision-stat h3 {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.vision-stat p {
    font-size: 14px;
    color: var(--dark-gray);
}

.vision-image {
    position: relative;
    height: 500px;
}

.vision-card {
    position: absolute;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.vision-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.vision-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.vision-card p {
    font-size: 14px;
    color: var(--dark-gray);
}

.vision-card.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.vision-card.card-2 {
    top: 0;
    right: 0;
    animation-delay: 1s;
}

.vision-card.card-3 {
    bottom: 0;
    left: 0;
    animation-delay: 2s;
}

.vision-card.card-4 {
    bottom: 0;
    right: 0;
    animation-delay: 3s;
}

/* ===========================
   Blog Section
   =========================== */

.blog {
    background: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--dark-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 12px;
}

.blog-cta {
    text-align: center;
}

/* ===========================
   Contact Section
   =========================== */

.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 16px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 28px;
    color: var(--white);
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 15px;
    color: var(--dark-gray);
    margin-bottom: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.social-link i {
    font-size: 24px;
    color: var(--white);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    grid-column: span 2;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 32px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ===========================
   Back to Top Button
   =========================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 24px;
    color: var(--white);
}

/* ===========================
   Animations
   =========================== */

[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ===========================
   Language Toggle Styles
   =========================== */

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(30, 136, 229, 0.1);
    border: 2px solid #1E88E5;
    border-radius: 8px;
    color: #1E88E5;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 16px;
}

.language-toggle:hover {
    background: #1E88E5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.language-toggle i {
    font-size: 16px;
}

.nav-actions {
    display: flex;
    align-items: center;
}

/* ===========================
   Vision Section Enhancements
   =========================== */

.vision-quote {
    font-size: 24px;
    font-weight: 600;
    color: #1E88E5;
    font-style: italic;
    margin: 30px 0;
    padding: 20px;
    border-left: 4px solid #1E88E5;
    background: rgba(30, 136, 229, 0.05);
    border-radius: 8px;
}

.vision-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1E88E5 0%, #0D47A1 100%);
    border-radius: 20px;
    padding: 80px;
    box-shadow: 0 20px 60px rgba(30, 136, 229, 0.3);
}

.vision-mockup i {
    font-size: 120px;
    color: white;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* Dashboard Stats Section */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #1E88E5;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E88E5 0%, #0D47A1 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-title {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Dashboard Section Improvements */
.dashboard.section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.dashboard .section-header {
    margin-bottom: 60px;
}


/* Card Header Badge Styles */
.card-header .badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.card-header .badge i {
    font-size: 14px;
}

