@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
body {
    min-height: 100vh;
    display: grid;
    justify-content: end;
    align-content: end;
}
footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 80px;
    background: #2E8B57; /* Normal green */
}
footer .container {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 50px;
}
footer .container .sec h2 {
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
}
footer .container .sec h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #32CD32; /* Lime green for highlights */
}
footer .container .sec p {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}
.social-icon {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 40px);
    grid-gap: 10px;
}
.social-icon li {
    list-style: none;
}
.social-icon li a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    height: 40px;
    width: 40px;
    display: inline-block;
    background: whitesmoke; /* color for icons */
    border-radius: 50%;
    display: grid;
    align-content: center;
    justify-content: center;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.social-icon li a::before {
    content: '';
    position: absolute;
    height: 40px;
    width: 0;
    top: 0;
    left: 0;
    background: #32CD32; /* Lime green for hover */
    transition: 0.5s;
    z-index: -1;
}
.social-icon li a:hover::before {
    width: 40px;
}

/* Adjust images inside the social icon circles */
.social-icon li a img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the whole circle */
    border-radius: 50%; /* Ensures the image stays within the circular container */
}

.useful-links, .shop, .info {
    position: relative;
}
.useful-links li, .shop li, .info li {
    list-style: none;
}
.useful-links li a, .shop li a {
    text-decoration: none;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    transition: 0.3s;
}
.useful-links li a:hover, .shop li a:hover {
    color: #32CD32; /* Lime green for hover */
}
.info li {
    display: grid;
    grid-template-columns: 35px 1fr;
    margin-bottom: 20px;
}
.info li span {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}
.info li span i {
    color: #fff;
    font-size: 20px;
}
.info li span i.bx {
    margin-top: 4px;
}
footer .container .sec p a {
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}
footer .container .sec p a:hover {
    color: #32CD32; /* Lime green for hover */
}
.copyright {
    position: relative;
    padding: 16px 20px;
    background: #2E8B57; /* black for footer bottom */
}
.copyright p {
    font-size: 14px;
    color: #fff;
    text-align: center;
}
@media screen and (max-width:990px) {
    footer .container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px;
    }
    footer {
        padding: 50px 40px;
    }
}
@media screen and (max-width:500px) {
    footer .container {
        grid-template-columns: repeat(1, 1fr);
    }
}


