/* =========================
   GLOBAL
========================= */
body {
    @page { margin: 20px; }
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6f9;
    color: #333;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* =========================
   SLIDER
========================= */
.overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* =========================
   SECTIONS
========================= */
.section {
    padding: 70px 0;
}

/* =========================
   IMAGES
========================= */
.card img {
    height: 180px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

img {
    transition: 0.3s;
}

img:hover {
    transform: scale(1.03);
}

/* =========================
   DEFAULT CARDS
========================= */
.card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* =========================
   PREMIUM HOVER CARDS
========================= */
.hover-card {
    border-radius: 18px;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Golden accent top border */
.hover-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ffd700, #ffcc00);
}

/* Hover animation */
.hover-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Icon animation */
.hover-card i {
    transition: 0.3s;
}

.hover-card:hover i {
    color: #ffcc00;
    transform: scale(1.2);
}

/* =========================
   BUTTON IMPROVEMENTS
========================= */
.btn {
    border-radius: 8px;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

/* =========================
   BADGES
========================= */
.badge {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
}

/* =========================
   FOOTER TEXT
========================= */
.card-footer {
    background: #fafafa;
}

/* =========================
   SMALL TEXT
========================= */
small {
    font-size: 12px;
}


.table th, .table td {
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background: #f1f1f1;
}