:root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #000;
    --primary-yellow: #f8ba20;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
}
.navbar-brand img {
    width: auto;   /* keeps original image width */
    height: auto;  /* keeps original image height */
    max-height: 80px; /* optional, adjust to fit navbar */
}
.nav-link{
    font-weight: 800;
    color:#000 !important;
}
.bg-primary{
    background-color:rgb(249,185,32) !important;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, white, #f8fafc);
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color:var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.btn-outline-primary:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Form elements */
.form-control, .form-select {
    padding: 0.5rem 1rem;
    border-radius: 50rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
}