

/* Main styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 0px;
}
.hero-section {
    background-color: #dbe1eb;
    padding: 4rem 0;
    margin-bottom: 2rem;
}
  
.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

 .card-img-top {
            height: 200px;
            object-fit: contain;
            border-bottom: 1px solid #ddd;
        }
        .card-body {
            padding: 1.5rem;
        }
        .card-title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }
        .card-text.short-description {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .card-text.price {
            font-size: 1.1rem;
            font-weight: bold;
            color: #28a745;
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
}

/* Custom button styles */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

/* Form styles */
.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Alert styles */
.alert {
    margin-bottom: 1rem;
}

/* Table styles */
.table th {
    background-color: #f8f9fa;
}

/* Badge styles */
.badge {
    font-weight: normal;
}

/* Footer styles */
.footer-area {
    background-color: #111016;
    background-image: url("../images/footer-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}