.bg-darkblue {
    background-color: #003366;
    /* Dark blue background */
}

.text-white {
    color: white;
    /* Ensure text is white for contrast */
}

.topper {
    font-size: 14px;
}

.d-flex {
    display: flex;
    align-items: center;
}

.d-flex>* {
    white-space: nowrap;
    /* Prevent wrapping of text */
}

@media (max-width: 767px) {
    .container {
        flex-direction: column;
        /* Stack elements vertically on mobile */
        align-items: center;
    }

    .d-flex {
        justify-content: center;
        /* Center the content on mobile */
    }

    .topper {
        margin-bottom: 10px;
        /* Add some space between the phone number and the other links */
    }

    .d-flex a {
        margin: 5px;
    }

}

/* Language switch image */
.current-lang img {
    width: 20px;
    height: 15px;
}

/* Sticky top menu bar */
.sticky-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* Circle icon for blurb */
.icon-circle {
    width: 42px;
    height: 42px;
    background-color: #ff7a00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Negative -40px */
/* .translate-up-40 {
  transform: translateY(-40px);
} */


/* Mobile friendly blurbs to lign up with the iMac */
.blurb-shift {
    transform: none;
}

@media (min-width: 992px) {
    .blurb-shift {
        transform: translateY(-40px);
    }
}

/* Quote Wizard styling */

.card.orange-left {
    border-left: 8px solid #ff7a00;
}

.stepper {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.step-circle.red {
    background: #dc3545;
}

.step-circle.green {
    background: #06f93f;
}

.step-circle.gray {
    background: #6c757d;
}

.btn-orange {
    background-color: #ff7a00;
    color: #fff;
    border-color: #ff7a00;
}

.btn-orange:hover {
    background-color: #e76d00;
    border-color: #e76d00;
    color: #fff;
}

.summary-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    padding: 1rem;
}


/* Graphic Design Tabs */
.premium-tabs {
    border-radius: 18px;
    background: #ffffff;
}

.premium-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 500;
    color: #6c757d;
    background: #f5f6f8;
    transition: all 0.3s ease;
}

.premium-nav .nav-link i {
    font-size: 1.1rem;
}

.premium-nav .nav-link:hover {
    background: #fde6db;
    color: #212529;
}

.premium-nav .nav-link.active {
    background: #f67a3c;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(246, 122, 60, 0.45);
}

.premium-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.premium-content p {
    color: #6c757d;
    line-height: 1.7;
}

.tabs-header {
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
}

/* Tabs */
.premium-nav .nav-link {
    position: relative;
    border-radius: 14px 14px 0 0;
}

/* Active tab line */
.premium-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 100%;
    height: 3px;
    background-color: #f67a3c;
    border-radius: 2px;
}

/* Remove pills look slightly to feel more tab-like */
.premium-nav .nav-link:not(.active) {
    background: transparent;
}

/* Content box */
.premium-content {
    padding-top: 30px;
}

/* =====================================================
   PORTFOLIO PAGE — SCOPED STYLES
   Affects ONLY .portfolio-page
===================================================== */

/* =========================
   HERO / PARALLAX
========================= */
.portfolio-page .hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.portfolio-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 2, 220, 0.736);
}

.portfolio-page .hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 1rem;
  color: #fff;
}

/* =========================
   SECTION TITLES
========================= */
.portfolio-page .section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

/* =========================
   PORTFOLIO
========================= */
.portfolio-page .portfolio-block {
  padding: 3rem 0;
}

.portfolio-page .portfolio-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.portfolio-page .btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* =========================
   HERO IMAGE OVERLAY
========================= */
.portfolio-page .hero-image {
  position: relative;
}

.portfolio-page .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-page .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 82, 155, 0.85) 0%,
    rgba(0, 82, 155, 0.6) 30%,
    rgba(0, 82, 155, 0.2) 60%,
    rgba(0, 82, 155, 0) 100%
  );
}

.open-hours li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.banner-section {
    padding: 7rem 0 4rem 0;
}

.banner-4 {
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary08) 100%);
    color: #fff;
    z-index: 1;
    position: relative;
}

.content-1 {
    font-size: 50px;
    line-height: 1.3;
}

.content-2 {
    font-size: 1.165rem;
}

.tx-info-dark {
    color: #85caff;
}

.br-bottom-before {
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: -10%;
    height: 5px;
    width: 200px;
    border-radius: 20%;
    transform: skew(10deg, 356deg);
    background: linear-gradient(to right, #85caff 0%, transparent 100%);
}

.banner-bg.about-image {
    filter: drop-shadow(17px 26px 2px rgba(0, 0, 0, 0.08));
}

.banner-bg {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: transform ease 0.8s;
}

.ptb-120 {
    padding: 120px 0;
}

.gradient-bg {
    background: linear-gradient(75deg, #0840a0, #0145c6) !important;
}

.bg-gray-100 {
    background-color: var(--gray-100);
}

.bg-pattern-1 {
    z-index: 1;
    position: relative;
}

.patterns-8.sub-pattern-1 {
    inset-inline-end: 0;
    inset-inline-start: inherit;
    transform: rotate(270deg);
}
.filter-invert {
    filter: invert(1);
}
.op-1 {
    opacity: 0.1;
}
.patterns-8 {
    inset-inline-start: 0%;
    inset-block-end: 0%;
    z-index: -1;
    position: absolute;
    width: 160px;
    opacity: 0.3;
}
img, svg {
    vertical-align: middle;
}

.heading-section {
    text-align: center;
    margin-block-end: 3rem;
}

.heading-subtitle {
    position: relative;
    display: inline-block;
    margin-block-end: 0.5rem;
}

.tx-primary {
    color: var(--primary-color);
}
.tx-16 {
    font-size: 1rem;
}

.heading-title {
    font-size: 2rem;
    margin-block-end: 0.5rem;
    font-family: "Urbanist", sans-serif;
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.2;
}

.heading-description {
    font-size: 1rem;
    margin-block-end: 0;
    color: var(--default-text-color);
    opacity: 0.8;
}

.banner-pd-3 {
    padding: 50px 0px;
}

.blob-bg-sec {
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.transform-rotate-180 {
    transform: rotate(180deg);
}

.height-inherit {
    height: inherit;
}
.op-1 {
    opacity: 0.1;
}
.patterns-5 {
    inset-inline-start: -3%;
    inset-block-end: -7%;
    z-index: -1;
    position: absolute;
    opacity: 0.3;
    width: 200px;
    height: 200px;
}

.height-inherit {
    height: inherit;
}
.patterns-7 {
    inset-inline-end: 0;
    inset-block-start: 0;
    z-index: -1;
    position: absolute;
    opacity: 0.1;
    width: 200px;
    height: 200px;
}

.text-bg-primary {
    background-color: blue !important;
}

.tx-20 {
    font-size: 1.25rem;
}
.avatar {
    position: relative;
    height: 2.625rem;
    width: 2.625rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 0;
}
.rounded-circle {
    border-radius: 50% !important;
}

.text-bg-orange {
    background-color: #ff8c00 !important;
}

.patterns-8.sub-pattern-1 {
    inset-inline-end: 0;
    inset-inline-start: inherit;
    transform: rotate(270deg);
}

.about-page .text-primary-custom {
    color: rgb(20, 87, 230);
}

.about-page .bg-primary-custom {
    background-color: rgb(20, 87, 230);
}

.about-page .btn-primary-custom {
    background-color: rgb(20, 87, 230);
    border-color: rgb(20, 87, 230);
    color: #fff;
}

.about-page .btn-primary-custom:hover {
    background-color: rgb(15, 65, 180);
    border-color: rgb(15, 65, 180);
}










