/* General footer styling */
/* General footer styling */
.footer {
    background-color: #333;
    color: #fff;
    padding: clamp(16px, 2vw, 32px); /* Responsive padding */
    text-align: center;
}

.footer__inner {
    display: flex;
    justify-content:center;
    align-items: center;
}

/* Title styling */
.footer__title {
    font-size: clamp(18px, 2vw, 32px); /* Responsive font-size */
    color: #fff;
    text-decoration: none;
}

/* Footer menu styling */
.footer__nav {
    display: flex;
    justify-content: center;
}

.footer__menu li a {
    color: white;
    text-decoration: none;
    font-size: clamp(14px, 1.5vw, 18px); /* Responsive font-size */
    transition: .7s;
}
  
  .footer__menu li a:hover {
    background: linear-gradient(45deg, #DAAF08, #FEE9A0, #B67B03);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

/* Copyright styling */
.footer__copyright {
    font-size: clamp(12px, 1vw, 16px); /* Responsive font-size */
    color: #bbb;
    margin-top: clamp(10px, 1vw, 20px); /* Responsive margin */
}

.footer__logo img{
    width: 78px;
    height: 54px;
    object-fit: contain;
}
.footer__menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(5px, 1.5vw, 10px); /* Responsive gap */
    text-align: left;
}

/* Mobile Design */
@media (max-width: 768px) {
    .footer__inner {
        flex-direction: column;
        align-items: center;
    }

    .footer__nav {
        margin-top: clamp(10px, 2vw, 20px); /* Responsive margin */
    }

}
@media (min-width: 768px) {
    
    .footer__inner {
        gap:min(8vw,185px);
    }   
   
    .footer__logo img{
        width: 140px !important;
        height: 80px !important;
    }
    .footer__menu {
        display: flex;
        gap: clamp(10px, 2vw, 30px); /* Responsive gap */
        list-style: none;
        margin: 0;
        padding: 0;
    }
}


