/* -----------------------------
   Global styles for OribNet
----------------------------- */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

/* Containers spacing */
.container.top-container {
    margin-top: 125px;
}

.container.main-container {
    margin-top: 30px;
    margin-bottom: 2rem;
}

/* Responsive container widths */
@media (max-width: 767px) {
    .container.main-container {
        width: 100%;
        min-height: 350px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container.main-container,
    .container.top-container {
        width: 90% !important;
        min-height: 400px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container.main-container,
    .container.top-container {
        width: 80% !important;
        min-height: 400px;
    }
}

@media (min-width: 1200px) {
    .container.main-container,
    .container.top-container {
        width: 70% !important;
        min-height: 450px;
    }
}

/* Links: consistent underline */
a,
a:hover,
a:focus {
    color: #00438b; /* OribNet blue */
    text-decoration: underline;
}

/* Utility classes */
.tight-row {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

/* -----------------------------
   Homepage specific
----------------------------- */
#home .homepage-hero {
    margin: 0;
    padding: 0;
}

#home .homepage-hero img {
    display: block;
    width: 100%;
    height: auto;
}

/* -----------------------------
   Static pages (default)
----------------------------- */
main h1 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 0.25rem;
    font-size: 2rem;
    font-weight: 600;
}

/* Service cards styling */
.service-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Solid blue header bar */
.service-card .card-header {
    background-color: #00438b; /* brand blue */
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid #003366;
}

/* Buttons with underlined text (all buttons consistent) */
.btn {
    text-decoration: underline;
}

