/* Nestbase - Main Stylesheet */

:root {
  --nb-black: #0e0e0f;             /* matte black */
  --nb-silver: #c0c0c0;            /* classic silver */
  --nb-silver-2: #d4d4d4;          /* lighter accent */
  --nb-text: #eaeaea;              /* high-contrast text */
  --nb-muted: #a0a0a0;
  --nb-accent: #9aa0a6;            /* subtle accent for borders */
  --maxw: 1200px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --grad: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  --focus: 0 0 0 3px rgba(192,192,192,.45);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--nb-black);
  color: var(--nb-text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

a {
  color: var(--nb-silver-2);
  text-decoration: none;
}

a:focus {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 8px;
}

/* Layout */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,14,15,.7);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.titular{
  font-family:inherit
}
.gold-text{
  color: gold;
  text-shadow: 1px 1px 10px gold;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: auto;
  height: 50px;
  max-width: 75px;
  object-fit: contain;
}

.brand span {
  font-weight: 800;
  letter-spacing: .5px;
}

.menu {
  display: flex;
  gap: 18px;
  align-items: center;
}

.menu a {
  padding: 8px 10px;
  border-radius: 10px;
}

.menu a:hover {
  background: rgba(255,255,255,.06);
}

.cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: radial-gradient(90% 100% at 70% 10%, rgba(255,255,255,.25), rgba(255,255,255,.08));
  color: #111;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: var(--shadow);
  color: var(--nb-black);
  background-color: var(--nb-silver);
  font-weight: 700;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta-inline {
  margin-top: 14px;
  display: inline-flex;
}

.cta-top {
  margin-top: 10px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background-image: url('media/hero-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: left;
  padding: 100px 0;
}

.hero-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(14, 14, 15, 0.2), rgba(14, 14, 15, 0));
  box-shadow: inset 0 0 100px rgba(0,0,0,.5);
}

.hero-left {
    flex-basis: 50%;
}

.hero-right {
    flex-basis: 50%;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: var(--grad);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--nb-silver-2);
  font-size: .85rem;
}

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  margin: 14px 0;
}

.hero-text {
  background-color: rgba(14, 14, 15, 0.75);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid rgba(255,255,255,.1);
}

.hero p {
  color: var(--nb-muted);
  max-width: 60ch;
}


/* Services Section */
#services {
  background: linear-gradient(180deg, transparent 0%, rgba(192, 192, 192, 0.02) 50%, transparent 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.simple-service-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.simple-service-card h3 {
  font-size: 1.4rem;
  margin: 0 0 16px 0;
  color: var(--nb-silver-2);
  font-weight: 600;
  line-height: 1.3;
}

.simple-service-card p {
  color: var(--nb-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Comprehensive Services List */
#services-list {
  background: linear-gradient(180deg, rgba(192, 192, 192, 0.01) 0%, transparent 100%);
}

.services-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.service-category {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.service-category:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(192,192,192,.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.service-category h3 {
  color: var(--nb-silver);
  font-size: 1.2rem;
  margin: 0 0 16px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-category h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, var(--nb-silver), var(--nb-silver-2));
  border-radius: 2px;
}

.service-category h3 a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(192, 192, 192, 0.6);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.service-category h3 a:hover,
.service-category h3 a:focus-visible {
  color: var(--nb-silver-2);
  text-decoration-color: var(--nb-silver-2);
}

.service-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-items li {
  color: var(--nb-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.2s ease;
  position: relative;
  padding-left: 20px;
}

.service-items li:last-child {
  border-bottom: none;
}

.service-items li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--nb-silver);
  opacity: 0.5;
}

.service-items li:hover {
  color: var(--nb-silver-2);
}

.service-items li:hover::before {
  opacity: 1;
}

/* About Us Section */
#about {
  background: linear-gradient(180deg, transparent 0%, rgba(192, 192, 192, 0.02) 50%, transparent 100%);
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.about-content h3 {
  font-size: 1.8rem;
  color: var(--nb-silver-2);
  margin: 0 0 24px 0;
  line-height: 1.3;
}

.about-content p {
  color: var(--nb-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-content p strong {
  color: var(--nb-silver);
  font-weight: 600;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--nb-silver);
  line-height: 1;
  background: linear-gradient(135deg, var(--nb-silver), var(--nb-silver-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.referenceinfo {
  text-decoration: underline;
  color: #0066cc;
}
.referenceinfo:hover {
  color: #003f88;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--nb-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-visual {
  position: relative;
}

.image-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
}

.image-placeholder img:not([src]),
.image-placeholder img[src=""] {
  display: none;
}

.image-placeholder img[src]:not([src=""]) ~ .placeholder-content {
  display: none;
}

.location-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(14, 14, 15, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nb-silver-2);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.location-badge svg {
  flex-shrink: 0;
}

/* About section responsive */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-visual {
    order: -1; /* Move image above text on mobile */
  }
  
  .about-stats {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .about-content h3 {
    font-size: 1.5rem;
  }
}

/* Sections */
section {
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 0 0 10px;
}

.lead {
  color: var(--nb-muted);
  margin: 0 0 26px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: rgba(14, 14, 15, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.25);
}

.card h3 {
  margin: 6px 0 8px;
}

.card p {
  color: var(--nb-muted);
}

.pill {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--nb-silver);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .85rem;
}

/* Forms */
input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--nb-text);
  margin-top: 6px;
}

.honeypot {
  display: none;
}

.label-stacked {
  display: block;
  margin-top: 10px;
}

.img-full {
  width: 100%;
}

.center-text {
  text-align: center;
}

.form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-two-col-top {
  margin-top: 10px;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--nb-silver);
  box-shadow: 0 0 0 3px rgba(192,192,192,.15);
}

label {
  display: block;
  font-weight: 500;
  color: var(--nb-silver-2);
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 36px 0;
  color: var(--nb-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}

.footer-bottom {
  margin-top: 18px;
  font-size: 0.9rem;
}

.subtle {
  color: var(--nb-muted);
}

/* Responsive */
@media (max-width: 960px) {
  .container {
    padding: 0 24px;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin: 16px 0;
  }

  .grid-3, .pricing, .testi, .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .services-categories {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .menu {
    display: none;
  }

  .menu.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-visual {
    height: 280px;
  }

  section {
    padding: 56px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    gap: 32px;
  }
}

@media (min-width: 961px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 48px 0;
  }

  .hero-wrap {
    padding: 40px 0;
    gap: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .simple-service-card {
    padding: 28px 20px;
  }

  .simple-service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .service-category {
    padding: 20px;
  }

  .pricing-grid .card {
    padding: 28px 20px;
  }

  .about-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat {
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .stat:first-child {
    border-top: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  section {
    padding: 48px 0;
  }

  .hero-wrap {
    padding: 48px 0;
    gap: 32px;
  }

  .hero h1 {
    font-size: 1.65rem;
    line-height: 1.25;
    margin: 20px 0;
  }

  .hero .cta {
    margin-top: 20px !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .simple-service-card {
    padding: 28px 20px;
  }

  .simple-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .simple-service-card p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .service-category {
    padding: 24px 18px;
  }

  .service-category h3 {
    font-size: 1.15rem;
  }

  .service-items li {
    font-size: 0.95rem;
    padding: 10px 0 10px 20px;
  }

  /* Pricing Cards - Better Mobile Layout */
  .pricing-grid {
    gap: 28px;
    margin-top: 32px;
  }

  .pricing-grid .card {
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
  }

  .pricing-grid h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .pricing-grid .price {
    font-size: 2rem !important;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .pricing-grid ul {
    margin-bottom: 24px;
    flex-grow: 1;
  }

  .pricing-grid li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .pricing-grid .cta {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .tooltip-trigger::after {
    font-size: 0.85rem;
    max-width: 240px;
    min-width: 200px;
    padding: 12px;
    left: -50%;
    transform: translateX(0);
  }

  .card {
    padding: 24px 18px;
  }

  .nav {
    padding: 14px 0;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: auto;
    height: 34px;
    max-width: 60px;
    object-fit: contain;
  }

  .brand .titular {
    font-size: 1rem;
    font-weight: 600;
  }

  .cta {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .hero-visual {
    height: 280px;
    padding: 14px;
  }

  .about-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 18px;
  }

  .enterprise-pricing {
    padding: 28px 20px;
  }

  .enterprise-pricing h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .enterprise-pricing p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .enterprise-buttons {
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }

  .enterprise-buttons .cta {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 1rem;
  }

  form.card {
    padding: 28px 20px;
  }

  form label {
    font-size: 1rem;
  }

  form input,
  form textarea {
    font-size: 1rem;
    padding: 12px 14px;
  }

  form button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
  }

  footer {
    padding: 40px 0;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-grid strong {
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: block;
  }

  .footer-grid ul {
    font-size: 0.95rem;
  }

  .footer-grid ul li {
    margin-bottom: 10px;
  }
}

/* Micro-interactions & reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.on {
  opacity: 1;
  transform: none;
}

.hover-rise {
  transition: transform .2s ease;
}

.hover-rise:hover {
  transform: translateY(-3px);
}

    .service-hero {
      padding: 80px 0 60px;
      border-bottom: 1px solid rgba(255,255,255,.06);
      background: linear-gradient(180deg, rgba(192, 192, 192, 0.02) 0%, transparent 100%);
    }

    .breadcrumb {
      display: flex;
      gap: 8px;
      align-items: center;
      font-size: 0.9rem;
      color: var(--nb-muted);
      margin-bottom: 20px;
    }

    .breadcrumb a:hover {
      color: var(--nb-silver-2);
    }

    .service-hero h1 {
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      line-height: 1.1;
      margin: 0 0 20px 0;
      background: linear-gradient(135deg, var(--nb-silver), var(--nb-silver-2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .service-hero .lead {
      font-size: 1.2rem;
      max-width: 80ch;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    .stat-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px;
      padding: 24px;
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      background: rgba(255,255,255,.05);
      border-color: rgba(192,192,192,.2);
      transform: translateY(-2px);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--nb-silver);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 0.95rem;
      color: var(--nb-muted);
      line-height: 1.4;
    }

    .stat-source {
      font-size: 0.75rem;
      color: var(--nb-accent);
      margin-top: 6px;
      text-decoration: underline;
      color: #0066cc;
    }

    .stat-source:hover {
      color: #003f88;
    }

    /* Content Sections - MODULAR */
    .content-section {
      padding: 72px 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .content-section h2 {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      margin: 0 0 16px 0;
      color: var(--nb-silver-2);
    }

    .content-section h3 {
      font-size: clamp(1.3rem, 2.2vw, 1.8rem);
      margin: 32px 0 16px 0;
      color: var(--nb-silver);
    }

    .content-section p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--nb-muted);
      margin-bottom: 20px;
    }

    .content-section strong {
      color: var(--nb-silver-2);
      font-weight: 600;
    }

    /* Why It's Needed - Problem Statement */
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 32px;
    }

    .problem-card {
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 14px;
      padding: 24px;
      transition: all 0.3s ease;
    }

    .problem-card:hover {
      background: rgba(255,255,255,.04);
      border-color: rgba(192,192,192,.25);
    }

    .problem-card h4 {
      color: var(--nb-silver);
      font-size: 1.2rem;
      margin: 0 0 12px 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .problem-card h4::before {
      content: '⚠';
      font-size: 1.4rem;
      opacity: 0.7;
    }

    .problem-card p {
      font-size: 1rem;
      margin: 0;
    }

    /* Value Proposition */
    .value-list {
      display: grid;
      gap: 20px;
      margin-top: 32px;
    }

    .value-item {
      background: rgba(255,255,255,.02);
      border-left: 3px solid var(--nb-silver);
      border-radius: 8px;
      padding: 20px 24px;
      transition: all 0.3s ease;
    }

    .value-item:hover {
      background: rgba(255,255,255,.04);
      border-left-color: var(--nb-silver-2);
      transform: translateX(4px);
    }

    .value-item h4 {
      color: var(--nb-silver-2);
      font-size: 1.2rem;
      margin: 0 0 10px 0;
    }

    .value-item p {
      margin: 0;
      font-size: 1rem;
    }

    /* Use Cases */
    .use-cases-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
      margin-top: 32px;
    }

    .use-case {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: 0 4px 12px rgba(0,0,0,.2);
      transition: all 0.3s ease;
    }

    .use-case:hover {
      background: rgba(255,255,255,.05);
      border-color: rgba(192,192,192,.3);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,.3);
    }

    .use-case-icon {
      font-size: 2rem;
      margin-bottom: 16px;
      display: block;
    }

    .use-case h4 {
      color: var(--nb-silver-2);
      font-size: 1.3rem;
      margin: 0 0 12px 0;
    }

    .use-case p {
      margin: 0 0 16px 0;
      font-size: 1rem;
    }

    .use-case ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .use-case li {
      color: var(--nb-muted);
      padding: 6px 0;
      font-size: 0.95rem;
      position: relative;
      padding-left: 20px;
    }

    .use-case li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--nb-silver);
      font-weight: bold;
    }

    /* Contact Section */
    .contact-section {
      padding: 72px 0;
      background: linear-gradient(180deg, transparent 0%, rgba(192, 192, 192, 0.02) 100%);
    }

/* Color Changer Styles */
.color-changer-dropdown {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

.color-changer-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nb-text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.color-changer-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.color-changer-content {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background: var(--nb-black);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 15px;
  box-shadow: var(--shadow);
  width: 180px;
}

.color-changer-dropdown.active .color-changer-content {
  display: block;
}

.color-changer-content label {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: var(--nb-silver-2);
}

.color-changer-content input[type="color"] {
  width: 100%;
  height: 30px;
  border: none;
  padding: 0;
  margin-bottom: 10px;
  cursor: pointer;
  background: transparent; /* Remove default background */
}

.color-changer-content input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color-changer-content input[type="color"]::-webkit-color-swatch {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

/* Slides */
.mySlides {
  display: none;
  border-radius: 15px; /* Rounded corners for the images */
  overflow: hidden; /* Ensures the corners are rounded */
}

/* Position the location tag */
.location-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 14px;
  z-index: 1;
}

.location-tag .fa-map-marker-alt {
  margin-right: 5px;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
  .location-tag {
    font-size: 12px;
    padding: 4px 8px;
  }
}


