@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #334155;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0f172a;
}

/* Card Styling & Animations */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background-color: #ffffff;
    margin-bottom: 24px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-title {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Button Styling */
.btn-primary {
    background-color: #3b82f6;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    background-color: #2563eb;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.4);
}

/* Carousel Overrides */
.carousel-caption {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 15px 25px;
    backdrop-filter: blur(4px);
    bottom: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-caption p {
    margin: 0;
    font-weight: 500;
    font-size: 1.1rem;
    color: #f8fafc;
}

.carousel-item img {
    object-fit: cover;
    height: 600px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Navbar Utilities */
.dropdown-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}
