footer {
    width: 100%;
    /* padding: 30px; */
    background-color: fff; 
    /* color: #333; */
    /* box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1); */
    border-top:3px solid #177e16;
}

.footer-wrapper {
    display: flex;
    flex-wrap: nowrap; 
    justify-content: space-between; /* Adjust spacing between elements */
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
    padding-bottom: 50px;
    /* position: fixed; */
}

.footer-wrapper .content {
    flex: 1; 
    padding: 20px;
    box-sizing: border-box;
     /* text-align: center; */
}




.footer-wrapper .content img {
    width: 250px;
    margin-bottom: 15px;
}

.footer-wrapper .content-1 p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #6b6b6b;
}

.footer-wrapper .icons a {
    margin-right: 10px;
    font-size: 18px;
    color: #5650DF;
    transition: all 0.3s;
    text-decoration: none;
    background-color: #EDECFC;
    padding: 10px;
    border-radius: 30%;
}

.footer-wrapper .icons a:hover {
    background-color: #4A43DD;
    color: white;
}

.footer-wrapper .content-2 h2{
    padding-bottom: 17px;
}

.footer-wrapper .content-2 a {
    display: block;
    /* margin: 5px 0; */
    font-size: 15px;
    text-decoration: none;
    color: #6b6b6b;
    transition: all 0.3s;
    padding-bottom: 15px;
    /* background-color: red; */
    width: 100px;
}

.footer-wrapper .content-2 a:hover {
    color: #4A43DD;
    transform: translateX(10px);
}

.footer-wrapper .content-3 h2{
    padding-bottom: 17px;
}

.footer-wrapper .content-3 .detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-wrapper .content-3 p{
    color: #6b6b6b;
}

.footer-wrapper .content-3 .detail i {
    font-size: 18px;
}

.footer-wrapper .subscribe-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

footer input[type="text"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 14px;
}

.Subscribe-btn{
    background-color: #4A43DD;
    color: white;
    border: none;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    /* scale: 0; */
}

.Subscribe-btn span{
    right: 10px;
    position: relative;
}

.Subscribe-btn .arrow-icon-default,
.Subscribe-btn .arrow-icon-hover {
    font-size: 18px;
    position: absolute;
    right: 20px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.Subscribe-btn .arrow-icon-default {
    opacity: 1;
    transform: translateY(0);
}

.Subscribe-btn .arrow-icon-hover {
    opacity: 0;
    transform: translateY(100%);
}

.Subscribe-btn:hover .arrow-icon-default {
    opacity: 0;
    transform: translateY(-100%);
}

.Subscribe-btn:hover .arrow-icon-hover {
    opacity: 1;
    transform: translateY(0);
}

.Subscribe-btn:hover {
    background-color: #6f69dd;
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.374);
}


footer .copy-right{
    display: flex;
    width: 100%;
    margin: 0 0;
    color: #faf7f7;
    padding: 15px;
    justify-content:space-between;
    background-color: #177e16;
}

footer .copy-right .policy-links{
    display: flex;
    gap: 10px;
    align-items: center;
}

footer .copy-right .policy-links a, footer .copy-right a{
    text-decoration: none;
    color: #e0f805;
}

footer .copy-right .policy-links a:hover{
    color: #4A43DD;
}

footer .last-line{
    width: 100%;
    
}


/* Responsive Design */

@media (max-width: 1450px) {
    footer .copy-right{
        width: 90%;
    }

    footer .last-line{
        width: 90%;
    }
    
}


@media (max-width: 1450px) {
    footer .copy-right{
        width: 100%;
    }

    footer .last-line{
        width: 100%;
    }
    
}

@media (max-width: 1300px) {
    .footer-wrapper .content-2{
        flex: 0.5;
    }    
}


@media (max-width: 1200px) {
    .footer-wrapper {
        flex-wrap: wrap; /* Allow content to wrap */
    }

    .footer-wrapper .content-4 {
        flex: 0 0 100%; /* Make content-4 take full width */
        margin-top: 20px; /* Add some spacing from the above content */
        /* text-align: center;  */
    }
}




@media (max-width: 790px) {
    .footer-wrapper .content-3 {
        flex: 0 0 100%; /* Make content-4 take full width */
        margin-top: 20px; /* Add some spacing from the above content */
        /* text-align: center;  */
    }
}



@media (max-width: 730px) {
    footer .copy-right p{
        font-size: 15px;
    }
}


@media (max-width: 690px) {
    footer .copy-right p{
        font-size: 12px;
    }
}


@media (max-width: 575px) {
    footer .copy-right p{
        font-size: 15px;
    }

    footer .copy-right{
        flex-direction: column;
        gap: 10px;
    }
}






@media (max-width: 500px) {

    footer{
        padding: 15px;
    }
    .footer-wrapper .content-2 {
        flex: 0 0 100%; /* Make content-4 take full width */
        margin-top: 20px; /* Add some spacing from the above content */
        /* text-align: center;  */
    }
}



@media (max-width: 420px) {
    .footer-wrapper .subscribe-wrapper {
        flex-direction: column;
    }

    footer input[type="text"] {
        flex: 1;
        padding: 15px 20px;
        border: 1px solid #ccc;
        border-radius: 25px;
        font-size: 14px;
    }


    .footer-wrapper .content-2 h2{
        font-size: 22px;
    }
}