/* Footer Styling */
footer {
    background: #181818;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1100px;
    margin: auto;
}

/* Footer Logo */
.footer-logo img {
    width: 150px; /* Adjust the size as needed */
    height: auto;
    margin-bottom: 10px;
}


.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Quick Links */
.footer-links {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: #e50914;
}

/* Social Media Icons */
.footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-social h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-social a {
    color: white;
    font-size: 22px;
    margin: 0 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #e50914;
}

/* Newsletter Subscription */
.footer-newsletter {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-newsletter h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-newsletter form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 70%;
}

.footer-newsletter button {
    padding: 10px 15px;
    border: none;
    background: #e50914;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-newsletter button:hover {
    background: #b2070b;
}

/* Footer Bottom */
.footer-bottom {
    background: #181818;
    padding: 5px;
    margin-top: 30px;
    text-align: center;

}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}
.logo img {
    width: 120px; /* Adjust width as needed */
    height: auto;
    
}
.footer-social a {
    display: inline-block;
    margin: 0 10px;
}

.footer-social img {
    width: 20px; /* Adjust size as needed */
    height: 20px;
    transition: transform 0.3s ease-in-out;
}

.footer-social img:hover {
    transform: scale(1.1);
}


/* Button Container to Align Side by Side */
.button-container {
    display: flex;
    justify-content: space-between; /* Ensures space between buttons */
    align-items: center;
    max-width: 600px; /* Adjust based on your layout */
    margin: auto;
    gap: 20px; /* Adds spacing between buttons */
}

/* Responsive - Stack buttons on small screens */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-btn {
        width: 90%; /* Make buttons full-width */
    }
}
    .footer-btn {
        background: red;
        color: white;
        font-weight: bold;
        padding: 10px 30px;
        display: inline-block;
        border-radius: 5px;
        text-decoration: none;
        transition: 0.3s;
        width: 45%;
        max-width: 300px;
        font-size: 18px;
        text-align: center;
    }
    .footer-btn:hover {
        background: darkred;
    }
    .trust-badges {
        margin-top: 20px;
        text-align: center;
        font-weight: bold;
        color: #fff;
    }


/* Responsive - Stack buttons on small screens */
@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
    }
}
