.footer-divider {
    text-align: center; 
    margin-top: 60px;
}

.footer-divider img{
    max-width: 100%; 
    height: auto;
}

.footer {
    text-align: center;
}

.footer-desc {
    font-size: 0.9em; 
    max-width: 600px; 
    margin: 0 auto;
}

.footer .footer-copyright {
    color: var(--footer-color);
    font-size: 12px;
    font-family: var(--font-family-regular);
}

.footer .footer-company {
    color: var(--black-color);
    font-size: 12px;
    font-family: var(--font-family-regular);
}

.footer-social .list-inline-item {
    margin-right: 12px;
    /* or 16px, adjust as needed */
}

/* Remove right margin from the last icon */
.footer-social .list-inline-item:last-child {
    margin-right: 0;
}

#backToTopBtn {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #007bff; /* Example color */
    color: white;
    cursor: pointer;
    padding: 0; 
    border-radius: 50%; 
    width: 40px; 
    height: 40px; 
    text-align: center; 
    line-height: 40px;
    opacity: 0.7; /* Optional: make it slightly transparent */
    transition: opacity 0.3s ease-in-out; /* Smooth fade in/out */
}

#backToTopBtn:hover {
    opacity: 1; /* Solid on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #home {
        flex-direction: column;
        text-align: center;
    }

    #home-text {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    #home h1,
    #home p {
        text-align: center;
    }

    #home .buttons {
        justify-content: center;
    }

    #home-image {
        flex: 0 0 100%;
        margin-left: 0;
    }

    #home-image img {
        max-width: 50%;
    }
}

/* Retina (2x) */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi) {
  .world-map-section {
    background-image: url('../images/world-map/world-map@2x.png');
  }
}

/* Retina (3x) */
@media only screen and (-webkit-min-device-pixel-ratio: 3),
       only screen and (min-resolution: 288dpi) {
  .world-map-section {
    background-image: url('../images/world-map/world-map@3x.png');
  }
}

