/* Responsive Styles for Noman Logistic */

/* General Styles */
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container Adjustments */
.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
    margin-right: auto;
    margin-left: auto;
}

/* Table Responsive */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Form Controls */
.form-control {
    max-width: 100%;
}

/* Card Adjustments */
.card {
    height: 100%;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    h4 {
        font-size: 1.2rem;
    }
    p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.6rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    h3 {
        font-size: 1.2rem;
    }
    h4 {
        font-size: 1.1rem;
    }
    p {
        font-size: 0.9rem;
    }
}

/* Button Adjustments */
@media (max-width: 576px) {
    .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Spacing Adjustments */
@media (max-width: 768px) {
    .mt-4, .my-4 {
        margin-top: 1.5rem !important;
    }
    .mb-4, .my-4 {
        margin-bottom: 1.5rem !important;
    }
    .pt-4, .py-4 {
        padding-top: 1.5rem !important;
    }
    .pb-4, .py-4 {
        padding-bottom: 1.5rem !important;
    }
}

/* Logo Rotation */
.navbar-brand img, .footer-logo img {
    transform: rotate(90deg);
    transform-origin: center center;
}