.footer {
   background: rgba(255, 255, 255, 0.08); /* light transparent white */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); /* Safari support */
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* subtle top border */
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  color: #000000;
  padding: 40px 20px 20px;
  margin-top: 50px;
  font-size: 0.95rem;
  border-radius: 12px;
   
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 30px;
}

.footer-logo h2 {
    color: #00e1ff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-contact h3,
.footer-social h3 {
    margin-bottom: 10px;
    color: #00bcd4;
}

.footer a {
    color: #000000;
    text-decoration: none;
    margin-right: 10px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00bcd4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #000000;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery img {
        width: 100%;
        max-width: 300px;
    }

    .modal-content {
        width: 95%;
    }

    .services-button {
        width: 100%;
        max-width: 300px;
    }
}
