
    .dcc-wrap {
      font-size: 16px;
      color: #2c2c2c;
      margin-top: 20px;
      margin-bottom: 60px;
    }

    /* HERO */
    .dcc-hero {
      background: linear-gradient(180deg, #f7fafc 0%, #ffffff 60%);
      border-radius: 14px;
      margin: 24px auto 40px;
      padding: 40px 20px 50px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .dcc-eyebrow {
      font-weight: 800;
      letter-spacing: .08em;
      color: #0f67c4;
      text-transform: uppercase;
      font-size: 18px;
      margin-bottom: 10px;
    }
    .dcc-eyebrow i {
      color: #ffb400;
      margin-right: 6px;
      text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    }
    .dcc-title {
      font-size: 28px;
      line-height: 1.2;
      font-weight: 800;
      margin: 8px 0 8px;
    }
    .dcc-sub {
      color: #4a5568;
      max-width: 900px;
      margin: 0 auto;
    }
    .dcc-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-top: 14px;
    }
    .dcc-pill {
      background: #ebf3ff;
      border: 1px solid #d8e7ff;
      color: #0f67c4;
      padding: 6px 12px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 13px;
    }

    /* CTA buttons */
    .dcc-cta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
      margin: 18px 0 0;
    }
    .dcc-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 12px;
      background: #f6f7fb;
      border: 1px solid #e5e8f1;
      color: #0b3d7d;
      font-weight: 700;
      text-decoration: none;
      transition: 0.2s;
    }
    .dcc-btn:hover {
      background: #eef2fb;
      transform: translateY(-1px);
    }
    .dcc-btn i {
      font-size: 16px;
    }
    .dcc-yt {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ffffff;
      border: 1px solid #ffd9d9;
      color: #c41313;
      border-radius: 12px;
      padding: 10px 14px;
      text-decoration: none;
      font-weight: 800;
    }
    .dcc-yt i {
      font-size: 18px;
    }

    /* HERO IMAGE – Option C (60px gap) */
    .dcc-hero-image {
      margin-top: 60px;
    }
    .dcc-hero-image img {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      display: block;
      border-radius: 14px;
      height: auto;
    }

    /* Sections */
    .dcc-sec {
      margin: 26px 0;
    }
    .dcc-h2 {
      font-size: 24px;
      font-weight: 800;
      color: #0b3d7d;
      margin-bottom: 8px;
    }
    .dcc-lead {
      font-size: 17px;
      color: #334155;
    }

    /* Grid cards */
    .dcc-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
      margin-top: 14px;
    }
    .dcc-col6 {
      grid-column: span 6;
    }
    .dcc-card {
      background: #ffffff;
      border: 1px solid #eef1f5;
      border-radius: 14px;
      padding: 18px;
      box-shadow: 0 2px 8px rgba(16,24,40,.06);
    }
    .dcc-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      display: inline-grid;
      place-items: center;
      margin-bottom: 10px;
      background: #f0f7ff;
      border: 1px solid #d9e9ff;
      color: #0f67c4;
    }
    .dcc-card h3 {
      font-size: 18px;
      font-weight: 800;
      margin: 6px 0;
    }
    .dcc-card h3 a {
      color: #0b3d7d;
      text-decoration: none;
    }
    .dcc-card h3 a:hover {
      text-decoration: underline;
    }
    .dcc-card p {
      margin: 6px 0 0;
    }

    /* Cities belt */
    .dcc-cities {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
    }
    .dcc-city {
      font-size: 13px;
      border: 1px dashed #dfe7f5;
      padding: 6px 10px;
      border-radius: 999px;
      background: #fafcff;
    }
    .dcc-city a {
      text-decoration: none;
      color: #0b3d7d;
    }

    /* Read-more band */
    .dcc-band {
      position: relative;
      margin: 28px 0;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid #d7e6ff;
    }
    .dcc-band .dcc-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      background: #0f67c4;
      color: #ffffff;
      padding: 14px 16px;
      font-weight: 800;
      border: none;
      cursor: pointer;
    }
    .dcc-band .dcc-panel {
      display: none;
      background: #eaf3ff;
      padding: 14px;
    }
    .dcc-band .dcc-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .dcc-tag {
      background: #ffffff;
      border: 1px solid #cfe0ff;
      color: #0b3d7d;
      border-radius: 999px;
      padding: 7px 12px;
      font-weight: 700;
      text-decoration: none;
      font-size: 13px;
    }
    .dcc-tag:hover {
      background: #f7fbff;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .dcc-title {
        font-size: 24px;
      }
      .dcc-hero {
        padding: 30px 16px 40px;
      }
      .dcc-grid {
        grid-template-columns: 1fr;
      }
      .dcc-col6 {
        grid-column: span 1;
      }
      .dcc-wrap {
        margin-top: 10px;
        margin-bottom: 40px;
      }
      .dcc-hero-image {
        margin-top: 40px;
      }
    }/* ================================
   GLOBAL SAFE-GAP FIX
   Applies to hero + all sections
   ================================ */

/* Add horizontal breathing space */
.dcc-wrap,
.dcc-hero,
.dcc-sec,
.dcc-card,
.dcc-band,
.dcc-panel,
.dcc-cities,
.dcc-cta {
  padding-left: 20px;
  padding-right: 20px;
}

/* Keep layout stable on desktop */
@media (min-width: 1100px) {
  .dcc-wrap,
  .dcc-sec {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Hero section additional spacing */
.dcc-hero {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

/* Cards inner spacing */
.dcc-card {
  padding-left: 24px;
  padding-right: 24px;
}

/* Mobile optimization */
@media (max-width: 600px) {
  .dcc-wrap,
  .dcc-sec,
  .dcc-card,
  .dcc-hero {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}/* =========================================
   UNIVERSAL SAFE MARGIN & PADDING FIX
   Works for ALL pages without changing layout
   ========================================= */

/* Applies spacing to all top-level containers */
.container,
.row,
section,
.wrap,
.dcc-wrap,
.dcc-hero,
.dcc-sec {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* Desktop spacing */
@media (min-width: 1100px) {
  .container,
  .row,
  section,
  .wrap,
  .dcc-wrap,
  .dcc-sec {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

/* Mobile spacing */
@media (max-width: 600px) {
  .container,
  .row,
  section,
  .wrap,
  .dcc-wrap,
  .dcc-sec {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}/* FORCE HERO TITLE COLOR — ALWAYS DARK BLUE */
.dcc-title {
    color: #0a2a66 !important;
}

/* Eyebrow (World-Class Interior Design Services) */
.dcc-eyebrow {
    color: #0a2a66 !important;
}

/* Section Headings (Our Six Core Services, Who We Are, etc.) */
.dcc-h2 {
    color: #0a2a66 !important;
}/* Final CTA clean section */
.final-cta {
  background: #ffffff;
  padding: 40px 22px;
  text-align: center;
}

.final-cta .dcc-cta a.dcc-btn {
  margin: 8px 10px;
  display: inline-block;
}

@media (max-width: 600px) {
  .final-cta .dcc-cta a.dcc-btn {
    width: 100%;
    margin: 6px 0;
  }
}/* ==== PORTFOLIO GRID (FILLET BOXES) ==== */

.portfolio-section {
  margin-top: 32px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.portfolio-card {
  background: #ffffff;
  border-radius: 18px;           /* fillet corners */
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.portfolio-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.portfolio-thumb {
  aspect-ratio: 4/3;             /* all images equal size on grid */
  overflow: hidden;
  background: #f3f5f8;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card figcaption {
  padding: 10px 14px 14px;
}

.portfolio-card h4 {
  font-size: 0.98rem;
  margin: 0 0 4px;
  color: #163b71;                /* same blue family */
}

.portfolio-tag {
  font-size: 0.8rem;
  color: #6c7785;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.10);
}

/* ==== GOOGLE TRANSLATE WRAP ==== */

.translate-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #f5f7fb;
  border: 1px solid rgba(12, 59, 120, 0.08);
}

.translate-label {
  font-size: 0.86rem;
  color: #163b71;
  font-weight: 600;
}

/* ==== FOOTER LINKS (NEW STYLE) ==== */

.footer-links .footer-list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
}

.footer-links .footer-list li {
  margin-bottom: 4px;
}

.footer-links .footer-list a {
  font-size: 0.86rem;
  color: #1c3c68;
  text-decoration: none;
}

.footer-links .footer-list a:hover {
  text-decoration: underline;
}

/* ==== SMALL SCREENS ==== */

@media (max-width: 768px) {
  .dcc-title {
    font-size: 1.35rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  @media (max-width: 480px) {
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
  }
}/* ========== PORTFOLIO LAYOUT ========== */

.dcc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0 20px;
  flex-wrap: wrap;
  font-size: 13px;
}

.dcc-crumb {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #d3d9ea;
  background: #f5f7fb;
  text-decoration: none;
  color: #223056;
}

.dcc-crumb-link:hover {
  background: #e4e8f5;
}

.dcc-crumb-current {
  font-weight: 600;
  background: #223056;
  color: #fff;
}

.dcc-crumb-sep {
  color: #7a8194;
}

/* Google Translate pill */

.dcc-translate-bar {
  display: flex;
  justify-content: flex-end;
  margin: 10px 0 10px;
}

.dcc-translate-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f5f7fb;
  border: 1px solid #d3d9ea;
  font-size: 12px;
  color: #223056;
  white-space: nowrap;
}

.dcc-translate-inner i {
  font-size: 13px;
}

/* tweak default google translate select */
#google_translate_element select {
  border: none;
  background: transparent;
  font-size: 12px;
  outline: none;
}

/* Portfolio grid */

.dcc-portfolio-intro h1.dcc-title {
  font-size: 24px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .dcc-portfolio-intro h1.dcc-title {
    font-size: 30px;
  }
}

.dcc-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.dcc-portfolio-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(20, 36, 74, 0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dcc-portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(20, 36, 74, 0.18);
}

.dcc-portfolio-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.dcc-portfolio-thumb {
  position: relative;
  padding-top: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
}

.dcc-portfolio-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dcc-portfolio-body {
  padding: 10px 14px 12px;
}

.dcc-portfolio-title {
  font-size: 14px;
  line-height: 1.35;
  margin: 0 0 4px;
  color: #182342;
}

.dcc-portfolio-meta {
  margin: 0;
  font-size: 12px;
  color: #6a7187;
}

/* Section subtitles */
.dcc-sec .dcc-lead-small {
  font-size: 13px;
  color: #6a7187;
  max-width: 780px;
  margin: 0 auto 18px;
  text-align: center;
}/* --------------------------------------------------------------
   GLOBAL UTILITY OVERRIDES (MOBILE PERFECT)
-------------------------------------------------------------- */
:root {
  --dcc-blue: #0b2c74;
  --dcc-light-blue: #e9f2ff;
  --dcc-pill-bg: #f5f8ff;
  --dcc-shadow: 0 4px 30px rgba(0,0,0,0.08);
  --dcc-radius: 16px;
}

/* Responsive container */
.container, .dcc-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Fix hero headings mobile */
.dcc-title {
  color: var(--dcc-blue);
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.26;
  margin-bottom: 14px;
}

.dcc-eyebrow {
  display: inline-block;
  background: var(--dcc-light-blue);
  padding: 10px 18px;
  border-radius: var(--dcc-radius);
  font-size: 14px;
  font-weight: 700;
  color: var(--dcc-blue);
  box-shadow: var(--dcc-shadow);
  margin-bottom: 12px;
}

/* Improve paragraph visibility */
.dcc-sub,
.dcc-lead,
.dcc-lead-small {
  font-size: 16px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 12px;
}

/* Mobile paragraph fix */
@media(max-width: 600px){
  .dcc-lead-small { font-size: 15.2px; }
  .dcc-sub { font-size: 15.8px; }
}


/* --------------------------------------------------------------
   CATEGORY BUTTONS (Home/Corporate/Premium etc.)
-------------------------------------------------------------- */
.dcc-category-wrap {
  text-align: center;
  margin: 20px auto 35px;
}

.dcc-category-wrap a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--dcc-pill-bg);
  border-radius: var(--dcc-radius);
  color: var(--dcc-blue);
  font-weight: 600;
  margin: 5px;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--dcc-shadow);
}

.dcc-category-wrap a i {
  font-size: 16px;
}


/* --------------------------------------------------------------
   PORTFOLIO GRID (FIX MOBILE 1.5 TILE ISSUE)
-------------------------------------------------------------- */
.dcc-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 18px;
}

@media(max-width: 480px){
  .dcc-portfolio-grid {
    grid-template-columns: 1fr; /* Full width on small screens */
  }
}

/* Project Card */
.dcc-project-card {
  background: #fff;
  border-radius: var(--dcc-radius);
  box-shadow: var(--dcc-shadow);
  overflow: hidden;
  transition: 0.25s;
}

.dcc-project-card:hover {
  transform: translateY(-4px);
}

/* Project Image */
.dcc-project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

/* Project Text */
.dcc-project-body {
  padding: 14px 18px 18px;
}

.dcc-project-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dcc-blue);
  margin-bottom: 6px;
}

.dcc-project-meta {
  font-size: 14px;
  color: #555;
}


/* --------------------------------------------------------------
   GOOGLE TRANSLATE BOX FIX (Fillet Button Style)
-------------------------------------------------------------- */
#google_translate_element select {
  background: var(--dcc-pill-bg);
  color: var(--dcc-blue);
  border-radius: var(--dcc-radius);
  border: none !important;
  padding: 8px 14px;
  font-weight: 600;
  box-shadow: var(--dcc-shadow);
}

/* Remove translate logo */
.goog-te-gadget img {
  display: none !important;
}


/* --------------------------------------------------------------
   FOOTER GRID (4 Boxes — Beautiful Theme)
-------------------------------------------------------------- */
.footer-links {
  background: #f8faff;
  margin-top: 40px;
  padding: 40px 0;
  border-radius: var(--dcc-radius);
  box-shadow: var(--dcc-shadow);
}

.footer-links .dcc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.footer-links h3 {
  color: var(--dcc-blue);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-list li {
  list-style: none;
  margin-bottom: 8px;
}

.footer-list a {
  text-decoration: none;
  font-size: 15px;
  color: #333;
}

.footer-list a:hover {
  color: var(--dcc-blue);
  text-decoration: underline;
}


/* --------------------------------------------------------------
   LOCATION BELT (City Buttons)
-------------------------------------------------------------- */
.dcc-city {
  padding: 8px 14px;
  background: var(--dcc-pill-bg);
  border-radius: var(--dcc-radius);
  margin: 4px;
  display: inline-block;
  box-shadow: var(--dcc-shadow);
}

.dcc-city a {
  color: var(--dcc-blue);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}


/* --------------------------------------------------------------
   FINAL CTA SECTION
-------------------------------------------------------------- */
.final-cta {
  text-align: center;
  margin: 50px auto;
}

.final-cta .dcc-btn {
  background: var(--dcc-blue);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--dcc-radius);
  margin: 10px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  box-shadow: var(--dcc-shadow);
}

.final-cta .dcc-btn:hover {
  background: #08245b;
}/* ============================================================
   PORTFOLIO PAGE — OPTION A (Single Full-Width Tile on Mobile)
   Works for Corporate / Premium / Luxury / Healthcare sections
   ============================================================ */

/* Global safe spacing */
.dcc-wrap, .dcc-sec, .dcc-card, .dcc-hero, .breadcrumb-lite,
.dcc-portfolio-intro, .dcc-portfolio-grid, .dcc-project-card {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1100px) {
  .dcc-wrap, .dcc-sec {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ============================
   TRANSLATE PILL
   ============================ */
.dcc-translate-bar {
  margin: 8px auto 12px;
  display: flex;
  justify-content: center;
}

.dcc-translate-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3f5fb;
  box-shadow: 0 8px 18px rgba(15, 40, 75, 0.06);
  font-size: 0.8rem;
  color: #12325b;
}

.dcc-translate-inner i {
  font-size: 0.9rem;
}

#google_translate_element select {
  border-radius: 999px;
  border: 1px solid rgba(18, 50, 91, 0.2);
  padding: 4px 22px 4px 8px;
  font-size: 0.8rem;
  background: #fff;
}

/* ============================
   BREADCRUMB BUTTONS
   ============================ */
.breadcrumb-lite {
  margin: 8px auto 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dcc-breadcrumb-btn {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(10, 35, 77, 0.15);
  font-size: 0.8rem;
  color: #12325b;
  background: #fff;
  text-decoration: none;
}

.dcc-breadcrumb-btn:hover {
  background: #0b5cff;
  color: #fff;
}

.dcc-breadcrumb-arrow {
  color: #6c7a96;
  font-size: 0.85rem;
}

.dcc-breadcrumb-current {
  padding: 4px 12px;
  border-radius: 999px;
  background: #102a5c;
  color: #fff;
  font-size: 0.8rem;
}

/* ============================
   HERO INTRO BOX
   ============================ */
.dcc-portfolio-intro {
  padding-top: 12px;
  text-align: center;
}

.dcc-hero-countbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #e6f0ff;
  color: #153469;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dcc-hero-countbox i {
  font-size: 0.9rem;
}

.dcc-portfolio-intro .dcc-title {
  margin-top: 16px;
  color: #12325b;
}

/* ============================
   CATEGORY PILLS
   ============================ */
.dcc-cat-pills {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.dcc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e9f1ff;
  color: #173465;
  font-size: 0.8rem;
  text-decoration: none;
  border: 1px solid transparent;
}

.dcc-pill i {
  font-size: 0.9rem;
}

.dcc-pill:hover {
  background: #0b5cff;
  color: #fff;
}

/* ============================
   SECTION HEADERS
   ============================ */
.dcc-h2 {
  color: #12325b;
  font-weight: 700;
}

.dcc-lead-small {
  font-size: 0.9rem;
  color: #5f6c86;
  max-width: 640px;
  margin: 4px 0 18px;
}

/* ============================
   SINGLE TILE PORTFOLIO GRID
   ============================ */
.dcc-portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.dcc-project-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 16px 16px 18px;
  box-shadow: 0 20px 40px rgba(15, 35, 72, 0.15);
  width: 100%;
}

.dcc-project-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
  margin-bottom: 12px;
}

.dcc-project-card h3 {
  font-size: 1.05rem;
  margin: 4px 0 2px;
  color: #102a5c;
}

.dcc-project-card h3 a {
  color: inherit;
  text-decoration: none;
}

.dcc-project-card h3 a:hover {
  text-decoration: underline;
}

.dcc-proj-loc {
  font-size: 0.85rem;
  color: #6a768f;
}

/* Center cards nicely on large screens */
@media (min-width: 992px) {
  .dcc-portfolio-grid {
    align-items: center;
  }

  .dcc-project-card {
    max-width: 880px;
  }
}

/* ============================
   CITY CHIPS
   ============================ */
.dcc-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.dcc-city a {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #edf2ff;
  color: #18325d;
  font-size: 0.8rem;
  text-decoration: none;
}

.dcc-city a:hover {
  background: #0b5cff;
  color: #fff;
}

/* ============================
   FINAL CTA BOX
   ============================ */
.final-cta.dcc-card {
  text-align: center;
}

.dcc-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.dcc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  border-radius: 999px;
  background: #0b5cff;
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  text-decoration: none;
}

.dcc-btn:hover {
  background: #053bb0;
}

/* ============================
   NAVY FOOTER
   ============================ */
.dcc-footer-dark {
  margin-top: 28px;
  background: #04132f;
  color: #f4f6fd;
  padding: 32px 16px 16px;
}

.dcc-footer-grid {
  max-width: 1200px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .dcc-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .dcc-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.dcc-footer-box h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.dcc-footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dcc-footer-box li {
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.dcc-footer-box a {
  color: #d9e2ff;
  text-decoration: none;
}

.dcc-footer-box a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.dcc-footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: #9aa3c4;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}/* ===============================
   GOOGLE TRANSLATE – HEADER FIX
   Target: #google_translate_element
   =============================== */

/* Base box style – keep it compact and inline */
#google_translate_element {
  display: inline-block;
  max-width: 150px;          /* stop it from stretching */
  overflow: hidden;          /* hide extra text if any */
  white-space: nowrap;
  vertical-align: middle;
}

/* Make the small dropdown neat */
#google_translate_element .goog-te-gadget {
  font-size: 10px !important;
  line-height: 1.2 !important;
}

#google_translate_element .goog-te-gadget-simple {
  padding: 2px 6px !important;
  border-radius: 20px !important;
  border: 1px solid #dddddd !important;
  background: #ffffff !important;
}

/* Remove big Google text, keep it subtle – NOT hidden, just smaller */
#google_translate_element .goog-te-gadget span {
  font-size: 0 !important;          /* hide “Powered by” text */
}
#google_translate_element .goog-te-gadget span a {
  font-size: 9px !important;        /* keep logo link tiny */
}

/* MOBILE: shrink & keep inside header on small screens */
@media (max-width: 768px) {

  /* If inside .topbar nav – adjust as needed */
  .topbar nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
  }

  #google_translate_element {
    transform: scale(0.85);
    transform-origin: right center;
    max-width: 120px;
  }
}

/* Fix rare issue where Google adds top offset on body */
body {
  top: 0 !important;
  position: static !important;
}
