:root {
  --sd-background: linear-gradient(135deg, hsl(210 20% 96%) 0%, hsl(210 18% 93%) 100%);
  --sd-background-solid: hsl(210 20% 95%);
  --sd-foreground: hsl(210 60% 12%);
  --sd-card: hsl(0 0% 100%);
  --sd-muted: hsl(210 15% 90%);
  --sd-muted-foreground: hsl(210 15% 45%);
  --sd-primary: hsl(210 35% 17%);
  --sd-secondary: hsl(22 93% 53%);
  --sd-accent: hsl(221 83% 33%);
  --sd-border: hsl(210 20% 85%);
  --sd-input: hsl(210 20% 92%);
  --sd-radius: 0.75rem;
  --sd-gradient-hero: linear-gradient(135deg, hsl(210 35% 17%) 0%, hsl(221 83% 33%) 100%);
  --sd-gradient-overlay: linear-gradient(to bottom, rgba(30, 42, 58, 0.88), rgba(30, 58, 138, 0.78));
  --sd-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --sd-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08);
  --sd-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --sd-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.12);
  --sd-business-dark: hsl(210 35% 12%);
  --sd-business-light: hsl(210 20% 92%);
  --sd-business-accent: hsl(22 93% 53%);
  --sd-gradient-section-light: linear-gradient(135deg, hsl(210 20% 96%) 0%, hsl(210 18% 93%) 100%);
  --sd-gradient-section-muted: linear-gradient(135deg, hsl(210 20% 92%) 0%, hsl(210 15% 88%) 100%);
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  background: var(--sd-background-solid);
  color: var(--sd-foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sd-foreground);
}

.sd-bg-muted {
  background: linear-gradient(135deg, hsl(210 20% 92%) 0%, hsl(210 15% 88%) 100%) !important;
}

.sd-gradient-hero {
  background: var(--sd-gradient-hero);
}

.sd-gradient-overlay {
  background: var(--sd-gradient-overlay);
}

.sd-shadow-elegant {
  box-shadow: var(--sd-shadow-xl);
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

.sd-navbar {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(34, 150, 243, 0.1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.sd-navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 150, 243, 0.2), transparent);
}

.sd-brand {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--sd-primary);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sd-brand::before {
  content: '';
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--sd-secondary) 0%, hsl(22 93% 45%) 100%);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.sd-brand:hover {
  color: var(--sd-secondary);
  transform: translateX(2px);
}

.sd-brand:hover::before {
  transform: scale(1.3) rotate(45deg);
}

.sd-nav-link {
  font-weight: 600;
  color: var(--sd-primary);
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.sd-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sd-secondary), hsl(22 93% 45%));
  transition: width 0.3s ease;
  border-radius: 999px;
}

.sd-nav-link:hover,
.sd-nav-link:focus {
  color: var(--sd-secondary);
  background: rgba(234, 88, 12, 0.08);
  transform: translateY(-1px);
}

.sd-nav-link:hover::before,
.sd-nav-link:focus::before {
  width: calc(100% - 2rem);
}

.sd-nav-link.is-active {
  color: var(--sd-secondary);
  background: rgba(234, 88, 12, 0.12);
  font-weight: 700;
}

.sd-nav-link.is-active::before {
  width: calc(100% - 2rem);
}

.dropdown-menu {
  border: 1px solid rgba(34, 150, 243, 0.1);
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.dropdown-item {
  color: var(--sd-primary);
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  border-radius: 0.5rem;
  margin: 0.25rem 0.5rem;
}

.dropdown-item:hover {
  background: rgba(234, 88, 12, 0.08);
  color: var(--sd-secondary);
  transform: translateX(2px);
}

.dropdown-item.is-active,
.dropdown-item.is-active:focus,
.dropdown-item.is-active:hover {
  background: rgba(234, 88, 12, 0.12);
  color: var(--sd-secondary);
  font-weight: 700;
}

.sd-btn-hero {
  --bs-btn-bg: var(--sd-secondary);
  --bs-btn-border-color: var(--sd-secondary);
  --bs-btn-hover-bg: color-mix(in srgb, var(--sd-secondary) 90%, black);
  --bs-btn-hover-border-color: color-mix(in srgb, var(--sd-secondary) 90%, black);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  box-shadow: 0 12px 24px rgba(234, 88, 12, 0.3);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.01em;
}

.sd-btn-hero:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.4);
}

.sd-btn-outline {
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 2px;
  --bs-btn-border-color: var(--sd-primary);
  --bs-btn-color: var(--sd-primary);
  --bs-btn-hover-bg: var(--sd-primary);
  --bs-btn-hover-border-color: var(--sd-primary);
  --bs-btn-hover-color: #fff;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.sd-btn-cta {
  --bs-btn-bg: var(--sd-accent);
  --bs-btn-border-color: var(--sd-accent);
  --bs-btn-hover-bg: color-mix(in srgb, var(--sd-accent) 90%, black);
  --bs-btn-hover-border-color: color-mix(in srgb, var(--sd-accent) 90%, black);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  box-shadow: var(--sd-shadow-lg);
}

.card {
  border-radius: var(--sd-radius);
  border-color: var(--sd-border);
  box-shadow: var(--sd-shadow-sm);
  transition: all 0.3s ease;
}

.sd-card-hover {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.3s ease;
  border-radius: 1rem;
}

.sd-card-hover:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #fff 0%, hsl(210 20% 98%) 100%);
  border-color: rgba(234, 88, 12, 0.2);
}

.sd-card-hover-border-secondary:hover {
  border-color: color-mix(in srgb, var(--sd-secondary) 85%, white);
}

.sd-pill {
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sd-pill-secondary {
  background: rgba(234, 88, 12, 0.15);
  color: var(--sd-secondary);
  border: 1px solid rgba(234, 88, 12, 0.3);
}

.sd-pill-secondary:hover {
  background: rgba(234, 88, 12, 0.2);
  border-color: rgba(234, 88, 12, 0.5);
  transform: translateY(-2px);
}

.sd-pill-primary {
  background: rgba(30, 42, 58, 0.1);
  color: var(--sd-primary);
  border: 1px solid rgba(30, 42, 58, 0.2);
}

.sd-pill-primary:hover {
  background: rgba(30, 42, 58, 0.15);
  border-color: rgba(30, 42, 58, 0.4);
  transform: translateY(-2px);
}

.sd-pill-accent {
  background: rgba(34, 150, 243, 0.15);
  color: var(--sd-accent);
  border: 1px solid rgba(34, 150, 243, 0.3);
}

.sd-hero {
  min-height: 600px;
  position: relative;
}

@media (min-width: 992px) {
  .sd-hero {
    min-height: 750px;
  }
}

.sd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sd-hero__overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(1px);
}

.sd-hero__content {
  position: relative;
  z-index: 1;
}

.sd-text-muted {
  color: var(--sd-muted-foreground) !important;
}

.sd-form-control {
  border-radius: 0.75rem;
  border: 1.5px solid rgba(34, 150, 243, 0.2);
  background: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sd-form-control:focus {
  border-color: var(--sd-secondary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
  transform: translateY(-1px);
}

.sd-icon-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sd-icon-circle-secondary {
  background: rgba(234, 88, 12, 0.1);
  color: var(--sd-secondary);
  transition: all 0.3s ease;
}

.sd-icon-circle-secondary:hover {
  background: rgba(234, 88, 12, 0.15);
  transform: scale(1.05);
}

.sd-icon-circle-primary {
  background: rgba(30, 42, 58, 0.1);
  color: var(--sd-primary);
  transition: all 0.3s ease;
}

.sd-icon-circle-primary:hover {
  background: rgba(30, 42, 58, 0.15);
  transform: scale(1.05);
}

.sd-icon-circle-solid-primary {
  background: linear-gradient(135deg, var(--sd-primary) 0%, var(--sd-accent) 100%);
  color: #fff;
  transition: all 0.3s ease;
}

.sd-icon-circle-solid-primary:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 16px rgba(30, 42, 58, 0.2);
}

.sd-badge-secondary {
  background: color-mix(in srgb, var(--sd-secondary) 10%, transparent);
  color: var(--sd-secondary);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-weight: 600;
  font-size: 0.75rem;
}

.sd-hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.8s ease-out;
}

@media (min-width: 768px) {
  .sd-hero-title {
    font-size: 3.25rem;
  }
}

@media (min-width: 992px) {
  .sd-hero-title {
    font-size: 4.25rem;
    line-height: 1.05;
  }
}

.sd-hero-lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-out 0.2s both;
}

@media (min-width: 768px) {
  .sd-hero-lead {
    font-size: 1.375rem;
  }
}

.sd-divider-vertical {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.3);
}

@keyframes sd-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sd-slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sd-scale-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.sd-animate-fade-in {
  animation: sd-fade-in 0.6s ease-out both;
}

.sd-animate-slide-up {
  animation: sd-slide-up 0.5s ease-out both;
}

.sd-animate-scale-in {
  animation: sd-scale-in 0.4s ease-out both;
}

.sd-footer {
  background: linear-gradient(135deg, var(--sd-business-dark) 0%, hsl(210 35% 15%) 100%);
  color: #fff;
  border-top: 4px solid var(--sd-secondary);
  position: relative;
}

.sd-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.sd-footer a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sd-footer a:hover {
  color: var(--sd-secondary);
  text-decoration: underline;
}

.sd-footer h3, .sd-footer h4 {
  color: #fff;
  font-weight: 700;
}

.sd-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sd-img-zoom {
  transition: transform 0.3s ease;
}

.sd-img-zoom:hover {
  transform: scale(1.05);
}

/* Brand Slider Styles */
.sd-brand-slider {
  overflow: visible;
  padding: 4rem 0;
  background: linear-gradient(135deg, hsl(210 20% 92%) 0%, hsl(210 15% 88%) 100%);
  border-top: 1px solid var(--sd-border);
  border-bottom: 1px solid var(--sd-border);
  position: relative;
}

.sd-brand-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 150, 243, 0.3), transparent);
}

.sd-slider-wrapper {
  position: relative;
}

.sd-slider-viewport {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 1rem 3.5rem 1.5rem;
  scroll-behavior: auto;
}

.sd-slider-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0 1rem;
}

.sd-slider-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 100px;
  padding: 0 1.75rem;
  border-radius: calc(var(--sd-radius) + 0.25rem);
  background: linear-gradient(135deg, #fff 0%, hsl(210 20% 98%) 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1.5px solid rgba(34, 150, 243, 0.12);
  position: relative;
}

.sd-slider-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: calc(var(--sd-radius) + 0.25rem);
  background: linear-gradient(135deg, rgba(34, 150, 243, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sd-slider-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 32px rgba(34, 150, 243, 0.18);
  border-color: rgba(34, 150, 243, 0.4);
  background: linear-gradient(135deg, #fff 0%, hsl(210 25% 99%) 100%);
}

.sd-slider-item:hover::before {
  opacity: 1;
}

.sd-slider-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sd-slider-control {
  position: absolute;
  z-index: 2;
}

.sd-slider-control[data-sd-slider-control="prev"] {
  left: 0;
}

.sd-slider-control[data-sd-slider-control="next"] {
  right: 0;
}

/* Carousel Navigation Styles */
.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background: rgba(34, 150, 243, 0.1);
  border: 1.5px solid rgba(34, 150, 243, 0.3);
  border-radius: 999px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(34, 150, 243, 0.2);
  border-color: rgba(34, 150, 243, 0.6);
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
  box-shadow: 0 0 0 3px rgba(34, 150, 243, 0.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0.3) brightness(1.2);
}

/* Portfolio Gallery Styles */
.sd-portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.sd-portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--sd-radius);
  box-shadow: var(--sd-shadow-md);
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

.sd-portfolio-item:hover {
  box-shadow: var(--sd-shadow-xl);
  transform: translateY(-4px);
}

.sd-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.sd-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

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

.sd-portfolio-overlay-text {
  color: white;
  font-weight: 600;
  text-align: center;
}

/* Quote Form Styles */
.sd-quote-form {
  background: linear-gradient(135deg, var(--sd-primary) 0%, var(--sd-accent) 100%);
  border-radius: var(--sd-radius);
  padding: 2rem;
  color: white;
}

.sd-quote-form h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.sd-quote-form .form-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.sd-quote-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: calc(var(--sd-radius) - 0.25rem);
  backdrop-filter: blur(8px);
}

.sd-quote-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.sd-quote-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
  color: white;
}

.sd-quote-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.sd-quote-form .btn {
  background: var(--sd-secondary);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.sd-quote-form .btn:hover {
  background: color-mix(in srgb, var(--sd-secondary) 90%, black);
  transform: translateY(-2px);
  box-shadow: var(--sd-shadow-lg);
}

/* Enhanced Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.sd-float {
  animation: float 3s ease-in-out infinite;
}

.sd-glow {
  animation: glow 2s ease-in-out infinite;
}

/* Smooth Transitions */
.sd-smooth-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Card Styles */
.sd-card-premium {
  border: 1px solid var(--sd-border);
  border-radius: var(--sd-radius);
  background: white;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--sd-shadow-sm);
}

.sd-card-premium:hover {
  box-shadow: var(--sd-shadow-xl);
  transform: translateY(-6px);
  border-color: var(--sd-secondary);
}

/* Section Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sd-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Parallax Effect */
.sd-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .sd-portfolio-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .sd-slider-item {
    min-width: 180px;
    min-height: 96px;
    height: auto;
    padding: 0.75rem 1rem;
  }

  .sd-slider-viewport {
    padding: 0.75rem 2.5rem 1.25rem;
  }

  .sd-navbar .navbar-brand {
    max-width: calc(100% - 3.5rem);
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
  }

  .sd-navbar .navbar-toggler {
    margin-left: auto;
    align-self: center;
  }

  .sd-brand {
    font-size: 0;
    line-height: 0;
    white-space: nowrap;
    flex-wrap: nowrap;
    color: transparent;
    position: relative;
  }

  .sd-brand::before {
    display: none;
  }

  .sd-brand::after {
    content: 'SHUBHDWAR';
    position: static;
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--sd-secondary);
  }
  
  .sd-quote-form {
    padding: 1.5rem;
  }
}
