body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
    color: #1f2937;
}


/* HERO */

.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg,#f8fafc,#eef2ff);
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #4b5563;
}

.hero-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}



/* SECTIONS */

.section {
    padding: 80px 0;
}

.section-light {
    padding: 80px 0;
    background: #f9fafb;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-subtitle {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: #4b5563;
}



/* PRODUCT CARD */

.product-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s;
}

    .product-card:hover {
        transform: translateY(-6px);
    }

.product-icon {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2563eb;
}



/* SERVICE CARD */

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-icon {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2563eb;
}



/* PORTFOLIO */

.portfolio-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.portfolio-category {
    font-size: 13px;
    color: white;
    background: #2563eb;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}



/* CTA */

.cta-section {
    background: #2563eb;
    color: white;
    padding: 80px 0;
}

    .cta-section h2 {
        font-size: 32px;
        font-weight: 700;
    }

    .cta-section p {
        font-size: 18px;
        margin-top: 10px;
    }
.login-page {
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

.admin-body {
    background: #f8fafc;
}

.admin-sidebar {
    min-height: calc(100vh - 56px);
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
}

    .admin-sidebar .list-group-item {
        border: none;
        padding: 14px 20px;
        font-weight: 500;
    }

        .admin-sidebar .list-group-item:hover {
            background: #f3f4f6;
        }

.dashboard-card {
    border-radius: 16px;
}

.table td,
.table th {
    vertical-align: middle;
}

.admin-sidebar .list-group-item.active {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

.site-logo {
    height: 40px;
    width: auto;
    display: block;
}

.navbar-brand {
    gap: 10px;
}