
    .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;
}

 body,html { user-select:none; -webkit-user-select:none; -ms-user-select:none; }
    .ncp * { user-select:none !important; }

    /* Contact-specific layout tweaks */
    .dcc-contact-grid {
      display:grid;
      grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
      gap:28px;
      align-items:flex-start;
    }
    .dcc-contact-thank {
      padding:16px 0;
    }
    .dcc-contact-points {
      margin:16px 0;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .dcc-contact-points li {
      list-style:none;
      padding-left:0;
      font-size:0.95rem;
    }
    .dcc-contact-points i {
      color:#0b62d6;
      margin-right:8px;
    }
    .dcc-contact-cta-row {
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:10px;
    }
    .dcc-contact-cta-row .dcc-btn,
    .dcc-contact-cta-row .dcc-yt {
      flex:1 1 150px;
      text-align:center;
    }

    /* Form styling */
    #contact-form .dcc-card {
      padding:20px 18px;
    }
    #contact-form label {
      display:block;
      font-size:0.9rem;
      margin-bottom:4px;
      color:#333;
    }
    #contact-form input,
    #contact-form select,
    #contact-form textarea {
      width:100%;
      border-radius:8px;
      border:1px solid #ddd;
      padding:8px 10px;
      font-size:0.9rem;
      margin-bottom:10px;
      background:#fff;
      box-sizing:border-box;
    }
    #contact-form textarea {
      min-height:90px;
      resize:vertical;
    }
    #contact-form .dcc-grid--2col {
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(0,1fr);
      gap:10px;
    }
    #contact-form button[type="submit"] {
      width:100%;
      border:none;
      cursor:pointer;
    }
    .dcc-note-small {
      font-size:0.78rem;
      color:#777;
      margin-top:6px;
    }

    /* Map & address */
    .dcc-map-grid {
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
      gap:24px;
      align-items:flex-start;
    }
    .dcc-map {
      border-radius:14px;
      overflow:hidden;
      box-shadow:0 4px 18px rgba(0,0,0,0.08);
    }
    .dcc-map iframe {
      width:100%;
      height:280px;
      border:0;
      display:block;
    }
    .dcc-address-card {
      border-radius:14px;
      padding:18px 16px;
      background:#f8fbff;
      border:1px solid #e3edff;
    }
    .dcc-address-card h3 {
      margin-top:0;
      font-size:1.05rem;
    }
    .dcc-address-card p {
      margin:4px 0;
      font-size:0.9rem;
    }
    .dcc-address-card a {
      color:#0b62d6;
      text-decoration:none;
    }

    /* Mobile fixes – NO LEAKING */
    @media (max-width: 900px) {
      .dcc-contact-grid,
      .dcc-map-grid {
        grid-template-columns: minmax(0,1fr);
      }
    }
    @media (max-width: 768px) {
      html, body {
        max-width:100%;
        overflow-x:hidden;
      }
      #main, .dcc-wrap, .dcc-sec, .dcc-card {
        max-width:100%;
        overflow-x:hidden;
      }
      .dcc-contact-grid,
      .dcc-map-grid {
        display:block;
      }
      #contact-form .dcc-card {
        padding:16px 14px;
      }
      #contact-form .dcc-grid--2col {
        grid-template-columns:minmax(0,1fr);
      }
      .dcc-contact-cta-row {
        flex-direction:column;
      }
    }
    @media (max-width: 480px) {
      .dcc-title {
        font-size:1.4rem;
      }
    }/* ===========================
   MINI TOP BAR (BACK + TRANSLATE)
   =========================== */

.dcc-topbar-mini {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: #f7f9ff;
  border-radius: 10px;
  margin: 15px auto 25px;
  border: 1px solid #e0e7ff;
}

/* Back Button */
.mini-btn {
  padding: 6px 14px;
  font-size: 14px;
  background: #e8f0ff;
  color: #003f9e;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #d2ddff;
  display: inline-block;
  white-space: nowrap;
}

.mini-btn:hover {
  background: #d8e5ff;
}

/* Translate container */
.mini-translate {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eef3ff;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #dbe3ff;
  font-size: 14px;
}

.mini-translate i {
  color: #003f9e;
}
/* ===================== MINI TOP BAR FIX ===================== */

.dcc-topbar-mini {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  background: #f5f7ff !important;
  border: 1px solid #dbe3ff !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  margin: 20px auto 25px !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

/* Back button */
.mini-btn {
  font-size: 14px !important;
  padding: 7px 14px !important;
  background: #e7efff !important;
  color: #003f9e !important;
  border: 1px solid #cdd8ff !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
}

/* Translate Wrap */
.mini-translate {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 8px !important;
  background: #eef3ff !important;
  border-radius: 8px !important;
  border: 1px solid #cfd8ff !important;
}
/* Outer wrapper control */
.dcc-topbar-mini {
  max-width: 1100px !important;        /* Limit width on large screens */
  margin: 20px auto !important;        /* Center it horizontally */
  padding: 10px 20px !important;       /* Add side padding for desktop */
  border-radius: 12px !important;
  box-sizing: border-box !important;
}

/* On ultra-wide monitors */
@media (min-width:1600px){
  .dcc-topbar-mini {
    max-width: 1300px !important;
  }
}

/* Mobile stays full width */
@media (max-width:768px){
  .dcc-topbar-mini {
    max-width: 100% !important;
    border-radius: 10px !important;
    margin: 15px 0 !important;
    padding: 10px 12px !important;
  }
}
/* Icon */
.mini-translate i {
  font-size: 14px !important;
  color: #003f9e !important;
}

/* Google translate reset */
.goog-te-gadget {
  font-size: 0 !important;
}

.goog-te-gadget select {
  font-size: 14px !important;
  padding: 4px 6px !important;
  border-radius: 6px !important;
  border: 1px solid #d0d7ff !important;
  background: #fff !important;
}

/* Mobile Fix */
@media (max-width:480px){
  .dcc-topbar-mini {
    padding: 8px 12px !important;
  }
  .mini-btn {
    font-size: 12px !important;
    padding: 6px 10px !important;
  }
  .mini-translate {
    padding: 5px 6px !important;
  }
  .goog-te-gadget select {
    font-size: 12px !important;
  }
}
/**************************************
 GLOBAL BASE
**************************************/
body {
  margin: 0;
  background:#fafafa;
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:#222;
}

.wrap {
  max-width:1180px;
  margin:0 auto;
  padding:0 16px;
}

/**************************************
 TOP ACTION BUTTONS
**************************************/
.dcc-top-actions-wrap {
  margin-top:10px;
}

.dcc-top-actions {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 0 16px;
}

.btn-top {
  padding:7px 14px;
  border-radius:999px;
  border:1px solid #c4d2ef;
  background:#fff;
  color:#1a2b4f;
  font-size:13px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.btn-top--home::before { content:"←"; }
.btn-top--estimate {
  background:#f3fff3;
  border-color:#8cc98c;
  color:#0f4c0f;
}
.btn-top--estimate::before { content:"₹"; }

/**************************************
 GOOGLE TRANSLATE
**************************************/
#google_translate_element {
  transform:scale(0.90);
  transform-origin:center;
  padding:2px 10px;
  background:#eef2ff;
  border-radius:999px;
}

/**************************************
 BLOG HERO
**************************************/
.blog-hero {
  margin-top:14px;
}
.blog-hero img {
  width:100%;
  height:auto;
  border-radius:16px;
  display:block;
}

/**************************************
 BLOG TITLE BLOCK
**************************************/
.blog-head {
  text-align:center;
  margin:26px auto 22px;
}

.blog-head-eyebrow {
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#5867aa;
  margin-bottom:6px;
}

.blog-head h1 {
  font-size:30px;
  line-height:1.3;
  color:#1f3b75;
  margin:0;
}

.blog-head p {
  font-size:14px;
  margin:10px auto;
  max-width:700px;
  color:#4a4a4a;
}

/**************************************
 GRID LAYOUT
**************************************/
.blog-layout {
  display:grid;
  grid-template-columns: minmax(0,2fr) minmax(260px,1fr);
  gap:26px;
  margin-top:20px;
}

.blog-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

/**************************************
 BLOG CARD
**************************************/
.blog-card {
  background:#fff;
  border-radius:16px;
  border:1px solid #e3e8f5;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.blog-card-img img {
  width:100%;
  height:230px;
  object-fit:cover;
  transition:0.4s;
}
.blog-card:hover .blog-card-img img {
  transform:scale(1.04);
}

.blog-card-body {
  padding:14px 18px;
}

.blog-card-meta {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:#7f89aa;
  margin-bottom:6px;
}

.blog-card-title {
  margin:0 0 8px;
  font-size:18px;
  font-weight:600;
  color:#222;
}
.blog-card-title a {
  text-decoration:none;
  color:inherit;
}
.blog-card-title a:hover {
  text-decoration:underline;
}

.blog-card-excerpt {
  font-size:13px;
  color:#555;
  margin-bottom:12px;
}

.blog-readmore {
  display:inline-flex;
  align-items:center;
  padding:6px 12px;
  border-radius:999px;
  background:#f2f4ff;
  border:1px solid #c8d2f3;
  text-decoration:none;
  font-size:12px;
  color:#1f2d60;
}
.blog-readmore i { font-size:11px; }

/**************************************
 SIDEBAR
**************************************/
.blog-sidebar {
  display:flex;
  flex-direction:column;
  gap:20px;
}

.sidebar-box {
  background:#fff;
  border-radius:16px;
  padding:16px 16px 18px;
  border:1px solid #e3e8f5;
  box-shadow:0 6px 16px rgba(0,0,0,0.04);
}

.sidebar-box h3 {
  margin:0 0 12px;
  font-size:15px;
  color:#1f3b75;
  text-transform:uppercase;
  letter-spacing:0.12em;
  border-left:3px solid #1f3b75;
  padding-left:8px;
}

.sidebar-post {
  display:flex;
  gap:10px;
  margin-bottom:12px;
}
.sidebar-post img {
  width:60px;
  height:50px;
  object-fit:cover;
  border-radius:8px;
}
.sidebar-post-title a {
  font-size:13px;
  color:#222;
  text-decoration:none;
}
.sidebar-post-title a:hover { text-decoration:underline; }
.sidebar-post-date {
  font-size:11px;
  color:#777;
}

/**************************************
 TAGS BLOCK
**************************************/
.sidebar-tags {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.sidebar-tag {
  background:#eef2ff;
  padding:6px 12px;
  border-radius:999px;
  font-size:11px;
  color:#39437d;
}

/**************************************
 FOOTER – MATCH ALL PAGES
**************************************/
.brand-closure {
  background:#fff;
  border-top:1px solid #e3e8f5;
  margin-top:40px;
}

.closure {
  max-width:1180px;
  margin:0 auto;
  text-align:center;
  padding:24px 16px 32px;
}

.closure-brand {
  font-size:14px;
  font-weight:700;
  letter-spacing:0.14em;
  color:#1f3b75;
}

.closure-social {
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:12px;
}

.closure-social a i {
  font-size:20px;
  color:#1f3b75 !important;
  transition:0.2s;
}
.closure-social a:hover i {
  color:#000 !important;
}

.closure-meta {
  margin-top:14px;
  font-size:12px;
  color:#555;
}
.closure-meta a {
  color:#1f3b75;
  text-decoration:none;
}
.closure-meta a:hover {
  text-decoration:underline;
}
.closure-meta .dot {
  margin:0 6px;
}

/**************************************
 RESPONSIVE
**************************************/
@media (max-width:900px) {
  .blog-layout {
    grid-template-columns:1fr;
  }
}

@media (max-width:600px) {
  .blog-card-img img {
    height:190px;
  }
  .blog-head h1 {
    font-size:23px;
  }
  .closure-brand {
    font-size:12px;
  }
} /* ===== HERO (Option A) ===== */
    .tips-hero {
      margin-top: 18px;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      background: url('images/tips/commercial-design-hero.jpg') center/cover no-repeat;
      min-height: 360px;
    }
    .tips-hero::after {
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(120deg,rgba(0,0,0,0.68),rgba(0,0,0,0.15));
    }
    .tips-hero-inner {
      position:relative;
      z-index:1;
      color:#ffffff;
      padding:26px 22px 26px;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      height:100%;
    }
    .tips-crumbs {
      font-size:12px;
      margin-bottom:6px;
      opacity:0.9;
    }
    .tips-crumbs a {
      color:#f4f7ff;
      text-decoration:none;
    }
    .tips-crumbs span {
      margin:0 4px;
      opacity:0.7;
    }
    .tips-hero-inner h1 {
      font-size:28px;
      line-height:1.35;
      margin:0 0 6px;
      letter-spacing:0.02em;
    }
    .tips-hero-inner p {
      max-width:640px;
      margin:0;
      font-size:14px;
      opacity:0.96;
    }

    @media(max-width:640px){
      .tips-hero-inner {
        padding:18px 16px 20px;
      }
      .tips-hero-inner h1 {
        font-size:22px;
      }
    }

    /* ===== PAGE BODY LAYOUT (reuse blog layout grid) ===== */
    .tips-intro {
      margin-top:26px;
    }
    .tips-intro p {
      font-size:14px;
      color:#424242;
    }
    .tips-intro .lead {
      font-size:16px;
      color:#2a2a2a;
      margin-bottom:12px;
    }

    .tips-section {
      margin-top:26px;
    }
    .tips-eyebrow {
      font-size:11px;
      text-transform:uppercase;
      letter-spacing:0.16em;
      color:#5567a8;
      margin-bottom:4px;
    }
    .tips-section h2 {
      font-size:22px;
      margin:0 0 8px;
      color:#102051;
    }
    .tips-section .muted {
      font-size:13px;
      color:#6a6a6a;
      margin-bottom:16px;
    }

    .tips-grid {
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:18px;
    }
    @media(max-width:768px){
      .tips-grid {
        grid-template-columns:1fr;
      }
    }

    .tip-card {
      background:#ffffff;
      border-radius:14px;
      border:1px solid #e3e8f5;
      padding:18px 16px 16px;
      box-shadow:0 6px 18px rgba(0,0,0,0.04);
    }
    .tip-card h3 {
      font-size:16px;
      margin:0 0 6px;
      color:#222;
    }
    .tip-card p {
      font-size:13px;
      margin:0 0 8px;
      color:#444;
    }

    /* ===== CITY BLOCKS ===== */
    .city-wrap {
      margin-top:6px;
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:14px;
    }
    @media(max-width:900px){
      .city-wrap {
        grid-template-columns:1fr;
      }
    }
    .city-block {
      border-left:4px solid #0b62d6;
      background:#f7fbff;
      border-radius:10px;
      padding:14px 14px 10px;
    }
    .city-block h3 {
      font-size:15px;
      margin:0 0 4px;
      color:#12336c;
    }
    .city-block p {
      margin:0;
      font-size:13px;
      color:#414141;
    }

    /* ===== FAQ ===== */
    .tips-faq {
      margin-top:24px;
    }
    .tips-faq details {
      background:#ffffff;
      border-radius:10px;
      border:1px solid #e2e7f3;
      padding:10px 14px 10px;
      margin-bottom:8px;
    }
    .tips-faq summary {
      font-size:14px;
      font-weight:600;
      cursor:pointer;
      color:#222b5e;
    }
    .tips-faq p {
      font-size:13px;
      margin:8px 0 0;
      color:#444;
    }

    /* ===== CORPORATE SIDEBAR (using blog-sidebar styles) ===== */
    .sidebar-box-cta h3 {
      font-size:15px;
      margin-bottom:6px;
    }
    .sidebar-box-cta p {
      font-size:13px;
      margin-bottom:8px;
    }
    .sidebar-pill {
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:8px 12px;
      border-radius:999px;
      font-size:12px;
      border:1px solid #c3d0f2;
      background:#f5f7ff;
      color:#1a2b4f;
      text-decoration:none;
      margin-top:4px;
      margin-right:6px;
    }
    .sidebar-pill i {
      margin-right:6px;
    }
    .sidebar-pill:hover {
      background:#e3e9ff;
    }

    .sidebar-list {
      list-style:none;
      padding:0;
      margin:0;
    }
    .sidebar-list li {
      font-size:12px;
      margin-bottom:4px;
    }
    .sidebar-list a {
      color:#1f3b75;
      text-decoration:none;
    }
    .sidebar-list a:hover {
      text-decoration:underline;
    }

    .sidebar-badge {
      font-size:11px;
      display:inline-block;
      padding:3px 7px;
      border-radius:999px;
      background:#f0f5ff;
      color:#283572;
      margin-bottom:6px;
    }

    /* Small CTA band before footer */
    .tips-cta-band {
      margin:30px 0 6px;
      padding:14px 16px;
      border-radius:12px;
      border:1px dashed #c5cfe8;
      background:#ffffff;
      text-align:center;
      font-size:13px;
    }
    .tips-cta-band a {
      display:inline-flex;
      align-items:center;
      padding:7px 14px;
      border-radius:999px;
      border:1px solid #1f3b75;
      color:#ffffff;
      background:#1f3b75;
      text-decoration:none;
      font-size:12px;
      margin-top:6px;
    }
    .tips-cta-band a i {
      margin-right:6px;
    }

    @media(max-width:640px){
      .tips-cta-band {
        padding:12px 12px;
      }
    }/* === Premium Vastu Section === */

.dcc-vastu-premium-box {
  background: #0b1f47; /* deep navy */
  color: #ffffff;
  padding: 32px 20px;
  border-radius: 16px;
  text-align: center;
  max-width: 820px;
  margin: 40px auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.dcc-vastu-premium-box h2 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #ffffff;
}

.dcc-vastu-premium-box p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.95;
}

/* White Button */
.dcc-vastu-btn-white {
  display: inline-block;
  background: #ffffff;
  color: #0b1f47;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(255,255,255,0.15), 0 4px 12px rgba(0,0,0,0.10);
  transition: 0.25s ease-in-out;
}

.dcc-vastu-btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}
.dcc-vastu-blogs-section {
  background: #0b1f47;   /* deep navy */
  padding: 45px 20px 50px;
  border-radius: 18px;
  max-width: 980px;
  margin: 40px auto;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.dcc-vastu-blogs-section h2 {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.dcc-vastu-blogs-intro {
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 28px;
  opacity: 0.95;
}

/* Grid */
.dcc-vastu-blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

/* Individual Card */
.dcc-vastu-blog-card {
  background: #102859;
  padding: 20px 18px;
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(0,0,0,0.18);
  transition: 0.25s ease;
}

.dcc-vastu-blog-card:hover {
  background: #14306c;
  transform: translateY(-3px);
}

.dcc-vastu-blog-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.dcc-vastu-blog-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 14px;
}

/* White button */
.dcc-vastu-white-btn {
  display: inline-block;
  background: #ffffff;
  color: #0b1f47;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.25s ease;
}

.dcc-vastu-white-btn:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}
.dcc-vastu-disclaimer {
  background: #f2f2f2;
  color: #3b3b3b;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 850px;
  margin: 35px auto;
  border-left: 4px solid #cccccc;
}
.dcc-vastu-disclaimer strong {
  color: #222;
}/* === GLOBAL TOP ACTION BAR === */
.top-actions-wrap {
  width: 100%;
  margin-top: 10px;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 0 16px;
}

/* Buttons */
.btn-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 15px;
  border: 1px solid #d0d7e8;
  text-decoration: none;
  white-space: nowrap;
  background: #ffffff;
  color: #1a2b4f;
  font-weight: 500;
}

.btn-top--home::before {
  content: "←";
  margin-right: 6px;
}

.btn-top--estimate {
  background: #e6f8e6;
  border-color: #9cd49c;
  color: #0b4f0b;
  font-weight: 600;
}

/* Google Translate */
#google_translate_element {
  background: #f6f8ff;
  padding: 8px 14px;
  border-radius: 999px;
  transform: scale(0.9);
}

/* MOBILE FIX */
@media (max-width: 640px) {
  .top-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  #google_translate_element {
    transform: scale(0.85);
  }
}
/* ===== HERO (Option A) ===== */
    .tips-hero {
      margin-top: 18px;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      background: url('images/tips/commercial-design-hero.jpg') center/cover no-repeat;
      min-height: 360px;
    }
    .tips-hero::after {
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(120deg,rgba(0,0,0,0.68),rgba(0,0,0,0.15));
    }
    .tips-hero-inner {
      position:relative;
      z-index:1;
      color:#ffffff;
      padding:26px 22px 26px;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      height:100%;
    }
    .tips-crumbs {
      font-size:12px;
      margin-bottom:6px;
      opacity:0.9;
    }
    .tips-crumbs a {
      color:#f4f7ff;
      text-decoration:none;
    }
    .tips-crumbs span {
      margin:0 4px;
      opacity:0.7;
    }
    .tips-hero-inner h1 {
      font-size:28px;
      line-height:1.35;
      margin:0 0 6px;
      letter-spacing:0.02em;
    }
    .tips-hero-inner p {
      max-width:640px;
      margin:0;
      font-size:14px;
      opacity:0.96;
    }

    @media(max-width:640px){
      .tips-hero-inner {
        padding:18px 16px 20px;
      }
      .tips-hero-inner h1 {
        font-size:22px;
      }
    }

    /* ===== PAGE BODY LAYOUT (reuse blog layout grid) ===== */
    .tips-intro {
      margin-top:26px;
    }
    .tips-intro p {
      font-size:14px;
      color:#424242;
    }
    .tips-intro .lead {
      font-size:16px;
      color:#2a2a2a;
      margin-bottom:12px;
    }

    .tips-section {
      margin-top:26px;
    }
    .tips-eyebrow {
      font-size:11px;
      text-transform:uppercase;
      letter-spacing:0.16em;
      color:#5567a8;
      margin-bottom:4px;
    }
    .tips-section h2 {
      font-size:22px;
      margin:0 0 8px;
      color:#102051;
    }
    .tips-section .muted {
      font-size:13px;
      color:#6a6a6a;
      margin-bottom:16px;
    }

    .tips-grid {
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:18px;
    }
    @media(max-width:768px){
      .tips-grid {
        grid-template-columns:1fr;
      }
    }

    .tip-card {
      background:#ffffff;
      border-radius:14px;
      border:1px solid #e3e8f5;
      padding:18px 16px 16px;
      box-shadow:0 6px 18px rgba(0,0,0,0.04);
    }
    .tip-card h3 {
      font-size:16px;
      margin:0 0 6px;
      color:#222;
    }
    .tip-card p {
      font-size:13px;
      margin:0 0 8px;
      color:#444;
    }

    /* ===== CITY BLOCKS ===== */
    .city-wrap {
      margin-top:6px;
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:14px;
    }
    @media(max-width:900px){
      .city-wrap {
        grid-template-columns:1fr;
      }
    }
    .city-block {
      border-left:4px solid #0b62d6;
      background:#f7fbff;
      border-radius:10px;
      padding:14px 14px 10px;
    }
    .city-block h3 {
      font-size:15px;
      margin:0 0 4px;
      color:#12336c;
    }
    .city-block p {
      margin:0;
      font-size:13px;
      color:#414141;
    }

    /* ===== FAQ ===== */
    .tips-faq {
      margin-top:24px;
    }
    .tips-faq details {
      background:#ffffff;
      border-radius:10px;
      border:1px solid #e2e7f3;
      padding:10px 14px 10px;
      margin-bottom:8px;
    }
    .tips-faq summary {
      font-size:14px;
      font-weight:600;
      cursor:pointer;
      color:#222b5e;
    }
    .tips-faq p {
      font-size:13px;
      margin:8px 0 0;
      color:#444;
    }

    /* ===== CORPORATE SIDEBAR (using blog-sidebar styles) ===== */
    .sidebar-box-cta h3 {
      font-size:15px;
      margin-bottom:6px;
    }
    .sidebar-box-cta p {
      font-size:13px;
      margin-bottom:8px;
    }
    .sidebar-pill {
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:8px 12px;
      border-radius:999px;
      font-size:12px;
      border:1px solid #c3d0f2;
      background:#f5f7ff;
      color:#1a2b4f;
      text-decoration:none;
      margin-top:4px;
      margin-right:6px;
    }
    .sidebar-pill i {
      margin-right:6px;
    }
    .sidebar-pill:hover {
      background:#e3e9ff;
    }

    .sidebar-list {
      list-style:none;
      padding:0;
      margin:0;
    }
    .sidebar-list li {
      font-size:12px;
      margin-bottom:4px;
    }
    .sidebar-list a {
      color:#1f3b75;
      text-decoration:none;
    }
    .sidebar-list a:hover {
      text-decoration:underline;
    }

    .sidebar-badge {
      font-size:11px;
      display:inline-block;
      padding:3px 7px;
      border-radius:999px;
      background:#f0f5ff;
      color:#283572;
      margin-bottom:6px;
    }

    /* Small CTA band before footer */
    .tips-cta-band {
      margin:30px 0 6px;
      padding:14px 16px;
      border-radius:12px;
      border:1px dashed #c5cfe8;
      background:#ffffff;
      text-align:center;
      font-size:13px;
    }
    .tips-cta-band a {
      display:inline-flex;
      align-items:center;
      padding:7px 14px;
      border-radius:999px;
      border:1px solid #1f3b75;
      color:#ffffff;
      background:#1f3b75;
      text-decoration:none;
      font-size:12px;
      margin-top:6px;
    }
    .tips-cta-band a i {
      margin-right:6px;
    }

    @media(max-width:640px){
      .tips-cta-band {
        padding:12px 12px;
      }
    }


