.navbar-nav .nav-link {
    font-weight: 500;
    color: #4b5563;
    /* gray-700 */
}

.navbar-nav .nav-link:hover {
    color: #2563eb;
    /* blue-600 */
}

.navbar-brand img {
    width: 130px;
}

@media (min-width: 992px) {
    .navbar-brand img {
        width: 200px;
    }
}

/* feature card */
.feature-card {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 3rem;
}

.feature-icon {
    background: #1a2942;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
}

.feature-title {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-title span {
    color: #2563eb;
}

.feature-description {
    color: #4b5563;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}


/* WHY US */
.whyus-icon {
    color: #f87171;
    font-size: 2rem;
}

.whyus-section {
    padding: 4rem 0;
}

.whyus-section h2 {
    font-weight: bold;
}

.whyus-section p {
    color: #4b5563;
}

.whyus-line {
    height: 4px;
    width: 64px;
    background: #f87171;
    margin-bottom: 1rem;
}

.whyus-images img {
    border-radius: 0.5rem;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.whyus-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.whyus-small-images {
    display: grid;
    gap: 1rem;
}

/* FEATURED UNIVERSITIES */
.university-card {
    transition: box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.university-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.university-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.tagline {
    font-style: italic;
    color: #555;
}

.divider {
    height: 4px;
    width: 70px;
    background-color: #f87171;
    margin: 0 auto 15px;
    border-radius: 2px;
}

input {
    border-radius: 8px;
}

button {
    border-radius: 8px;
}

/* testimonial */
.testimonial-slider img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    max-width: 600px;
    margin: 0 auto 15px;
    position: relative;
}

blockquote::before {
    content: "“";
    font-size: 40px;
    color: #cfe2ff;
    position: absolute;
    left: -25px;
    top: -15px;
}

.author {
    color: #0d6efd;
    font-weight: 600;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #0d6efd;
}

/* footer */
footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 2rem 1.5rem;
}

footer a {
    color: #d1d5db;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.dropup-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #1f2937;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    display: none;
    min-width: 220px;
    z-index: 10;
}

.dropup:hover .dropup-menu {
    display: block;
}

.dropup-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    color: #d1d5db;
}

.dropup-menu a:hover {
    background: #374151;
    color: #fff;
}

body{
    font-family: Poppins;
}