/* General Styling */
body {
    background-color: #ECF0F1; /* Light grayish blue background */
    font-family: 'Arial', sans-serif;
    color: #2C3E50; /* Dark slate blue for professional text */
    margin: 0;
    padding: 0;
}

/* Navbar Styling */
.navbar {
    background-color: #2C3E50; /* Dark slate blue for navbar */
}

.nav-link {
    color: #fff !important; /* White text for nav links */
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: #3498DB !important; /* Bright blue hover effect */
}

/* Card Styling */
.card {
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fff; /* White background for cards */
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Softer shadow */
}

.card-title {
    color: #2C3E50; /* Dark slate blue for card titles */
}

/* Footer Styling */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #2C3E50; /* Dark slate blue footer */
    color: #fff;
    text-align: center;
    padding: 15px 0; /* Reduced height */
    box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: #3498DB; /* Bright blue for buttons */
    border: none;
}

.btn-primary:hover {
    background-color: #2980B9; /* Darker blue for hover effect */
    border: none;
}

/* Input Fields */
input[type="text"], input[type="password"], .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #3498DB; /* Bright blue border on focus */
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}
/* General Card Styling */
.card {
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 10px; /* Rounded corners for a sleek look */
    background-color: #fff;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Card Hover Effect */
.card:hover {
    transform: translateY(-5px); /* Lifts the card */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* More intense shadow */
}

/* Card Title Styling */
.card-title {
    color: #2C3E50; /* Dark slate blue title */
    font-size: 1.25rem;
    font-weight: 600; /* Slightly bolder */
    text-transform: capitalize; /* Capitalize each word */
    margin-bottom: 15px;
}

/* Card Content Styling */
.card-body {
    color: #333;
    font-size: 1rem;
    padding: 15px;
    text-align: center; /* Center-align content */
}

/* Card Image Styling */
.card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-fit: cover; /* Keeps images proportionate */
    height: 200px;
    width: 100%;
    transition: transform 0.3s ease;
}

/* Card Image Hover Effect */
.card-img-top:hover {
    transform: scale(1.1); /* Slight zoom-in effect */
}

/* Button Inside Cards */
.card-footer .btn {
    background-color: #3498DB; /* Bright blue button */
    color: #fff;
    border: none;
    width: 100%;
    padding: 10px 0;
    font-weight: 600;
    border-radius: 8px;
}

.card-footer .btn:hover {
    background-color: #2980B9; /* Darker blue on hover */
    border: none;
}

/* Add Card Shadows */
.card.shadow-lg {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Larger shadow */
}

.card.shadow-md {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Medium shadow */
}
