/* Custom Global Styles for Nexus IT & Data Solutions */
body {
    font-family: 'Inter', sans-serif;
    background-color: #32928B;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Hide scrollbars for clean horizontal swiping card carousels */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Full Bleed Footer Layout & Mobile Centering */
#footer {
    margin: 0;
    width: 100%;
}

@media screen and (max-width: 639px) {
    #footer {
        text-align: center;
    }

    /* Centers flexbox items (icons and text rows) on small screens */
    #footer p {
        justify-content: center;
    }
}

@media screen and (min-width: 640px) {
    #footer {
        text-align: left;
    }

    #footer p {
        justify-content: flex-start;
    }
}

/* Prevent automatic zoom on mobile input focus */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="number"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important;
  }
}