body {
    margin: 0;
    padding: 0;
    font-family: poppins, sans-serif;
    background-color: #f9f9f9; 
}
a {
    text-decoration: none;
    color: inherit;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px; 
    font-size: 1rem;
    margin: 10px 20px; 
    border-radius: 14px;
    background-color: #ffffff; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 70px; 
}
.nav-left{
    display: flex;
    align-items: center;
    gap: 20px; 
}
.nav-item {
    padding: 5px 0;
    transition: color 0.3s;
}
.nav-item:hover {
    color: #007bff; 
}
.navbar button{
    padding: 8px 15px; 
    border: 1px solid #007bff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}
.navbar button:hover {
    background-color: #007bff; 
    color: #ffffff;
}
.png{
    padding: 2px;
    height: 40px; 
    width: auto; 
}
.title{
    text-align: center;
}
.title h3{
    font-size: 1.3rem;
    color: grey;
}
.card-container2 {
    display: flex;
    gap: 40px; 
    flex-wrap: wrap;
    padding: 40px 20px;
    justify-content: center;
    margin-bottom: 70px;
    margin-top: 40px; 
}
.card2 {
    width: 340px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card2:hover {
    transform: translateY(-8px); 
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); 
    cursor: pointer;
}

.card-img2 {
    width: 100%;
    height: 250px;
    object-fit:contain;
    border-radius: 20px;
}
.card-body2 {
    padding: 20px;
}

.card-title2 {
    margin: 0 0 10px 0;
    font-size: 22px;
    color: #333;
}

.card-text2 {
    color: #666;
    margin-bottom: 0; 
    font-size: 16px;
}
.btn{
    padding: 8px 15px; 
    border: 1px solid #007bff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-family: poppins, sans-serif;
    font-weight: bold;
    margin-top: 10px;
}
.btn:hover {
    background-color: #007bff; 
    color: #ffffff;
}
.btn12 {
    padding: 12px 30px;
    margin-top: 35px; 
    font-size: large;
    background-color: #990d0d; 
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: block;
    margin: auto;
    margin-bottom: 30px;
    width: 180px;
    height: 60px;
    
}

.btn12:hover {
    background-color: #0056b3; 
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.footer{
    text-align: center;
    padding: 28px;
    background-color: #e9e9e9; 
    margin-top: 50px; 
    position: relative;
    color: #444;

}