/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how to render a web page. You may delete these comments and get started with your customizations.

By default, your stylesheet will be loaded after the theme stylesheets, which means that your rules can take precedence and override the theme CSS rules. Just write here what you want to change, you don't need to copy all your theme's stylesheet content.
*/


/* checkout buttons: */
.checkoutbtn{ /*color:;*/ /*background-color:;*/ /*border-color:;*/ }
.checkoutbtn:hover{ /*color:;*/ /*background-color:;*/ /*border-color:;*/ }


/* fixed banners: */
#fixedpanelleft{  }
#fixedpanelright{  }
#fixedpanelbottom{  }

/* ============================================================
   Deep Cut Supplies — custom.css
   Brand tokens, overrides, utilities
   ============================================================ */

/* -- Brand Tokens -------------------------------------------- */
body {
  --clr-primary:    #008dd6;
  --clr-accent:     #ff0000;
  --clr-dark:       #0a1628;
  --clr-mid:        #1a2d4a;
  --clr-light:      #f4f8fc;
  --clr-white:      #ffffff;
  --clr-text:       #2c3e50;
  --clr-muted:      #6b7d93;
  --clr-border:     #dce8f3;

  --font-display:   'Barlow Condensed', sans-serif;
  --font-body:      'DM Sans', sans-serif;

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;

  --shadow-card:    0 4px 24px rgba(0,141,214,.10);
  --shadow-strong:  0 8px 40px rgba(0,141,214,.18);

  --transition:     .28s cubic-bezier(.4,0,.2,1);
}

/* -- Google Fonts -------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* -- Reset & Base -------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-accent); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-dark);
}
.btn-OrderNow {
   background: var(--clr-primary) !important; 
  color: var(--clr-white) !important; 
  border: 2px solid var(--clr-primary) !important;
}


/* -- Layout helpers (no Bootstrap .container) ---------------- */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

/* -- Utility ------------------------------------------------- */
.text-primary  { color: var(--clr-primary)  !important; }
.text-accent   { color: var(--clr-accent)   !important; }
.text-white    { color: var(--clr-white)    !important; }
.text-muted    { color: var(--clr-muted)    !important; }
.text-center   { text-align: center; }
.mt-0  { margin-top: 0  !important; }
.mb-0  { margin-bottom: 0 !important; }
.w-100 { width: 100%; }

.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(0,141,214,.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* -- Buttons ------------------------------------------------- */
.btn-primary-dc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .93rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--clr-primary);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary-dc:hover {
  background: #006faa;
  border-color: #006faa;
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,141,214,.30);
}

.btn-accent-dc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .93rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--clr-accent);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-accent-dc:hover {
  background: #cc0000;
  border-color: #cc0000;
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,0,0,.30);
}

.btn-outline-dc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .93rem;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-dc:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--clr-white);
  color: var(--clr-white);
}

.btn-sm {
  padding: 9px 20px;
  font-size: .84rem;
}

/* -- Topbar -------------------------------------------------- */
.topbar {
  background: var(--clr-dark);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 7px 0;
  letter-spacing: .03em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: var(--clr-primary); }
.topbar i { color: var(--clr-primary); margin-right: 5px; }

/* -- Header / Nav -------------------------------------------- */
.site-header {
  background: var(--clr-white);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}
.site-logo img { height: 54px; width: auto; }
.site-logo span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-dark);
  letter-spacing: .02em;
}
.site-logo span em { color: var(--clr-primary); font-style: normal; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .9rem;
  color: var(--clr-text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.site-nav a:hover, .site-nav a.active {
  color: var(--clr-primary);
  background: rgba(0,141,214,.07);
}

.nav-cta { margin-left: 8px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* -- Section spacing ----------------------------------------- */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--clr-dark); color: var(--clr-white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--clr-white); }
.section-light { background: var(--clr-light); }
.section-primary { background: var(--clr-primary); }

.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 580px;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin-inline: auto; }

/* Decorative rule under heading */
.heading-rule {
  display: block;
  width: 52px;
  height: 4px;
  background: var(--clr-accent);
  border-radius: 2px;
  margin: 16px 0 20px;
}
.centered .heading-rule { margin-inline: auto; }

/* -- Hero ---------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  transition: opacity 1s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,.92) 45%, rgba(0,141,214,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeUp .8s ease both;
}
.hero-content .label-tag {
  color: var(--clr-primary);
  background: rgba(0,141,214,.2);
}
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--clr-primary);
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 34px;
  max-width: 540px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slides indicator dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.active { background: var(--clr-primary); transform: scale(1.3); }

/* -- Stats Bar ----------------------------------------------- */
.stats-bar {
  background: var(--clr-primary);
  padding: 22px 0;
}
.stats-bar .wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item { text-align: center; color: var(--clr-white); }
.stat-item .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.stat-item .lbl {
  font-size: .82rem;
  font-weight: 500;
  opacity: .85;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* -- About Snapshot ------------------------------------------- */
.about-snap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-snap-img { position: relative; }
.about-snap-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-snap-img .badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(255,0,0,.3);
  text-align: center;
  line-height: 1.2;
}

/* -- Cards ---------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.dc-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--clr-border);
}
.dc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.dc-card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.dc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dc-card:hover .dc-card-img img { transform: scale(1.05); }
.dc-card-body { padding: 22px; }
.dc-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--clr-dark);
}
.dc-card-body p {
  font-size: .9rem;
  color: var(--clr-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* Icon card */
.icon-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 30px 24px;
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
}
.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.icon-card .icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(0,141,214,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: var(--clr-primary);
  transition: background var(--transition);
}
.icon-card:hover .icon-wrap { background: var(--clr-primary); color: var(--clr-white); }
.icon-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.icon-card p { font-size: .88rem; color: var(--clr-muted); line-height: 1.6; }

/* -- Testimonials --------------------------------------------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--clr-primary);
  opacity: .15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-card .stars {
  color: #f5a623;
  font-size: .9rem;
  margin-bottom: 14px;
  position: relative;
}
.testimonial-card blockquote {
  font-size: .93rem;
  line-height: 1.7;
  color: var(--clr-text);
  margin-bottom: 18px;
  position: relative;
  font-style: italic;
}
.testimonial-card .author {
  font-weight: 600;
  font-size: .88rem;
  color: var(--clr-primary);
}

/* -- CTA Band ------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--clr-dark) 0%, var(--clr-mid) 60%, rgba(0,141,214,.25) 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--clr-white);
}
.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--clr-white);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin: 0 auto 32px;
}
.cta-band .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* -- Gallery -------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* -- Industries List ------------------------------------------- */
.industries-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid var(--clr-border);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--clr-text);
  background: var(--clr-white);
  transition: all var(--transition);
}
.industry-pill i { color: var(--clr-primary); }
.industry-pill:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}
.industry-pill:hover i { color: var(--clr-white); }

/* -- Value proposition checkmarks ----------------------------- */
.value-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
}
.value-list li i {
  color: var(--clr-primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* -- Contact strip -------------------------------------------- */
.contact-strip {
  background: var(--clr-primary);
  padding: 28px 0;
}
.contact-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.contact-strip .info { color: var(--clr-white); }
.contact-strip .info strong { font-size: 1.5rem; font-family: var(--font-display); display: block; }
.contact-strip .info span { font-size: .88rem; opacity: .85; }

/* -- Contact form ----------------------------------------------- */
.contact-form-wrap {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: 44px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: .88rem;
  color: var(--clr-text);
  margin-bottom: 7px;
}
.form-control-dc {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--clr-text);
  background: var(--clr-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control-dc:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(0,141,214,.12);
  background: var(--clr-white);
}
textarea.form-control-dc { min-height: 130px; resize: vertical; }

/* -- Page Hero (inner pages) -------------------------------- */
.page-hero {
  background: linear-gradient(120deg, var(--clr-dark) 0%, var(--clr-mid) 100%);
  padding: 70px 0 56px;
  color: var(--clr-white);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--clr-white);
  margin-bottom: 10px;
}
.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
}
.breadcrumb-dc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.breadcrumb-dc a { color: var(--clr-primary); }
.breadcrumb-dc i { font-size: .7rem; }

/* -- Two-column grid ------------------------------------------ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col.reverse { }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* -- Map embed ----------------------------------------------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* -- Footer --------------------------------------------------- */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--clr-white);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col p { font-size: .88rem; line-height: 1.75; }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--clr-white); margin-bottom: 14px; display: block; }
.footer-logo em { color: var(--clr-primary); font-style: normal; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
}
.footer-links a i { color: var(--clr-primary); font-size: .75rem; }
.footer-links a:hover { color: var(--clr-primary); }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
}
.footer-contact-list i { color: var(--clr-primary); font-size: .95rem; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* -- Animations ----------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in-up {
  animation: fadeUp .7s ease both;
}

/* -- Responsive ----------------------------------------------- */
@media (max-width: 992px) {
  .about-snap, .two-col, .three-col { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-snap-img .badge-float { right: 0; bottom: -10px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--clr-white); flex-direction: column; align-items: flex-start; padding: 16px 24px; box-shadow: 0 8px 24px rgba(0,0,0,.1); border-top: 1px solid var(--clr-border); }
  .site-nav.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { min-height: 70vh; }
  .hero-content h1 { font-size: 2.4rem; }
  .contact-strip .wrap { flex-direction: column; text-align: center; }
  .stats-bar .wrap { gap: 24px; }
  .contact-form-wrap { padding: 28px 20px; }
}

