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

.footer-section {
    padding: 50px 0;
    background-color: #1e1e1e;
    color: #fff;
    text-align: center;
    margin: 0; /* Remove any default margin */
}

.footer-section h5 {
    font-size: 20px;
    color: #ffff01; /* Updated to Yellow Color */
    margin-bottom: 5px; /* Adjust margin */
    text-align: left; /* Align h5 elements to the left */
    padding: 5px 25px; /* Adjust padding */
    line-height: 1.2; /* Adjust line height */
}

.footer-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0; /* Remove any default padding */
}

.footer-section .row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
}

.footer-section .col-12,
.footer-section .col-xs-12,
.footer-section .col-sm-12,
.footer-section .col-md-12,
.footer-section .col-lg-12 {
    padding: 15px;
}

.footer-section .list-group {
    padding: 0;
    text-align: left; /* Align list items to the left */
}

.footer-section .list-group-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px; /* Adjust spacing between label and text */
    background: none;
    border: none;
    font-size: 16px;
    padding: 5px 10px;
    margin-bottom: 5px;
    line-height: 1.2;
    flex-wrap: wrap; /* Ensures items don't break unnecessarily */
}

.footer-section .list-group-item .label {
    white-space: nowrap; /* Prevent labels from breaking into multiple lines */
    align-self: flex-start; /* Align labels to the top left */
}

.footer-section .list-group-item .field {
    flex: 1; /* Allow text to take remaining space */
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain; /* Ensures the image maintains aspect ratio */
    margin-right: 10px;
}


.footer-section .list-group-item a {
    color: #fff;
    transition: color 0.3s ease-in-out;
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    line-height: 1.2; /* Adjust line height */
}

.footer-section .list-group-item a:hover {
    color: #f2c912;
}

.footer-section iframe {
    width: 100%;
    max-width: 100%; /* Ensure iframe takes full width of col-12 */
    height: 350px; /* Adjust height as needed */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.footer-section .footer-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section .footer-logos img {
    width: 75px;
}

.footer-section .copyright {
    margin-top: 40px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    color: #fff;
}

@media (max-width: 1130px) {
    .footer-section .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section iframe {
        height: 200px;
    }
}

/* New rule to make mb-5 text white */
.mb-5 {
    color: #fff;
}