:root {
  --primary: #4a90e2;
  --background-light: #f6f8f6;
  --background-dark: #102216;
  --wireframe-muted: #212529bf;
  --wireframe-bg-light: #d3e1f2;
  --wireframe-bg-dark: #102216;
  --bg-blur-blue: #4a90e233;
}

body.designandcreative_main {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--background-light);
  color: #111813;
}

/* Icons */
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* Hero image (you should replace with real image) */
.hero-image {
  background: url("https://images.unsplash.com/photo-1555066931-4365d14bab8c?w=800&auto=format&fit=crop")
    center/cover no-repeat;
}

.design_creative_sec {
  background: linear-gradient(to top right, #d3e1f299, transparent);
}

/* Process steps */
.step-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #d3e1f2;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.process-steps .col-lg:hover .step-icon {
  background: var(--primary);
  color: white;
}

.step-connector {
  height: 2px;
  background: #dbe6df;
  margin-top: 1.5rem;
  opacity: 0.6;
}

/* Expertise cards */
.expertise-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.75rem;
  padding: 1.75rem 1rem;
  text-align: center;
  transition: border-color 0.3s;
  font-weight: 600;
}

.expertise-card:hover {
  border-color: var(--primary);
}

/* Tools */
.tool-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 20px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.tool-item:hover {
  opacity: 1;
}

.tool-color {
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
  background: var(--color);
}

.tool-color img {
  width: 40px;
  margin: 0px 6px;
}

/* Hover underline helper */
.hover-underline:hover {
  text-decoration: underline;
}

.design_creative_sec h2 {
  color: #fff;
  font-weight: 700;
  width: 750px;
  margin: 0 auto;
}

.core-expert h2,
.sec-head h2 {
  color: #000;
  font-weight: 500 !important;
  font-size: 30px;
}

.sec-head .wireframing_sec_head h2,
.design_creative_sec .uiux-middle-sec.sec-head h2 {
  margin: 0 auto 10px !important;
}

.design_creative_sec .sec-head h2 {
  margin: 0px;
}

/* ui/ux css */

.breadcrumb-sec .breadcrumb .breadcrumb-item {
  color: var(--primary);
}

/* Hero Section */
.hero-card {
  /* background: linear-gradient(135deg, #102a2a 0%, #0d1212 100%); */
  background-image: url("https://st-dev.stealthtechnocrats.com/wp-content/uploads/2026/01/Imge.png");
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.hero-card h1 {
  color: #fff;
}

.hero-card a {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.hero-card a:hover {
  color: var(--primary);
  background-color: #fff;
}

/* Icon Styles */
.icon-box {
  background-color: #d3e1f2;
  color: var(--primary-green);
  padding: 8px;
  border-radius: 6px;
  font-size: 40px;
}

.icon-round {
  background-color: #d3e1f2;
  color: var(--primary-green);
  padding: 12px;
  border-radius: 50%;
}

/* Service Cards */
.service-card {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Specialization Cards */
.spec-card {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background-color: #fff;
}

.spec-card span {
  font-size: 40px;
}

.spec-card small {
  font-size: 18px;
}

.spec-card span {
  color: var(--primary-green);
}

/* Why Choose Section */
.why-choose-bg {
  background-color: #fff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
}

.why-choose-bg h2,
.why-choose-bg h5 {
  color: #000;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

.wireframing-banner a.start-proj {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.wireframing-banner a.start-proj:hover {
  background-color: transparent;
  color: var(--primary);
  font-weight: 500;
}

.wireframing-banner a.case-stud {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.wireframing-banner a.case-stud:hover {
  background-color: var(--primary) !important;
}

.text-wireframe-primary {
  color: var(--primary) !important;
}
.bg-wireframe-primary {
  background-color: var(--primary) !important;
}
.btn-wireframe-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #111813;
}
.btn-wireframe-primary:hover {
  opacity: 0.92;
}

.text-wireframe-muted {
  color: var(--wireframe-muted) !important;
}
.bg-wireframe-primary-subtle {
  background-color: var(--wireframe-bg-light) !important;
}

.wireframe-nav-link {
  color: #111813;
  font-weight: 500;
}
.wireframe-nav-link:hover,
[data-bs-theme="dark"] .wireframe-nav-link:hover {
  color: var(--primary) !important;
}

.wireframe-navbar {
  background: var(--wireframe-bg-light);
}
[data-bs-theme="dark"] .wireframe-navbar {
  background: var(--wireframe-bg-dark);
  border-color: #223326;
}

.wireframe-hero-image {
  min-height: 320px;
}

.wireframe-process-card:hover {
  border-color: var(--primary) !important;
  transition: border-color 0.25s ease;
}

.wireframe-outline-btn {
  border-width: 2px;
}
.wireframe-outline-btn:hover {
  background-color: #111 !important;
  color: white !important;
}

.wireframe-breadcrumb a {
  color: var(--wireframe-muted);
}
.wireframe-breadcrumb a:hover {
  color: var(--primary);
}

.wireframe-flow-diagram {
  min-height: 360px;
}

.you-get h5 {
  color: #fff;
}

.you-get ul li span {
  height: 32px;
  color: #fff !important;
}

.wireframe-flow-diagram {
  background-image: url(https://images.unsplash.com/photo-1581291518857-4e27b48ff24e?w=800&auto=format&fit=crop);
}

.wireframing_sec_head {
  background-color: #fff;
  padding: 50px 0px;
  border-radius: 10px;
}

/* prototyping */
.fw-black {
  font-weight: 900;
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hover effects */
.hover-border-success:hover {
  border-color: var(--bs-success) !important;
}

.hover-shadow:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-4px);
  transition: all 0.25s ease;
}

.prototype-card,
.prototype-approach-card {
  transition: all 0.25s ease;
}

.prototype-hero-image {
  min-height: 320px;
}

/* Breadcrumb override */
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--bs-secondary);
}

/* Small improvements */
.tracking-wider {
  letter-spacing: 0.08em;
}

.max-w-3xl {
  max-width: 720px;
}

a.proto-btn {
  color: #fff;
  background-color: var(--primary);
  border: 1px solid var(--primary);
}

a.proto-btn:hover {
  color: var(--primary);
  background-color: #fff;
  border: 1px solid var(--primary);
}

.ready_sec {
  background-color: var(--wireframe-bg-light);
}

.proto_iconbg {
  background-color: var(--wireframe-bg-light);
}

/* Product Design */

/* Hero */
.prototype-hero-title {
  letter-spacing: -1.2px;
  line-height: 1.05;
}

.prototype-hero-subtitle {
  color: #61896f;
}

.prototype-hero-image {
  background-size: cover;
  background-position: center;
}

/* Cards */
.prototype-card-hover {
  transition: all 0.25s ease;
  border-radius: 12px;
  overflow: hidden;
}

.prototype-card-hover:hover {
  transform: translateY(-8px);
  border-color: var(--primary) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Section titles */
.prototype-section-title {
  letter-spacing: -0.8px;
}

.prototype-title-underline {
  height: 4px;
  width: 80px;
  background: var(--primary);
  border-radius: 999px;
  margin-top: 12px;
}

/* Timeline */
.prototype-timeline {
  position: relative;
  padding-left: 3.5rem;
}

.prototype-timeline::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: var(--primary);
  opacity: 0.15;
  display: none;
}

.prototype-timeline-item {
  position: relative;
  margin-bottom: 3.5rem;
}

.prototype-timeline-number {
  position: absolute;
  left: -3.5rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  box-shadow: 0 8px 24px var(--wireframe-bg-light);
  z-index: 2;
}

.prototype-timeline-content h3 {
  margin-bottom: 0.75rem;
}

/* CTA */
.prototype-cta {
  background: var(--wireframe-bg-light) !important;
}

.prototype-btn-primary,
.prototype-btn-cta {
  background: #111813 !important;
  color: white !important;
  border: none;
  transition: all 0.2s;
}

.prototype-btn-primary:hover,
.prototype-btn-cta:hover {
  background: rgba(17, 24, 19, 0.9) !important;
  transform: translateY(-2px);
}

/* Utils */
.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hover-link:hover {
  color: var(--primary) !important;
  text-decoration: underline !important;
}

a.prototype-btn-primary {
  background-color: var(--primary) !important;
}

a.prototype-btn-primary:hover {
  background-color: #fff !important;
  color: var(--primary) !important;
}

.why-choose-bg ul.gd-list {
  list-style: none;
}

.why-choose-bg ul.gd-list li {
  margin: 0px 30px;
}

/* logo design */

.logodesign-hero-title {
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.logodesign-grayscale-hover {
  filter: grayscale(100%);
  transition: filter 0.7s ease;
}

.logodesign-grayscale-hover:hover {
  filter: grayscale(0%);
}

.logodesign-hero-badge {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logodesign-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.logodesign-card {
  transition: all 0.3s ease;
  border-color: rgba(0, 0, 0, 0.08);
}

.logodesign-card:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 10px 30px rgba(19, 236, 91, 0.08);
}

.hover-border-primary:hover {
  border-color: var(--primary) !important;
}

.logodesign-cta {
  background: var(--wireframe-bg-light);
  color: #000;
}

.logodesign-blob {
  width: 300px;
  height: 300px;
  background: var(--primary);
  filter: blur(120px);
  opacity: 0.2;
  transform: translate(30%, -40%);
  border-radius: 50%;
}

.logodesign-hero .logodesign-hero-badge .icon-banner-logo span {
  color: #fff;
}

.logodesign-hero .logodesign-hero-badge .bg-icon {
  background-color: var(--primary);
  height: 40px;
}

.logodesign-hero a.start-logo,
a.start_brand {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.logodesign-hero a.start-logo:hover,
a.start_brand:hover {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.logodesign-hero a.view-logo,
a.schedule_call {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.logodesign-hero a.view-logo:hover,
a.schedule_call:hover {
  background-color: var(--primary);
  color: #fff;
}

.logodesign-card {
  background-color: #fff;
}

.gallery_sec span.badge {
  border: 2px solid #fff;
}

.overlay-math h3 {
  color: #fff;
}

/* Branding */
.branding-hero-title {
  letter-spacing: -0.03em;
}

.branding-hero-subtitle {
  max-width: 42rem;
}

.branding-card-hover:hover {
  border-color: var(--primary) !important;
  transition: border-color 0.3s ease;
}

.branding-icon-container {
  transition: all 0.3s ease;
}

.branding-card-hover:hover .branding-icon-container {
  background-color: var(--primary) !important;
  color: white !important;
}

.branding-step-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.branding-cta-section {
  background: #102216;
  background-image: linear-gradient(135deg, #102216 0%, #0c1a12 100%);
}

.branding-cta-blob1 {
  width: 16rem;
  height: 16rem;
  background: var(--primary);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.branding-cta-blob2 {
  width: 12rem;
  height: 12rem;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(-30%, 30%);
}

.hover-link:hover {
  color: #111 !important;
  transition: color 0.2s;
}

.shadow-xl {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.btn-blue {
  color: #fff !important;
  background-color: var(--primary) !important;
  border: 1px solid var(--primary);
  box-shadow: 3px 3px 5px #c8c5c5;
  transition: all 0.4s ease;
}

.btn-blue:hover {
  color: var(--primary) !important;
  background-color: transparent !important;
  border: 1px solid var(--primary) !important;
}

.text-blue {
  color: var(--primary) !important;
}

.bg-blue-subtle {
  background-color: var(--wireframe-bg-light);
}

.bg-blue {
  background-color: var(--primary) !important;
}

.border-blue-bottom {
  border-bottom: 4px solid var(--primary);
}

.btn-outline-blue {
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
  background-color: transparent !important;
}

.btn-outline-blue:hover {
  border: 1px solid var(--primary) !important;
  color: #fff !important;
  background-color: var(--primary) !important;
}

.tag {
  background-color: #fff;
  padding: 3px 10px;
  border-radius: 30px;
  border: 1px solid #000;
  color: #000;
}

.look-great-img img {
  border-radius: 15px;
}

/* PAckage Design */

/* Hero Section */
.packagedesign-hero-img-container {
  background: #eed7c1;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

/* Industry Cards */
.packagedesign-industry-card {
  height: 250px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 15px;
}

.packagedesign-industry-card img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.packagedesign-industry-card:hover img {
  transform: translate(-50%, -55%);
}

.packagedesign-card-label {
  position: relative;
  color: black;
  font-weight: normal;
  z-index: 2;
  top: 10px;
}

/* Process Icons */
.packagedesign-process-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.packagedesign-process-icon .material-symbols-outlined {
  font-size: 32px;
}

/* CTA Banner */
.packagedesign-cta-banner {
  background-color: var(--packagedesign-green);
}

/* Mockups */
.packagedesign-mockup-card {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Portfolio */

/* CSS columns layout */
.gallery {
  column-width: 300px;
  column-gap: 1rem;
}

.gallery img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  /* Prevent images from breaking across columns */
  break-inside: avoid;
}

ul#myportfolioTab {
  border-bottom: 0px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
  color: var(--primary);
  background-color: var(--wireframe-bg-light);
  border-radius: 30px !important;
  margin: 0px 10px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  color: #fff !important;
  background-color: var(--primary) !important;
}

/* Core scrollable + hidden scrollbar setup */
.nav-tabs-scrollable {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.nav-tabs-scrollable::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Edge – hides scrollbar completely */
}

/* Mockups Page */

.mockup-logo-icon.small {
  width: 24px;
  height: 24px;
}

.mockup-link {
  color: #333;
  transition: color 0.3s;
}

.mockup-link:hover {
  color: var(--primary) !important;
}

/* Hero */
.mockup-blur-effect {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: var(--wireframe-bg-light);
  filter: blur(80px);
  border-radius: 50%;
}

.mockup-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 34, 22, 0.6), transparent);
}

.fs-italic {
  font-style: italic;
  font-weight: 500;
}

/* Why Mock-ups Section */

.mockup-card {
  transition:
    border 0.3s,
    transform 0.3s ease;
  border: 1px solid transparent !important;
  will-change: transform;
}

.mockup-card:hover {
  border: 1px solid var(--primary) !important;
  transform: scale(1.03);
  z-index: 10;
}

.mockup-icon-box {
  width: 56px;
  height: 56px;
  background: var(--wireframe-bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: 0.3s;
}

.mockup-card:hover .mockup-icon-box {
  background: var(--primary);
  color: #fff;
}

/* Deliverables Grid */
.mockup-grid-item {
  height: 400px;
}

.mockup-grid-item img {
  transition: transform 0.7s ease;
}

.mockup-grid-item:hover img {
  transform: scale(1.1);
}

.mockup-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 34, 22, 0.8), transparent 70%);
}

.bg-lightblue {
  border: 1px solid var(--primary);
  background-color: var(--wireframe-bg-light);
  border-radius: 30px;
  color: var(--primary);
  padding: 8px 15px;
}

/* ui/ux Development */

/* Hero Section */
.uiuxdev-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.033em;
}
.uiuxdev-hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 600px;
}
.uiuxdev-hero-image {
  aspect-ratio: 4/3;
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuDhrvwOSIQDKueds0gg9VUoSl7dFIjyJwZLfoqSVkcNiHAfIDspTjvzrvKxrdk60tXUjCEnQMj09q7O2gZh2YMjeFaIa110bo0QDbrCQ3p7CSVBzgghC3i4n3CfeX-KlrxUK5g6bqJNysbPYldy_E7RJvl5H6ScxLIxs6eDmCFIxb9yw7K4EWY2-m7bPDvp1R7NMjl_w1pxWor_OPX8rC0SUyQXaiR_uwiuLfSA2dYARzD-EKk8PZ51l0jNXGaJ62pO9sEdOz35-08");
  background-size: cover;
  background-position: center;
}
.uiuxdev-hero-btn {
  min-width: 180px;
  height: 48px;
}

/* Specialized Icons */
.uiuxdev-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wireframe-bg-light);
  color: var(--primary);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.uiuxdev-spec-item:hover .uiuxdev-icon-wrapper {
  background-color: var(--primary);
  color: white;
}

/* Service Cards */
.uiuxdev-service-card {
  transition: all 0.3s ease;
  background: white;
}
.uiuxdev-service-card:hover {
  border-color: var(--primary) !important;
}
.uiuxdev-service-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.uiuxdev-service-card:hover .uiuxdev-service-icon {
  transform: scale(1.1);
}

.uiuxdev-cta-section {
  background-color: var(--wireframe-bg-light);
}

/* Updated CTA Section with Balanced Blue Gradient */
.uiuxdev-cta-section {
  /* Uses a blend of #d3e1f2 (light) and #4a90e2 (deep blue) */
  /* Added a middle variant #8cb9ed for a smoother, more balanced transition */
  background: linear-gradient(135deg, #d3e1f2 0%, #8cb9ed 50%, #4a90e2 100%);
  border: 1px solid rgba(74, 144, 226, 0.2);
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.1);
}

/* Adjusting text colors for better contrast against the new blue background */
.uiuxdev-cta-section h2.text-blue {
  color: #0d2a4d !important; /* Deep navy for readability */
}

.uiuxdev-cta-section p.text-blue {
  color: #2c5282 !important; /* Mid-tone blue */
}

/* Subtle accent blurs to complement the gradient */
.uiuxdev-cta-blur-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(100px);
  transform: translate(30%, -30%);
  pointer-events: none;
}

.uiuxdev-cta-blur-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: rgba(74, 144, 226, 0.2);
  filter: blur(80px);
  transform: translate(-20%, 20%);
  pointer-events: none;
}

/* Development Page */

.developmentmain-hero {
  background: linear-gradient(to bottom, #f8f9fa, transparent);
}

.developmentmain-hero-image {
  background: #0d1b2a
    url("https://images.unsplash.com/photo-1555066931-4365d14bab8c?w=1200")
    center/cover;
}

.developmentmain-service-card:hover,
.developmentmain-why-card:hover {
  transform: translateY(-6px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.hover-shadow:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blur-3xl {
  filter: blur(64px);
}

/* Technology Stack Section */
.developmentmain-tech-stack {
  background-color: #f8f9fa; /* light gray - adjust if needed */
}

.developmentmain-tech-card {
  transition: all 0.25s ease;
  border-radius: 1rem;
  overflow: hidden;
}

.developmentmain-tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.developmentmain-tech-badge {
  display: inline-flex;
  align-items: center;
  /* gap: 0.5rem; */
  padding: 0.5rem 1rem;
  /* background-color: rgba(0, 0, 0, 0.04);
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap; */
}

.developmentmain-tech-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--tech-color, #6c757d);
  flex-shrink: 0;
}

/* Optional hover effect on badges */
.developmentmain-tech-badge:hover {
  background-color: rgba(0, 0, 0, 0.08);
  transform: scale(1.05);
}

/* WebApp Development */

/* Custom UI Elements */
.webdev-logo-icon {
  width: 40px;
  height: 40px;
}
.webdev-logo-icon-sm {
  width: 32px;
  height: 32px;
}

.webdev-badge {
  background-color: rgba(19, 236, 91, 0.2);
  color: var(--primary);
  font-size: 0.7rem;
  padding: 0.5rem 1rem;
}

.webdev-text-muted {
  color: var(--webdev-muted);
}

/* Hero Mockup Effects */
.webdev-hero-blur {
  position: absolute;
  inset: -20px;
  background: var(--bg-blur-blue);
  filter: blur(60px);
  border-radius: 1rem;
  z-index: 0;
}

.webdev-mockup {
  background: #fff;
  border: 1px solid #dbe6df !important;
  position: relative;
  z-index: 1;
}

.dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
}

/* Capability Cards */
.webdev-capability-card {
  border-radius: 1rem;
  background: white;
  transition: all 0.3s ease;
}

.webdev-capability-card:hover {
  border-color: var(--primary) !important;
  transform: translateY(-5px);
}

.webdev-icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

/* Tech Stack Banner */
.webdev-stack-banner {
  border: none;
}

.webdev-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--bg-blur-blue);
  filter: blur(80px);
  border-radius: 50%;
}

.webdev-grayscale {
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.5s;
}

.webdev-grayscale:hover {
  filter: grayscale(0);
  opacity: 1;
}

.webdev-stat-card {
  height: 96px;
  border-radius: 0.5rem;
  background: var(--bg-blur-blue);
  border: 1px solid rgba(19, 236, 91, 0.2);
}
.webdev-stat-card.alt {
  background: #f4f4f5;
  border: none;
}
.webdev-chart-card {
  height: 160px;
  background: #fafafa;
  border-radius: 0.5rem;
}
.webdev-chart-card .bar {
  flex: 1;
  background: rgba(19, 236, 91, 0.3);
  border-radius: 4px;
}

/* Custom Styles for the Insights Section */

.webdev-insights-section {
  background-color: #f8faf9; /* Light background from the image */
}

/* Container for the image and floating badge */
.webdev-image-container {
  padding-bottom: 40px; /* Space for the overlapping badge */
  padding-right: 20px;
}

.webdev-visual-bg {
  background-color: #0d211e;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

/* Perspective effect for the image inside */
.webdev-visual-bg img {
  transform: rotateX(10deg) rotateY(-10deg) rotateZ(5deg);
  filter: drop-shadow(20px 40px 30px rgba(0, 0, 0, 0.5));
}

/* Floating Green Badge */
.webdev-performance-badge {
  position: absolute;
  bottom: 0;
  right: -4%;
  width: 260px;
  background-color: var(--primary);
  color: #102216;
  z-index: 10;
  transform: translateY(20px);
}

.ecom-performance-badge {
  position: absolute;
  bottom: 0;
  left: -4%;
  width: 260px;
  background-color: var(--primary);
  color: #102216;
  z-index: 10;
  transform: translateY(20px);
}
/* Shadow depth */
.shadow-xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.webdev-tilt {
  transform: perspective(1000px) rotateX(15deg) rotateY(-15deg) rotateZ(5deg);
}

/* Floating Green Badge */
.webdev-perf-badge {
  position: absolute;
  bottom: -20px;
  right: 10%;
  background-color: var(--webdev-primary);
  color: var(--webdev-dark-bg);
  width: 240px;
  z-index: 5;
}

/* Toggle Switches */
.webdev-switch.form-check-input {
  width: 3em;
  height: 1.5em;
  background-color: #e9ecef;
  border: none;
  cursor: pointer;
}

.webdev-switch.form-check-input:checked {
  background-color: var(--webdev-primary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23102216'/%3e%3c/svg%3e");
}

/* Utilities */
.text-primary {
  color: var(--webdev-primary) !important;
}
.shadow-xl {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Mobile Development */

/* Badge */
.mobiledev-badge {
  background-color: rgba(19, 236, 91, 0.2);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
}

/* Hero Section */
.mobiledev-hero-img {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}

.mobiledev-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: var(--primary);
  filter: blur(80px);
  opacity: 0.15;
  z-index: 1;
}

/* Cards & Grid */
.col-lg-2-4 {
  flex: 0 0 auto;
  width: 20%;
}

.mobiledev-card {
  transition: all 0.3s ease;
}

.mobiledev-card:hover {
  border: 1px solid var(--primary) !important;
  transform: translateY(-5px);
}

.mobiledev-icon-box {
  width: 48px;
  height: 48px;
  background: var(--wireframe-bg-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.mobiledev-divider {
  height: 4px;
  background: linear-gradient(90deg, #4a90e280, transparent);
  border-radius: 2px;
}

/* Industry main css */
.industry_main_sec h1 {
  font-size: 48px;
  font-weight: 500 !important;
}

.industry_main_sec .second_cont h2 {
  font-size: 40px;
}

.design_creative_sec .industry_main_sec .sec-head h2 {
  margin: auto;
}

/* Industry Circles */
.mobiledev-industry-circle {
  width: 80px;
  height: 80px;
  border: 2px dashed #dbe6df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobiledev-industry-circle:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.1);
}

/* Portfolio */
.mobiledev-portfolio-item {
  height: 500px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.mobiledev-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobiledev-portfolio-item:hover .mobiledev-overlay {
  opacity: 1;
}

/* CMS Development */

/* Styling for the card container */
.cms-card {
  background: #fff;
  border: 1px solid #e0e6e4;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: transform 0.2s ease-in-out;
}

.cms-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Styling for the circular icon background */
.icon-box {
  background-color: var(--wireframe-bg-light);
  color: var(--primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

/* Custom Styles */
.lifecycle-section {
  /* background-color: #f8faf9; */
  padding: 80px 0;
}

.lifecycle-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.lifecycle-item {
  position: relative;
  z-index: 1;
}

/* Outer Circle (The Green Border) */
.circle-container {
  width: 90px;
  height: 90px;
  background-color: #fff;
  border: 3px solid var(--primary);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Inner Text Style */
.step-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
}

h5 {
  font-size: 1.1rem;
  color: #1a1a1a;
}

p.small {
  line-height: 1.4;
  color: #6c757d;
}

/* Maintanence Page */

.custom-card {
  border-radius: 20px;
  border: 1px solid #f0f0f0;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}
/* Featured Card (Dark) */
.featured-card {
  background-color: #0d1110;
  border-radius: 20px;
  border: 2px solid var(--primary) !important;
  box-shadow: 0 0 20px #4a90e275;
  color: white;
  transform: scale(1.05);
  z-index: 2;
}

.recommended-badge {
  position: absolute;
  top: 0;
  right: 20px;
  background-color: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 12px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.ecomdev-stat-box {
  background-color: var(--wireframe-bg-light);
}

/* SMM Page */

/* Hero Section */
.smm-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.033em;
}

.smm-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(17, 24, 19, 0.7);
  max-width: 600px;
}

.smm-hero-image-container img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.smm-metric-card,
.smm-interaction-overlay {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

/* Platforms */
.smm-section-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

.smm-platform-card {
  background: white;
  transition: all 0.3s;
  cursor: pointer;
}

.smm-platform-card:hover {
  border-color: var(--primary) !important;
  color: var(--primary);
}

/* Services */
.smm-service-card {
  background: white;
  transition: all 0.3s;
}

.smm-service-card:hover {
  border-color: var(--primary) !important;
}

.smm-icon-box {
  width: 48px;
  height: 48px;
  background: var(--wireframe-bg-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.smm-stat-box {
  background: rgb(255 255 255 / 25%);
  backdrop-filter: blur(5px);
}

/* content writing */

.con-writing-hero-img {
  background-size: cover;
  background-position: center;
  aspect-ratio: 1/1;
}

.con-writing-hero-blob {
  width: 200px;
  height: 200px;
  background: var(--con-primary);
  filter: blur(80px);
  opacity: 0.15;
  top: -50px;
  right: -20px;
}

.con-writing-card {
  transition: all 0.3s ease;
  border-radius: 1rem;
}

.con-writing-card:hover {
  transform: translateY(-5px);
  border: 1px solid var(--primary) !important;
}

.con-writing-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.con-writing-icon-bg {
  background: var(--wireframe-bg-light);
  border-radius: 4px;
}

/* Skeleton Mockup UI */
.con-writing-skeleton-bar-long {
  height: 24px;
  background: var(--bg-blur-blue);
  border-radius: 12px;
  width: 75%;
}
.con-writing-skeleton-line {
  height: 10px;
  background: #eee;
  border-radius: 5px;
}
.con-writing-skeleton-bar-short {
  height: 15px;
  background: #ddd;
  border-radius: 10px;
}
.con-writing-skeleton-btn {
  height: 40px;
  background: white;
  border-radius: 8px;
  border: 1px solid #eee;
}

.con-writing-ghost-icon {
  font-size: 120px !important;
  bottom: -20px;
  right: -20px;
  opacity: 0.05;
}

.con-writing-process-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--con-primary);
}

/* PPC Google Ads */

/* Browser Mockup */
.ppc-ads-browser-mockup {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
}

.ppc-ads-browser-header {
  display: flex;
  align-items: center;
}

.dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.red {
  background: #ff5f56;
}
.yellow {
  background: #ffbd2e;
}
.green {
  background: #27c93f;
}

.ppc-ads-search-bar {
  background: #f1f3f4;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 11px;
  flex-grow: 1;
  color: #5f6368;
}

/* Stats Cards */
.ppc-ads-stat-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.ppc-ads-stat-card:hover {
  transform: translateY(-5px);
}

.small-icon {
  font-size: 14px !important;
  vertical-align: middle;
}

/* Service Cards */
.ppc-ads-service-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
}

.ppc-ads-icon-box {
  width: 45px;
  height: 45px;
  background: var(--wireframe-bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Email Marketing */
/* Card Effects */
.email-market-card {
  background: white;
  transition: all 0.3s ease;
}

.email-market-card:hover {
  border-color: var(--primary) !important;
  /* box-shadow: 0 10px 30px rgb(74 144 226 / 39%); */
  box-shadow: 0 10px 30px var(--bg-blur-blue);
  transform: translateY(-5px);
}

.email-market-card:hover .email-market-icon {
  background-color: var(--primary);
  color: white !important;
}

/* CTA Background Pattern */
.email-market-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Utility */
.email-market-social-btn {
  width: 32px;
  height: 32px;
  background: #f1f3f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.2s;
}

.email-market-social-btn:hover {
  background: var(--wireframe-bg-light);
  color: var(--primary);
}

.bg-primary-soft {
  background-color: var(--wireframe-bg-light);
}
/* Custom Styles for Reporting Section */
.icon-check {
  color: var(--primary);
}

.feature-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.feature-text {
  color: #6c757d;
  font-size: 1.15rem;
  margin-bottom: 0;
}

/* Adjusting alignment for the Material Symbol */
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

/* Mobirl App Marketing */

/* Hero Section */
.mob-app-market-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(19, 236, 91, 0.1);
  color: #0da741;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.mob-app-market-pulse {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.mob-app-market-hero-title {
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.mob-app-market-italic {
  color: var(--primary);
  font-style: italic;
}

.mob-app-market-text-muted {
  color: var(--text-muted);
}

/* Hero Cards */
.mob-app-market-hero-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: rgba(74, 144, 226, 0.15);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}

.mob-app-market-hero-card {
  background: linear-gradient(135deg, #4a90e29c, white);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.mob-app-market-mockup-store {
  background: white;
  padding: 10px;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mockup-inner {
  aspect-ratio: 9/16;
  background-size: cover;
  background-position: center;
  border-radius: 0.75rem;
  background-color: #f1f5f9;
}

.mob-app-market-stats-card {
  background: white;
  border-radius: 1rem;
}

.mob-app-market-chart .bar {
  flex: 1;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
}

.h-90 {
  height: 90px;
}
.h-75 {
  height: 75px;
  opacity: 0.8;
}
.h-60 {
  height: 60px;
  opacity: 0.6;
}
.h-50 {
  height: 50px;
  opacity: 0.4;
}
.h-45 {
  height: 45px;
  opacity: 0.3;
}
.h-42 {
  height: 42px;
  opacity: 0.2;
}
.h-40 {
  height: 40px;
  opacity: 0.1;
}

.mob-app-market-dark-card {
  background: #111813;
  color: white;
  border-radius: 1rem;
}

.mob-app-market-progress {
  height: 6px;
  background-color: #2a352e;
}

.mob-app-market-progress .progress-bar {
  background-color: var(--primary);
}

/* Service Cards */
.mob-app-market-service-card {
  background: white;
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mob-app-market-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--primary);
}

.icon-box {
  width: 56px;
  height: 56px;
  background: var(--wireframe-bg-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.mob-app-market-service-card:hover .icon-box {
  background: var(--primary);
  color: white;
}

.mob-app-market-link {
  text-decoration: none;
  color: #111813;
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mob-app-market-link span {
  font-size: 1rem;
}

/* Funnel Section */
.mob-app-market-funnel-container {
  background: #fff;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon span {
  font-size: 14px;
  font-weight: bold;
}

.mob-app-market-funnel-visual {
  background: var(--bg-blur-blue);
  border: 1px solid var(--primary);
  border-radius: 1.5rem;
  backdrop-filter: blur(5px);
}

.funnel-step {
  height: 50px;
  margin-bottom: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-weight: 500;
  color: var(--wireframe-bg-light);
}

.awareness {
  background: var(--primary);
}
.installation {
  background: rgba(74, 144, 226, 0.8);
}
.active7 {
  background: rgba(74, 144, 226, 0.6);
}
.active30 {
  background: rgba(74, 144, 226, 0.4);
}

/* Avatars */
.mob-app-market-avatar-group .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  background-size: cover;
  margin-left: -12px;
}
.mob-app-market-avatar-group .avatar:first-child {
  margin-left: 0;
}

@media (min-width: 992px) {
  .prototype-timeline::before {
    display: block;
  }
  .lifecycle-wrapper::before {
    content: "";
    position: absolute;
    top: 70px; /* Centers line behind the circles */
    left: 8%;
    right: 8%;
    height: 2px;
    background-color: #e0eadd;
    z-index: 0;
  }
}

@media (max-width: 767px) {
  .nav-tabs-scrollable {
    justify-content: flex-start !important; /* Start from left */
    margin: 0 -1rem; /* Extend to edges (negative margin) */
    padding: 0 1rem; /* Inner padding so first/last tabs aren't cut off */
    width: calc(100% + 2rem); /* Full bleed effect */
  }

  .nav-tabs-scrollable .nav-link {
    padding: 0.55rem 1.25rem; /* Good touch target size */
    font-size: 0.96rem;
    white-space: nowrap;
    border-radius: 2rem; /* Rounded pills – modern & clean */
    margin: 0 0.35rem; /* Small gap between tabs */
    background-color: #f8f9fa; /* Light bg for pills (adjust to your theme) */
    border: 1px solid #dee2e6; /* Subtle border if using .nav-pills style */
  }

  .nav-tabs-scrollable .nav-link.active {
    background-color: #0d6efd; /* Bootstrap primary blue – or your brand color */
    color: white;
    font-weight: 500;
    border-color: #0d6efd;
  }

  /* Optional: subtle fade on edges when scrollable */
  .nav-tabs-scrollable {
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    );
  }
  .webdev-performance-badge {
    right: 50%;
    transform: translate(50%, 20px);
  }
}

@media (min-width: 768px) {
  .nav-tabs-scrollable {
    justify-content: center !important;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
  }

  .nav-tabs-scrollable .nav-link {
    border-radius: 0.375rem; /* Default Bootstrap tab corners on desktop */
  }
}

@media (max-width: 550px) {
  .design_creative_sec h2 {
    width: 320px;
  }

  .design_creative_sec .uiux-middle-sec.sec-head h2 {
    margin: 0px 0px 20px 0px !important;
  }

  .why-choose-bg ul.gd-list li {
    margin: 0px;
  }

  a.proto-btn {
    font-size: 14px;
  }

  .btn-blue {
    width: 100%;
  }

  .btn-outline-blue {
    width: 100%;
  }

  .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .nav-tabs .nav-link {
    padding: 0.6rem 1.1rem;
  }
}
