footer {
    background-color: #012233;
    color: white;
    font-family: 'Poppins', sans-serif !important;
    padding: 60px 0 0;
    font-size: 14px;
}
  
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 40px;
}
  
.footer-block {
    flex: 1 1 200px;
    min-width: 200px;
    padding: 0 10px;
}
  
footer h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: white;
}
  
footer ul {
    list-style: none;
    padding: 0;
}
  
footer ul li {
    margin-bottom: 10px;
}
  
footer ul li i {
    font-size: 8px;
    color: white;
    margin-right: 8px;
}
  
footer ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif !important;
    text-transform: capitalize;
}
  
footer ul li a:hover {
    text-decoration: underline;
}
  
footer input[type="text"],
footer input[type="email"] {
  width: 100%;
  max-width: 280px; 
  padding: 15px 20px;
  margin-bottom: 10px;
  border: none;
  background: none;
  border-bottom: 1px solid white;
  color: white;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px;
  letter-spacing: 0.3px;
}

  
footer input::placeholder {
    color: #ccc;
}
  
footer button {
    background: linear-gradient(to right, #f13d79, #000);
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 400;
    border: none;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0;
    color: white;
    cursor: pointer;
    margin-top: 10px;
}
  
.footer-bottom {
    background-color: #000;
    color: #ccc;
    font-size: 13px;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
  
footer p, footer form input, footer form button {
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Footer logo with high specificity to override any conflicts */
.footer-block .footer-logo {
    max-width: none !important;
    width: auto !important;
    height: 80px !important;
    vertical-align: middle;
    box-shadow: none;
    display: block;
    margin-bottom: 20px;
    filter: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.footer-block .footer-logo:hover {
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.4)) !important;
    transform: scale(1.05) !important;
}
  
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
  
    .footer-block {
        margin-bottom: 30px;
        width: 100%;
    }

    .footer ul {
        padding: 0;
    }

    .footer ul li {
        display: inline-block;
        margin-right: 15px;
    }

    footer h3 {
        font-size: 16px;
    }
}
