.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;
    }
}

/* university info */
.section-title {
    font-weight: 800;
    color: #111827;
    /* text-gray-900 */
}

.section-subtitle {
    color: #374151;
    /* text-gray-700 */
    max-width: 600px;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: #f87171;
    /* bg-red-400 */
    border-radius: 5px;
    margin: 0 auto;
}

.point-item {
    color: #1f2937;
    font-size: 1rem;
}

.point-icon {
    color: #f87171;
    font-weight: bold;
    font-size: 1.25rem;
}

/* WHY CHOOSE WESTLAND */
.benefit-icon {
    color: #f87171;
    /* red-400 */
    font-weight: bold;
    font-size: 1.25rem;
}

.requirement-icon {
    color: #3b82f6;
    /* blue-400 */
    font-weight: bold;
    font-size: 1.25rem;
}

.cta-text {
    color: #2563eb;
    /* blue-600 */
    font-weight: 600;
    margin-top: 1rem;
}

.apply-btn {
    background-color: #f87171;
    color: white;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    border: none;
    transition: transform 0.2s ease-in-out;
}

.apply-btn:hover {
    transform: scale(1.05);
}

/* 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;
}