:root {
  --brand-red: #E31E24;
  --brand-black: #2B2A29;
  --brand-grey: #EBECEC;
  --ink-soft: #5f6368;
  --footer-peach: #f3d8cd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Proxima Nova', 'ProximaNova', 'Proxima Nova Rg', 'Helvetica Neue', Arial, sans-serif;
  color: var(--brand-black);
  background: #ffffff;
}

.offer-bar {
  background: var(--brand-red);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.4rem 0;
  overflow: hidden;
  width: 100%;
}

.offer-bar-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  min-height: 1.15rem;
}

.offer-bar-text {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 0;
  will-change: transform;
}

.header-shell {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.logo-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img-link {
  display: inline-flex !important;
  align-items: center;
  min-width: 120px;
  margin-left: 3%;
}

.logo-image {
  height: 54px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.search-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 200px;
  max-width: 40%;
}

.header-top {
  flex-wrap: nowrap;
}

.header-top-primary {
  display: contents;
}

.search-input {
  border: none;
  border-radius: 50px;
  background: #f2f3f4;
  min-height: 40px;
  padding-inline: 1rem;
  font-size: 0.9rem;
  width: 100%;
}

.search-input:focus {
  box-shadow: 0 0 0 2px rgba(227, 30, 36, 0.2);
  background: #fff;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.social-icons a i {
  font-size: 1.05rem;
  line-height: 1;
}

.social-icons a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.social-icons.svg-icons a {
  width: 34px;
  height: 34px;
  background: transparent !important;
}

.social-icons.svg-icons a img {
  width: 100%;
  height: 100%;
}

.social-icons a:nth-child(1) {
  background: #0866ff;
}

.social-icons a:nth-child(2) {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons a:nth-child(3) {
  background: #1fbe5b;
}

.talk-btn {
  background: var(--brand-black);
  color: #fff;
  font-weight: 700;
}

.talk-btn:hover {
  background: #000;
  color: #fff;
}

.menu-row .nav-link {
  color: var(--brand-black);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
}

.menu-row .nav-link:hover {
  color: var(--brand-red);
}

.menu-row .nav-link.active {
  color: var(--brand-red);
  background: transparent;
}

.menu-row .nav-link.show:not(.active) {
  color: var(--brand-black);
}

/* Red vertical line — fixed on the first menu item (All Products) only */
.header-menu-list .nav-item:first-child .nav-link {
  position: relative;
  padding-right: 0.85rem;
}

.header-menu-list .nav-item:first-child .nav-link::after {
  content: '';
  position: absolute;
  right: 0.22rem;
  top: 50%;
  width: 2px;
  height: 18px;
  transform: translateY(-50%);
  background: var(--brand-red);
  opacity: 0.9;
}

.header-menu-list {
  width: 100%;
}

.all-products-dropdown {
  position: relative;
}

.all-products-menu {
  --bs-dropdown-min-width: 260px;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 0.8rem;
  margin-top: 0.4rem !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.all-products-menu li {
  list-style: none;
}

.all-products-menu .dropdown-item {
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand-black);
  padding: 0.4rem 0.58rem;
  white-space: nowrap;
}

.all-products-menu .dropdown-item:hover,
.all-products-menu .dropdown-item:focus,
.all-products-menu .dropdown-item:focus-visible,
.all-products-menu .dropdown-item:active {
  color: var(--brand-red);
  background-color: rgba(227, 30, 36, 0.08) !important;
}

.all-products-menu .dropdown-item.active,
.all-products-menu .dropdown-item.active:hover,
.all-products-menu .dropdown-item.active:focus,
.all-products-menu .dropdown-item.active:active {
  color: #f80000 !important;
  background-color: rgba(227, 30, 36, 0.08) !important;
}

@media (min-width: 992px) {
  .all-products-dropdown .all-products-menu {
    display: none;
  }

  .all-products-dropdown:hover > .all-products-menu,
  .all-products-dropdown:focus-within > .all-products-menu,
  .all-products-dropdown .all-products-menu.show {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 0.35rem;
    width: min(1100px, calc(100vw - 5rem));
  }

  .all-products-dropdown:hover > .all-products-trigger {
    color: var(--brand-red);
  }
}

.mobile-menu-toggle {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 0.32rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-black);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.mobile-menu-toggle i {
  font-size: 1.1rem;
  line-height: 1;
}

@media (min-width: 992px) {
  .header-menu-collapse {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
  }
}

@media (max-width: 991.98px) {
  .mobile-menu-label {
    display: none;
  }

  .mobile-menu-toggle {
    padding: 0.4rem 0.55rem;
  }

  .header-menu-collapse.collapse:not(.show):not(.collapsing) {
    display: none !important;
  }
}

.hero-banner {
  min-height: 430px;
  border-radius: 20px;
  background: radial-gradient(circle at 20% 20%, #17386a 0%, #0a1f49 45%, #061132 100%);
}

.hero-slide-one {
  background-image: linear-gradient(rgba(6, 20, 51, 0.25), rgba(6, 20, 51, 0.25)), url('../images/slider/slider_1.jpg');
  background-size: cover;
  background-position: center;
}

.hero-slide-two {
  background-image: linear-gradient(rgba(6, 20, 51, 0.25), rgba(6, 20, 51, 0.25)), url('../images/slider/slider_1.jpg');
  background-size: cover;
  background-position: center;
}

.hero-slide-three {
  background-image: linear-gradient(rgba(6, 20, 51, 0.25), rgba(6, 20, 51, 0.25)), url('../images/slider/slider_1.jpg');
  background-size: cover;
  background-position: center;
}

.hero-carousel .carousel-item {
  overflow: hidden;
  border-radius: 20px;
}

.hero-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-inline: 4px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: 0.4;
}

.hero-caption {
  font-size: clamp(1.25rem, 2vw, 2.2rem);
  max-width: 450px;
  line-height: 1.15;
  color: #dbe9ff;
  font-weight: 400;
}

.hero-title {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-weight: 600;
  color: #93d84e;
  font-size: clamp(2.5rem, 5vw, 5rem);
  max-width: 500px;
  line-height: 0.95;
}

.billboard-card {
  width: min(470px, 100%);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 4px solid #efefef;
}

.billboard-top,
.billboard-mid,
.billboard-bottom {
  padding: 0.55rem 1rem;
  font-weight: 800;
  text-align: center;
}

.billboard-top {
  color: #b30f1a;
  background: #ffd665;
}

.billboard-mid {
  color: #fff;
  background: #0b3f8a;
}

.billboard-bottom {
  color: #fff;
  background: #b30f1a;
  font-size: 0.85rem;
}

.trusted-strip {
  background: linear-gradient(90deg, #e7e7e7 0%, #f2f2f2 18%, #f0f0f0 50%, #f2f2f2 82%, #e7e7e7 100%);
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}

.trusted-strip-inner {
  min-height: 66px;
}

.trusted-label {
  flex: 0 0 auto;
  color: #333;
  line-height: 1.05;
  min-width: 175px;
}

.trusted-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.trusted-subtitle {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.partner-logos {
  overflow: hidden;
}

.trusted-logo {
  height: 47px;
  width: auto;
  opacity: 0.22;
  object-fit: contain;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.trusted-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.02);
}

.product-card {
  background: var(--brand-grey);
  border-radius: 2px;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.showcase-image-box {
  background: #e8e8e8;
}

.showcase-slider {
  --showcase-gap: 1rem;
}

.showcase-slider-track {
  display: flex;
  gap: var(--showcase-gap);
  will-change: transform;
}

.showcase-slide-item {
  flex: 0 0 calc((100% - (var(--showcase-gap) * 1)) / 2);
}

@media (min-width: 768px) {
  .showcase-slide-item {
    flex: 0 0 calc((100% - (var(--showcase-gap) * 3)) / 4);
  }
}

.sample-card {
  background-size: cover;
  background-position: center;
}

.card-one {
  background-image: linear-gradient(155deg, #222 20%, #444 20%, #444 22%, #f0d 22%, #f0d 28%, #111 28%, #111 100%);
}

.card-two {
  background-image: radial-gradient(circle at center, #f4e0a7 0, #f4e0a7 30%, #c5a857 31%, #dedede 32%, #dedede 100%);
}

.card-three {
  background-image: linear-gradient(150deg, #f4f6f8 0, #f4f6f8 45%, #e73131 45%, #2457af 68%, #f4f6f8 69%);
}

.card-four {
  background-image: linear-gradient(160deg, #ffffff 0, #ffffff 65%, #edf5ff 65%, #edf5ff 100%);
  border: 1px solid #d8dde2;
}

.brand-showcase {
  background: #fff;
}

.brand-showcase-image-col {
  margin-left: 8%;
}

.brand-showcase-image {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.showcase-art {
  min-height: 370px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7fbfd 0%, #f0f4f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Proxima Nova', 'ProximaNova', 'Proxima Nova Rg', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.3rem);
  color: #1c1c1c;
}

.floating-badge {
  position: absolute;
  font-family: 'Proxima Nova', 'ProximaNova', 'Proxima Nova Rg', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.83rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.badge-left {
  left: 6%;
  top: 52%;
}

.badge-right {
  right: 6%;
  bottom: 14%;
}

.badge-top {
  right: 16%;
  top: 10%;
}

.spacer-section {
  height: 260px;
}

.feature-strip {
  color: var(--brand-black);
  background: #f5f5f5;
  font-weight: 500;
  border-top-color: #e9e9e9 !important;
  border-bottom-color: #ececec !important;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-col {
  width: 50%;
  padding: 0.3rem 0.7rem;
}

.feature-col:not(:last-child) {
  border-right: 1px solid #dddddd;
}

.feature-item {
  gap: 0.6rem;
  min-height: 56px;
}

.feature-item i {
  font-size: 1.4rem;
  color: #212121;
  line-height: 1;
}

.feature-item span {
  display: inline-block;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

@media (min-width: 992px) {
  .feature-strip .container-fluid {
    max-width: 920px;
    margin-inline: auto;
  }

  .feature-row {
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .feature-row .feature-col {
    width: 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.site-footer {
  background: #f1cfc3;
  border-top: 1px solid #ebc0b2;
}

.site-footer [class*='col-'] {
  min-width: 0;
}

.footer-inner {
  position: relative;
}

.footer-grid {
  row-gap: 1.5rem;
}

.footer-brand-col {
  position: relative;
  isolation: isolate;
}

.footer-brand-col::before {
  content: '';
  position: absolute;
  left: 2.6rem;
  top: 0.1rem;
  width: 210px;
  height: 216px;
  z-index: 0;
  background-image: url('/deisgnerdask2/assets/images/map.svg'), url('../images/map.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.30;
  pointer-events: none;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  z-index: 1;
}

.footer-brand-logo {
  display: block;
  width: auto;
  height: 72px;
  max-width: 100%;
}

.footer-brand-col p {
  position: relative;
  z-index: 1;
  margin-bottom: 1.15rem !important;
}

.footer-brand-col p:last-child {
  margin-bottom: 0 !important;
}

.footer-title {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 1.35rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 42px;
  height: 2px;
  background: #e9a08d;
}

.footer-list li {
  margin-bottom: 0.38rem;
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.98rem;
  line-height: 1.25;
}

.footer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 0.9rem;
  height: 0.9rem;
  background: url('../images/icon/offer-check.svg') no-repeat center;
  background-size: contain;
}

.footer-location-col,
.footer-touch-col {
  min-width: 0;
}

.footer-touch-col .footer-title + .footer-touch-text {
  margin-top: 0.1rem;
  margin-bottom: 1.45rem !important;
}

.footer-touch-col .footer-social {
  margin-top: 0.1rem;
  gap: 0.55rem !important;
  flex-wrap: wrap;
}

.location-placeholder {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  height: 160px;
  background: #efefef;
  border: 1px solid #e2c5b9;
  border-radius: 0;
  overflow: hidden;
  margin-top: 0.05rem;
}

.location-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer-map-link {
  display: inline-block;
  margin-top: 0.45rem;
  color: #7b3b2b;
  font-size: 0.8rem;
  line-height: 1.2;
  text-decoration: none;
}

.footer-map-link:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .location-placeholder {
    max-width: 100%;
    height: 120px;
  }

  .footer-map-link {
    font-size: 0.9rem;
  }
}

.site-footer p {
  font-size: 0.98rem;
  line-height: 1.25;
}

.footer-touch-text {
  max-width: 210px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-social a {
  color: #fff;
  width: 32px;
  height: 32px;
}

.footer-social a i {
  font-size: 0.98rem;
}

@media (min-width: 992px) {
  .footer-grid {
    justify-content: space-between;
    row-gap: 0;
  }

  .footer-brand-col {
    flex: 0 0 31%;
    max-width: 31%;
  }

  .footer-offer-col {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .footer-location-col {
    flex: 0 0 16%;
    max-width: 16%;
  }

  .footer-touch-col {
    flex: 0 0 18%;
    max-width: 18%;
  }
}

@media (max-width: 991.98px) {
  .header-shell {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .header-top {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.65rem;
  }

  .header-top-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
  }

  .logo-image {
    height: 44px;
  }

  .logo-img-link {
    margin-left: 0;
    min-width: 0;
  }

  .search-wrap {
    order: unset;
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-inline: 0 !important;
  }

  .header-right {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .header-social {
    flex-shrink: 0;
  }

  .menu-row {
    margin-top: 0 !important;
    margin-inline: 0 !important;
  }

  #headerMenuCollapse.show,
  #headerMenuCollapse.collapsing {
    margin-top: 0.5rem;
  }

  .header-menu-list {
    width: 100%;
    padding: 0.35rem 0;
    gap: 0 !important;
  }

  #headerMenuCollapse {
    margin-top: 0;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 0.3rem 0.4rem;
  }

  .menu-row .nav-item {
    width: 100%;
  }

  .menu-row .nav-link {
    white-space: normal;
    display: block;
    padding: 0.52rem 0.55rem;
    font-size: 0.9rem;
    color: var(--brand-black);
  }

  .menu-row .nav-link.active {
    color: var(--brand-red) !important;
    background: transparent !important;
  }

  .menu-row .nav-link.show:not(.active) {
    color: var(--brand-black) !important;
    background: transparent !important;
  }

  .all-products-menu .dropdown-item:not(.active) {
    color: var(--brand-black);
    background-color: transparent !important;
  }

  .all-products-menu .dropdown-item.active {
    color: #f80000 !important;
    background-color: rgba(227, 30, 36, 0.08) !important;
  }

  .mobile-menu-toggle[aria-expanded="true"] {
    border-color: var(--brand-red);
    color: var(--brand-red);
  }

  .header-menu-list .nav-item:first-child .nav-link::after {
    height: 14px;
  }

  .all-products-menu {
    position: static !important;
    float: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    display: block;
    margin-top: 0 !important;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: max-height 0.25s ease;
  }

  .all-products-menu.show {
    max-height: 300px;
    overflow-y: auto;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem;
    margin-top: 0.35rem !important;
    padding: 0.5rem;
    border: 1px solid #ececec;
    border-radius: 10px;
  }

  .hero-banner {
    min-height: 360px;
  }

  .hero-caption {
    font-size: 1.4rem;
  }

  .spacer-section {
    height: 130px;
  }

  .trusted-strip-inner {
    gap: 1.25rem !important;
  }

  .trusted-label {
    min-width: 150px;
  }

  .trusted-logo {
    height: 24px;
  }

  .brand-showcase-image-col {
    margin-left: 0;
  }

  .footer-brand-col::before {
    left: 1rem;
  }

  .footer-title {
    font-size: 1.08rem;
  }

  .site-footer p,
  .footer-list li {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .offer-bar {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .logo-image {
    height: 44px;
  }

  .talk-btn {
    padding-inline: 0.9rem !important;
    font-size: 0.82rem;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
  }

  .header-social.svg-icons a {
    width: 30px;
    height: 30px;
  }

  .mobile-menu-toggle {
    padding: 0.28rem 0.55rem;
    font-size: 0.8rem;
  }

  .menu-row .nav-link {
    font-size: 0.86rem;
    padding: 0.5rem 0.52rem;
  }

  .hero-banner {
    border-radius: 12px;
  }

  .hero-caption {
    font-size: 1.05rem;
  }

  .hero-title {
    font-size: 2.9rem;
  }

  .showcase-art {
    min-height: 270px;
  }

  .trusted-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem !important;
  }

  .partner-logos {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .trusted-label {
    min-width: 0;
  }

  .trusted-title {
    font-size: 0.72rem;
  }

  .trusted-subtitle {
    font-size: 0.92rem;
  }

  .trusted-logo {
    height: 22px;
  }

  .feature-col {
    border-right: none !important;
    border-bottom: 1px solid #e0e0e0;
  }

  .feature-col:nth-child(2n) {
    border-left: 1px solid #e0e0e0;
  }

  .feature-col:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .feature-item {
    justify-content: flex-start !important;
    min-height: 52px;
  }

  .feature-item span {
    font-size: 0.9rem;
  }

  .logo-img-link {
    margin-left: 0;
  }

  .new_gap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .service-hero-title {
    font-size: clamp(1.75rem, 9vw, 2.75rem);
  }

  .about-designerdesk .position-absolute.bg-danger {
    position: relative !important;
    margin: 1rem 0 0 !important;
    display: inline-block;
  }
}

.new_gap {
  padding-left: 8%;
  padding-right: 8%;
}

.service-page {
  background: #fff;
}

.service-hero {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  background-image:  url('../images/back/back.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.08));
}

.service-hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  padding-inline: 1rem;
}

.service-hero-title {
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 750;
  text-transform: uppercase;
  color: rgba(247, 7, 7);
  font-size:90px;
}

.service-breadcrumb {
  margin-top: -0.85rem;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  font-weight: 700;
  text-transform: uppercase;
}

.service-breadcrumb span {
  margin-inline: 0.35rem;
}

.service-list-section {
  background: #fff;
}

.service-card {
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 1.2rem 1.1rem;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--brand-black);
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

@media (max-width: 767.98px) {
  .service-hero {
    min-height: 180px;
  }

  .service-hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
    letter-spacing: 0.01em;
  }

  .service-breadcrumb {
    margin-top: -0.35rem;
    letter-spacing: 0.22em;
    font-size: 0.68rem;
  }

  .portfolio-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.25);
  }

  .portfolio-card:hover img {
    transform: none;
  }

  .image-popup {
    padding: 15px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .prev-btn {
    left: 8px;
  }

  .next-btn {
    right: 8px;
  }

  .close-popup {
    top: 10px;
    right: 15px;
    font-size: 36px;
  }
}
.portfolio-card{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:18px;
    height:100%;
    background:#f5f5f5;
    cursor:pointer;
}

.portfolio-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    transition:0.6s ease;
    display:block;
}

.portfolio-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.5);
    opacity:0;
    transition:.4s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.portfolio-content{
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
    transition:.4s ease;
}

.portfolio-category{
    display:block;
    font-size:16px;
    font-weight:600;
}

.icon-group{
    display:flex;
    gap:20px;
    align-items:center;
    justify-content:center;
}

.view-icon,
.go-icon{
    font-size:24px;
    color:#fff;
    cursor:pointer;
    transition:all 0.3s ease;
}

.view-icon:hover,
.go-icon:hover{
    transform:scale(1.2);
}

.view-icon:active,
.go-icon:active{
    transform:scale(0.95);
}

.portfolio-card:hover img{
    transform:scale(1.1);
}

.portfolio-card:hover .portfolio-overlay{
    opacity:1;
}

.portfolio-card:hover .portfolio-content{
    transform:translateY(0);
}

@media(max-width:768px){

    .portfolio-category{
        font-size:15px;
    }

    .portfolio-btn{
        font-size:11px;
        padding:6px 12px;
    }

}
.portfolio-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    background:#fff;
}

.portfolio-card img{
    width:100%;
    display:block;
    aspect-ratio:1/1;
    object-fit:cover;
    transition:.6s;
}

.portfolio-card:hover img{
    transform:scale(1.08);
}

.portfolio-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
    cursor:pointer;
}

.portfolio-card:hover .portfolio-overlay{
    opacity:1;
}

.view-icon{
    font-size:40px;
    color:#fff;
    cursor:pointer;
    transition:all 0.3s ease;
}

.portfolio-card:hover .view-icon{
    transform:scale(1.1);
}

.view-btn{
    border:none;
    background:#fff;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
}

.image-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    z-index:99999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:30px;
}

.image-popup img{
    max-width:95%;
    max-height:90vh;
    border-radius:12px;
}

.close-popup{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}
.image-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.70);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.image-popup img{
    max-width:90%;
    max-height:90vh;
}

.close-popup{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:50px;
    cursor:pointer;
}

.image-counter{
    position:absolute;
    top:20px;
    left:30px;
    color:#fff;
    font-size:18px;
    font-weight:600;
}

.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(60,60,60,0.8);
    border:none;
    color:#fff;
    font-size:24px;
    width:50px;
    height:50px;
    border-radius:50%;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.3s ease;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
}

.nav-btn:hover{
    background:rgba(80,80,80,0.95);
    transform:translateY(-50%) scale(1.1);
    box-shadow:0 6px 20px rgba(0,0,0,0.5);
}

.nav-btn:active{
    transform:translateY(-50%) scale(0.95);
}

.prev-btn{
    left:20px;
}

.next-btn{
    right:20px;
}
.header-menu-list .nav-link.active {
  color: #f80000 !important;
  background: transparent !important;
  border-radius: 25px;
  font-weight: 600;
}

.all-products-menu .dropdown-item.active {
  color: #f80000 !important;
  background-color: rgba(227, 30, 36, 0.08) !important;
  border-radius: 5px;
  font-weight: 600;
}

.client-testimonials-section {
  background: #fdf8f5;
}

.testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2b2a29;
  margin-bottom: 14px;
}

.testimonials-eyebrow-line {
  width: 34px;
  height: 3px;
  background: var(--brand-red);
  border-radius: 999px;
}

.testimonials-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.testimonials-title-accent {
  color: #d94126;
}

.testimonials-slider-wrap {
  position: relative;
}

.testimonials-slider {
  overflow: hidden;
  flex: 1 1 auto;
  cursor: grab;
  touch-action: pan-y;
}

.testimonials-slider.is-dragging {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonials-slider.is-dragging .testimonials-track {
  transition: none;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px 22px;
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.testimonial-quote {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 4px;
}

.testimonial-company {
  margin: 0;
  font-size: 0.92rem;
  color: #666;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f0b429;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-stars .is-muted {
  color: #ddd;
}

@media (max-width: 991.98px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 767.98px) {
  .testimonial-card {
    flex: 0 0 100%;
    padding: 22px 18px 18px;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }
}