/* Footer Styling */

.footer {
    background-color: #0e0e0e;
    color: #CCC;
    padding: 40px 30px;
    text-align: left;
    font-size: 0.8rem;
    z-index: 2;
  position: relative;
}

.footer-container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;

}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}


.footer-column1 {
    flex: 1;
    min-width: 280px;
    margin-bottom: 20px;
}

.column-two {
    display: flex;
}

.footer h3 {
    color: #CCC;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer p, .footer ul {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 5px;
}

.footer-links a, .footer-contact a {
    color: #ccc;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-top img {
    height: auto;
    width: 250px;
}

.footer-top a i {
    color: #FFF;
    background-color: #e86e0a;
    border-radius: 50%;
    padding:5px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px); /* Glass effect */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3); /* Glassy border */
}

.footer-top a i:hover {
    background-color: #c75e09;
}

.footer-logo-watch img{
    height: 50px;
    width: auto;
}

.call-us{
    color: #CCC;
    padding:5px;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s;
}

.call-us a{
    text-decoration: none;
    color: #ccc;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}


/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
    }
    
    .footer-social {
        justify-content: center;
    }

    .footer-top a i {
        padding: 5px;
        font-size: 1rem;
    }

    .footer-top img {
        width: 150px;
    }

    .column-two {
        flex-direction: column;
    }
    
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}


