.navbar.bg-light {
    background-color: #9c9763 !important;
    .form-control {
      border-radius: 4.25rem;
    }
}

/* .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 10px;
} */

/* .dropdown-menu {
    transition: all 0.2s ease;
} */

.ratio {
    background-color: #f9f9f9 ;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.card img{
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.card:hover {
    background-color: rgba(0, 123, 255, 0.8);
    transform: scale(1.02); /* Slight zoom effect */
}

.card:hover img{
    transform: scale(1.1); /* Zoom in on hover */
      opacity: 0.8; /* Add opacity effect */
}

h2 {
    color: #333;
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    color: #555;
}

p {
    color: #666;
    line-height: 1.6;
}
.footer {
    background-color: #9c9763;
}

.footer-content h2 {
    color: #fff;
}


.footer-content p,
.footer-links a {
    color: #fff;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer hr {
    background-color: #fff;
}