/* SERVICES TABLE CSS */
.dc-services-table {
  font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
  color:#000;
  padding:28px 12px;
  text-align:center;
  box-sizing: border-box;
}
.dc-services-table .dc-inner { max-width:1200px; margin:0 auto; }
.dc-services-table h2 {
  font-size:2rem; font-weight:800; margin-bottom:18px;
  padding:10px 18px; border:3px solid #000; border-radius:10px;
  display:inline-block; text-transform:uppercase; letter-spacing:.4px; background:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

/* table container */
.table-wrap { margin-top:18px; overflow:auto; border-radius:12px; -webkit-overflow-scrolling: touch; }

/* table base */
.services-table {
  width:100%; border-collapse: collapse; border:3px solid #000; border-radius:12px; overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,0.06); background:#fff; transition:box-shadow .18s ease, transform .18s ease;
  table-layout: auto;
}
.services-table:hover { box-shadow:0 18px 40px rgba(0,0,0,0.09); }

/* header */
.services-table thead th {
  background:#000; color:#fff; font-weight:800; padding:14px 12px; text-align:left; font-size:1.25rem; white-space:nowrap;
}

/* cells */
.services-table th, .services-table td {
  border:1px solid #000; padding:18px 14px; vertical-align:top; word-break:break-word; hyphens:auto; box-sizing:border-box;
}

/* bottom double-line for desktop table */
.services-table tbody tr:last-child td { border-bottom:6px double #000 !important; }

/* hover effect on pointer devices */
@media (hover: hover) and (pointer: fine) {
  .services-table tbody tr.svc-row { transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
  .services-table tbody tr.svc-row:hover { transform:translateY(-6px); background:linear-gradient(180deg, rgba(250,250,250,0.6), rgba(255,255,255,0.9)); box-shadow:0 18px 36px rgba(0,0,0,0.06); }
}

/* columns */
.services-table .svc-title { width:24%; font-weight:900; font-size:1.15rem; text-align:left; padding-top:22px; }
.services-table .svc-detail { width:46%; text-align:left; color:#222; line-height:1.5; }
.services-table .svc-sub { width:30%; text-align:left; }

/* subservices */
.services-table .svc-sub ul { list-style:none; padding:0; margin:6px 0 0; }
.services-table .svc-sub li { margin:8px 0; font-size:1.05rem; color:#111; padding:6px 8px; border-radius:6px; transition:background .15s ease, transform .12s ease; }
.services-table .svc-sub li:hover { background:#000; color:#fff; transform:translateX(6px); }

/* CTA button */
.table-cta { margin-top:22px; text-align:center; }
.order-btn {
  display:inline-block; padding:14px 42px; font-size:40px; font-weight:900; color:#000; background:#fff; border:3px solid #000; border-radius:12px;
  text-decoration:none; transition:background .18s, color .18s, transform .12s, box-shadow .18s; box-shadow:0 8px 20px rgba(0,0,0,0.06);
}
.order-btn:hover { background:#000; color:#fff !important; border-color:#000; }

/* ------------------ MOBILE: hide table, show stacked alternative ------------------ */
.mobile-stacked { display:none; } /* hidden on desktop */

@media (max-width:880px) {
  /* hide the desktop table on mobile */
  .services-table { display:none; }

  /* show mobile stacked view */
  .mobile-stacked { display:block; margin-top:8px; }

  .dc-services-table { padding:18px 10px; }
  .dc-services-table h2 { font-size:1.25rem; padding:8px 12px; letter-spacing:.2px; }

  /* each item card */
  .mobile-card {
    background:#fff; border-radius:10px; padding:14px; margin-bottom:14px;
    box-shadow:0 8px 20px rgba(0,0,0,0.04); border:1px solid #e6e6e6;
  }
  .mobile-card .mob-service {
    font-weight:900; font-size:1.05rem; margin-bottom:8px;
  }
  .mobile-card .mob-details {
    font-size:0.97rem; color:#222; line-height:1.45; margin-bottom:10px;
  }
  .mobile-card .mob-subservices {
    font-size:0.98rem; margin:0 0 6px 0; padding-left:14px;
  }
  .mobile-card .mob-subservices li {
    margin:6px 0; list-style:none; position:relative; padding-left:28px;
  }
  /* roman numerals using CSS counters */
  .mobile-card .mob-subservices { counter-reset: sub; }
  .mobile-card .mob-subservices li::before {
    counter-increment: sub;
    content: counter(sub, lower-roman) ')';
    position:absolute; left:0; top:0; font-weight:800;
    width:24px; text-align:left;
  }

  /* keep CTA button reachable */
  .order-btn { width:92%; padding:12px 18px; font-size:20px; display:block; margin:10px auto 0; }
}

/* small phones */
@media (max-width:420px) {
  .mobile-card .mob-service { font-size:1rem; }
  .mobile-card .mob-details { font-size:0.95rem; }
  .order-btn { font-size:18px; padding:10px 14px; }
}

/* accessibility */

/* PRICING CSS */
.dc { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; color:#000; padding:18px; text-align:center; }
.dc h2{ font-size:28px; font-weight:800; padding:10px 18px; border:3px solid #000; border-radius:10px; display:inline-block; text-transform:uppercase; margin-bottom:14px; word-spacing:12px; letter-spacing:0.6px; }

/* selectors */
.selects { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin:12px 0 18px; }
.selects label{ font-weight:700; margin-right:6px; display:block; font-size:18px; }
.selects select{ padding:10px 14px; border:3px solid #000; border-radius:8px; font-weight:700; min-width:220px; font-size:16px; }

/* table wrapper */
/* Option B: desktop - no forced overflow; mobile - enable overflow auto and auto-scroll behavior */
.table-wrap{
  max-width:1150px;
  margin:12px auto;
  border:3px solid #000;
  border-radius:10px;
  background:#fff;
  position:relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: visible; /* desktop default */
}

/* table base style */
.table { width:100%; border-collapse:separate; border-spacing:0; display:table; background:#fff; table-layout:auto; }
.table th, .table td { border:2px solid #000; padding:10px 12px; vertical-align:top; text-align:center; background:transparent; word-break:break-word; }
.table thead th{ background:#000; color:#fff; font-weight:800; }
.col-service{ width:24%; text-align:left; font-weight:800; }

/* feature heading row */
.feature-row td{ background:#f4f4f4; text-align:center; padding:12px; border-bottom:2px solid #000; }
.feature-row td.svc { text-align:center; padding-left:0; font-weight:900; vertical-align:middle; }

/* yearly double border */
.yearly-row td { border-bottom:6px double #000 !important; }

/* price/delivery */
.price { font-weight:900; display:block; margin-bottom:6px; }
.delivery { font-size:0.9rem; color:#666; margin-top:6px; }
.na { font-style:italic; color:#777; }

/* notes */
.pricing-notes { max-width:1150px; margin:16px auto; padding:12px 16px; border-radius:8px; background:#f9f9f9; border:1px dashed #000; text-align:left; display:block; }
.pricing-notes h3{ margin:0 0 8px; font-size:1.05rem; font-weight:800; }

/* small screens: enable horizontal scrolling and hint; keep table min-width so columns don't collapse */
@media(max-width:900px){
  .table-wrap{ overflow-x:auto; }
  .table { min-width:980px; } /* allows mobile horizontal scrolling while preserving column structure */
  .selects select{ min-width:160px; font-size:16px; }
  .feature-row td.svc{ font-size:16px; }
  .pricing-notes { font-size:14px; }

  
}



/* small visual touch improvements */
.table tbody tr:nth-child(odd) td { background: rgba(0,0,0,0.01); }

/* WHY PARTNER CSS */
.dc-feature-box {
  padding: 36px 18px;
  display: flex;
  justify-content: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Inner wrapper */
.dc-inner {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

/* Section heading */
.dc-feature-box h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 22px;
  padding: 12px 20px;
  border: 3px solid #000;
  border-radius: 10px;
  display: inline-block;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Outer box */
.dc-box {
  margin: 0 auto;
  padding: 20px;
  border-radius: 16px;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
  display: grid;
  gap: 16px;
}

/* Hover effect for entire box */
.dc-box:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(0,0,0,0.11);
}

/* Each feature line */
.feature-line {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  transition: transform 260ms cubic-bezier(.2,.9,.3,1), background 220ms ease, box-shadow 220ms ease;
  will-change: transform;
  cursor: default;
  outline: none;
}

/* Divider between feature lines */
.feature-line + .feature-line {
  border-top: 2px dashed rgba(0,0,0,0.08);
}

/* Hover and focus effects */
.feature-line:hover,
.feature-line:focus {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(250,250,250,0.95), #fff);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Headings inside feature lines */
.feature-line h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
  text-align: center;
  transition: transform 260ms cubic-bezier(.2,.9,.3,1), font-size 260ms ease;
}

/* Enlarge heading on hover */
.feature-line:hover h3,
.feature-line:focus h3 {
  transform: scale(1.07);
  font-size: 1.2rem;
}

/* Paragraph text */
.feature-line p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #222;
  text-align: center;
  transition: color 220ms ease;
}

/* Lighten paragraph text on hover */
.feature-line:hover p,
.feature-line:focus p {
  color: #111;
}

/* Focus ring */
.feature-line:focus {
  box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}

/* Responsive adjustments */
@media (max-width: 880px) {
  .dc-feature-box h2 {
    font-size: 1.6rem;
    padding: 10px 16px;
  }
  .dc-box {
    padding: 16px;
    gap: 12px;
  }
  .feature-line h3 {
    font-size: 1.05rem;
  }
  .feature-line:hover h3 {
    font-size: 1.12rem;
  }
  .feature-line p {
    font-size: 0.95rem;
  }
}

.order-btn:focus { outline:3px solid #ffd966; outline-offset:3px; }


/* ==========================
   WE ARE HIRING SECTION
========================== */

.dc-hiring-section {
    padding: 40px 20px 60px;
    display: flex;
    justify-content: center;
}

.dc-hiring-box {
    max-width: 900px;
    width: 100%;

    background: #fff;
    border: 3px solid #000;
    border-radius: 18px;

    padding: 35px 30px;
    text-align: center;

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.dc-hiring-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.dc-hiring-box h2 {
    display: inline-block;
    padding: 12px 24px;

    border: 3px solid #000;
    border-radius: 10px;

    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;

    background: #fff;

    margin-bottom: 20px;
}

.dc-hiring-box p {
    max-width: 700px;
    margin: 0 auto 30px;

    font-size: 1.1rem;
    line-height: 1.8;
    color: #222;
}

.join-btn {
    display: inline-block;

    padding: 16px 50px;

    border: 3px solid #000;
    border-radius: 12px;

    background: #000;
    color: #fff;

    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 900;

    transition: all 0.25s ease;
}

.join-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.join-btn:focus {
    outline: 3px solid #ffd966;
    outline-offset: 3px;
}

/* Mobile */

@media (max-width: 768px) {

    .dc-hiring-box {
        padding: 25px 20px;
    }

    .dc-hiring-box h2 {
        font-size: 1.4rem;
        padding: 10px 18px;
    }

    .dc-hiring-box p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .join-btn {
        width: 90%;
        max-width: 320px;
        padding: 14px 20px;
        font-size: 1.1rem;
    }
}