:root {
  --primary: #5e0016;
  --primary-container: #801628;
  --primary-fixed: #ffdada;
  --secondary: #5c5f63;
  --tertiary: #3a2800;
  --tertiary-fixed: #ffdea5;
  --bg: #f9f9f9;
  --surface: #f9f9f9;
  --surface-container: #eeeeee;
  --surface-container-high: #e8e8e8;
  --surface-container-highest: #e2e2e2;
  --surface-container-lowest: #ffffff;
  --surface-variant: #e2e2e2;
  --outline-variant: #debfc0;
  --on-surface: #1a1c1c;
  --on-surface-variant: #574142;
  --on-primary: #ffffff;
  --on-background: #1a1c1c;

  --section-padding: 120px;
}

/* Base Styles */
body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--bg);
  color: var(--on-background);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  overflow-x: hidden;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* Bootstrap Container Override */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  max-width: 1280px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media (min-width: 768px) {

  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* Typography Custom Utilities */
.font-display-lg {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.font-headline-lg {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
}

.font-headline-md {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 40px;
  font-weight: 500;
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.font-body-lg {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.font-body-md {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.font-label-sm {
  color: #000;
  /* -webkit-background-clip: text; */
  /* background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* color: transparent; */
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary);
  color: var(--on-primary);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 40px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.3s ease;
  white-space: nowrap;
  border-radius: 0;
}

.btn-primary-custom:hover {
  background-color: var(--primary-container);
  color: white;
}

.btn-primary-custom:active {
  transform: scale(0.95);
}

.btn-outline-light-custom {
  background: transparent;
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: white;
}



/* Theme Colors */
.text-primary-color {}

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

.text-tertiary-fixed {
  color: var(--tertiary-fixed) !important;
}

.text-surface-variant {
  color: var(--surface-variant) !important;
}

.text-on-surface {
  color: var(--on-surface) !important;
}

.text-on-surface-variant {
  color: var(--on-surface-variant) !important;
}

.text-primary-fixed {
  color: #ffffff !important;
}

.bg-surface-container {
  background-color: var(--surface-container) !important;
}

.bg-surface-container-lowest {
  /* background-color: var(--surface-container-lowest) !important; */
}

.bg-surface-container-high {
  background-color: var(--surface-container-high) !important;
}

.bg-surface-container-highest {
  background-color: var(--surface-container-highest) !important;
}

.bg-primary-color {
  background-color: #000000 !important;
}

/* Custom Overrides for Grid Paddings */
.py-section-padding {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.pt-section-padding {
  padding-top: var(--section-padding);
}

.tracking-widest {
  letter-spacing: 0.1em !important;
  color: #000;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: #000000;
  border-bottom: 1px solid rgba(222, 191, 192, 0.3);
  transition: all 0.3s ease;
}

.main-nav.shadow-sm {
  /* background: rgba(249, 249, 249, 1); */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container-wrapper {
  min-height: 80px;
  transition: min-height 0.3s ease;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 0;
}

.nav-logo {
  height: 70px;
  object-fit: contain;
}

.nav-link-custom {
  color: #FFF;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0 !important;
}
.bento-card .font-label-sm {
    color: #fff !important;
    background: unset;
    -webkit-text-fill-color: unset;
}

.font-label-sm.btn-bento-light {
    background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
}

.bento-card .btn-bento-light {}

section.bg-primary-color.position-relative.py-section-padding.overflow-hidden.reveal-section.text-white.visible {
    background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
}

section.bg-primary-color.position-relative.py-section-padding.overflow-hidden.reveal-section.text-white.visible .font-label-sm {
    color: #fff;
}

section.bg-surface-container.py-5.border-bottom.border-outline-variant.reveal-section.custom-inline-style-42.visible .font-label-sm {
    color: #000 !important;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: #FFF;
}

.nav-link-custom.active {
  border-bottom: 2px solid #d9b878;
  color: #fff !important;
}

.nav-btn-mobile {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 28, 28, 0.8) 0%, rgba(26, 28, 28, 0.2) 60%, transparent 100%);
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* Trust Bar */
.trust-badges {
  color: var(--on-surface);
  filter: grayscale(100%);
  transition: filter 0.5s ease, opacity 0.5s ease;
  opacity: 0.4;
  gap: 20px 90px !important;
  justify-content: center !important;
}

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

.trust-badge-icon {
  font-size: 30px;
}

/* About Section */
.about-image-inner {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
  color: #000000;
  padding: 40px;
  max-width: 320px;
}

.about-link {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid var(--outline-variant);
  padding-bottom: 8px;
  display: inline-block;
  transition: border-color 0.3s;
}

.about-link:hover {
  border-color: var(--primary);
}

/* Bento Grid */
.bento-card {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 0;
  height: 500px;
}

.bento-card-wide {
  height: 400px;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.bento-card:hover .bento-img {
  transform: scale(1.05);
}
.service-wrap.bg-surface-container-high {
    padding-top: 80px;
}

section#services {
}

section#services {
    background: unset !important;
    padding-top: 0;
}

.bento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  color: white;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .bento-content-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.btn-bento-light {
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  border-radius: 0;
}

.btn-bento-light:hover {
  background: #000000;
}

.btn-bento-link {
  color: white;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  padding: 0 0 4px 0;
  cursor: pointer;
  transition: border-color 0.3s;
  text-transform: uppercase;
}

.btn-bento-link:hover {
  border-color: white;
}

/* CTA Section */
.cta-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  pointer-events: none;
}

.cta-pattern-line {
  width: 100%;
  height: 100%;
  border-left: 1px solid white;
  transform: rotate(12deg);
  opacity: 0.2;
}

.cta-form {
  background: white;
  padding: 8px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  gap: 8px;
}

@media (min-width: 576px) {
  .cta-form {
    flex-direction: row;
  }
}

.cta-input {
  border: none;
  padding: 16px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  flex-grow: 1;
  outline: none;
}

/* Footer */
.footer-logo {
  height: 64px;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: all 0.3s;
}

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

.footer-link {
  color: var(--on-surface-variant);
  transition: color 0.3s;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
}

.footer-link:hover {
  color: #000;
}

.footer-social-link {
  color: var(--on-surface-variant);
  transition: color 0.3s;
  text-decoration: none;
}

.footer-social-link:hover {
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Animations */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.reveal-section {
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(40px);
}

.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Services Page Styles */
.hero-service {
  position: relative;
  height: 614px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-service-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(50%);
  z-index: 0;
}

.hero-service-content {
  position: relative;
  z-index: 10;
}

.service-mastery-img-wrapper {
  aspect-ratio: 4/4;
  position: relative;
  background-color: var(--surface-container);
  overflow: hidden;
}

.service-mastery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-mastery-decor {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 192px;
  height: 192px;
  background-color: rgba(94, 0, 22, 0.05);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}

@media (min-width: 768px) {
  .service-mastery-decor {
    display: block;
  }
}

.bg-surface-container-low {
  background-color: #f3f3f3 !important;
}

.card-border {
  border: 1px solid rgba(138, 113, 111, 0.15);
}

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
}

.service-card {
  background-color: var(--surface-container-lowest);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-link {
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.service-card:hover .service-card-link {
  gap: 16px;
}

.service-card-icon {
  font-size: 36px;
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}

.bento-grid-secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  grid-auto-rows: 300px;
}

@media (min-width: 768px) {
  .bento-grid-secondary {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-item-2-col {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .bento-item-2-col {
    grid-column: span 2;
  }
}

.bento-secondary-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.bento-secondary-item:hover .bento-secondary-bg {
  transform: scale(1.05);
}

.bento-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
}

.btn-bento-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
  border-radius: 0;
  width: 100%;
  letter-spacing: 0.1em;
}

.btn-bento-outline:hover {
  background-color: var(--primary-fixed);
  color: var(--primary);
}

/* About Page Styles */
.hero-about {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-about-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 28, 28, 0.4) 0%, rgba(26, 28, 28, 0.7) 100%);
  z-index: 0;
}

.custom-divider {
  height: 1px;
  background-color: rgba(92, 95, 99, 0.2);
}

.about-feature-wrapper-1 {
  position: relative;
  overflow: hidden;
}

.about-feature-img-1 {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.7s ease;
}

.about-feature-wrapper-1:hover .about-feature-img-1 {
  filter: grayscale(0%);
}

.about-feature-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: white;
  padding: 32px;
  max-width: 80%;
  z-index: 2;
}

.about-feature-img-2 {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.leadership-img-wrapper {
  position: relative;
  z-index: 10;
}

.leadership-img-frame {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(94, 0, 22, 0.2);
  z-index: 0;
}



.btn-outline-dark-custom {
  background: transparent;
  color: var(--on-surface);
  border: 1px solid var(--secondary);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-dark-custom:hover {
  background: var(--surface-container-highest);
}

/* Contact Page Styles */
.contact-page-wrapper {
  padding-top: 140px;
  padding-bottom: var(--section-padding);
}

.contact-form-card {
  background-color: var(--surface-container-lowest);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 60px;
  }
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.form-section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.form-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--on-surface);
  margin: 0;
}

.contact-input-group {
  margin-bottom: 32px;
}

.contact-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}

.contact-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--secondary);
  padding: 8px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--on-surface);
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}

.contact-input:focus {
  border-bottom-color: var(--primary);
}

.contact-input::placeholder {
  color: var(--on-surface-variant);
  opacity: 0.7;
}

select.contact-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c5f63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px;
  padding-right: 24px;
  cursor: pointer;
}

textarea.contact-input {
  resize: none;
  min-height: 80px;
}

.file-upload-wrapper {
  position: relative;
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.file-upload-icon {
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.form-fine-print {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondary);
  opacity: 0.7;
  margin-top: 16px;
}

.info-box-right {
  background-color: var(--surface-container-high);
  padding: 32px;
  margin-bottom: 24px;
}

.info-box-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.info-box-icon {
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 20px;
}

.info-box-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
}

.info-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 12px;
}

.why-choose-us-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.why-choose-icon {
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 24px;
  margin-top: 2px;
}

.featured-portfolio-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-top: 48px;
}

.featured-portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(80%);
}

.featured-portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: white;
  padding: 24px 32px;
  max-width: 80%;
}

.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-gradient {
  background: linear-gradient(to right, rgba(26, 28, 28, 0.8) 0%, rgba(26, 28, 28, 0.2) 60%, transparent 100%);
}

/* Bento Grid */
.bento-card {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
}

.bento-card:hover img {
  transform: scale(1.05);
}

.overlay-grad {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Helpers */
.btn-primary-custom {
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
  color: white;
  padding: 16px 40px;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #be9358;
}

.section-padding {
  padding: 120px 0;
}

.carousel-caption {
  position: absolute;
  right: auto;
  bottom: auto;
  top: 50%;
  left: 0;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: left;
  width: 100%;
  transform: translateY(-50%);
  height: 100%;
  display: flex;
  align-items: center;
  background: #00000045;
}

.carousel-control-prev {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 4%;
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
  opacity: 1;
  border-radius: 8px;
}

.carousel-control-next {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 4%;
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
  opacity: 1;
  border-radius: 8px;
}

.card-border p {
  margin-bottom: 20px;
}

/* Auto-extracted inline styles */
.custom-inline-style-1 {
  letter-spacing: -0.05em;
}

.custom-inline-style-2 {
  padding: 12px 24px;
}

.custom-inline-style-3 {
  letter-spacing: 0.3em;
}

.custom-inline-style-4 {
  width: 96px;
  height: 4px;
  background-color: var(--tertiary-fixed);
  margin: 0 auto;
}

.custom-inline-style-5 {
  line-height: 1.8;
}

.custom-inline-style-6 {
  line-height: 1.8;
}

.custom-inline-style-7 {
  line-height: 1.8;
}

.custom-inline-style-8 {
  letter-spacing: 0.4em;
}

.custom-inline-style-9 {
  max-width: 900px;
  line-height: 1.3;
}

.custom-inline-style-10 {
  font-size: 48px;
}

.custom-inline-style-11 {
  font-size: 48px;
}

.custom-inline-style-12 {
  font-size: 48px;
}

.custom-inline-style-13 {
  z-index: 1;
}

.custom-inline-style-14 {
  line-height: 1.8;
}

.custom-inline-style-15 {
  width: 8px;
  height: 8px;
  background-color: var(--tertiary-fixed);
}

.custom-inline-style-16 {
  letter-spacing: 0.1em;
}

.custom-inline-style-17 {
  width: 8px;
  height: 8px;
  background-color: var(--tertiary-fixed);
}

.custom-inline-style-18 {
  letter-spacing: 0.1em;
}

.custom-inline-style-19 {
  width: 8px;
  height: 8px;
  background-color: var(--tertiary-fixed);
}

.custom-inline-style-20 {
  letter-spacing: 0.1em;
}

.custom-inline-style-21 {
  max-width: 600px;
  line-height: 1.8;
}

.custom-inline-style-22 {
  padding: 20px 48px;
  letter-spacing: 0.2em;
}

.custom-inline-style-23 {
  letter-spacing: -0.05em;
}

.custom-inline-style-24 {
  padding: 12px 24px;
}

.custom-inline-style-25 {
  line-height: 1.1;
}

.custom-inline-style-26 {
  line-height: 1.6;
}

.custom-inline-style-27 {
  padding: 16px 32px;
}

.custom-inline-style-28 {
  font-size: 28px;
}

.custom-inline-style-29 {
  font-size: 32px;
}

.custom-inline-style-30 {
  border-left: 2px solid var(--surface-container-high);
  line-height: 1.6;
}

.custom-inline-style-31 {
  font-size: 14px;
  line-height: 1.6;
}

.custom-inline-style-32 {
  font-size: 14px;
  line-height: 1.6;
}

.custom-inline-style-33 {
  font-size: 14px;
}

.custom-inline-style-34 {
  font-size: 14px;
}

.custom-inline-style-35 {
  font-size: 14px;
}

.custom-inline-style-36 {
  font-size: 24px;
}

.custom-inline-style-37 {
  letter-spacing: -0.05em;
}

.custom-inline-style-38 {
  padding: 12px 24px;
}

.custom-inline-style-39 {
  letter-spacing: 0.3em;
}

.custom-inline-style-40 {
  letter-spacing: 0.3em;
}

.custom-inline-style-41 {
  letter-spacing: 0.3em;
}

.custom-inline-style-42 {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: rgba(222, 191, 192, 0.1) !important;
}

.custom-inline-style-43 {
  font-size: 36px;
  color: #fff;
}

.custom-inline-style-44 {
  font-size: 10px;
  color: #fff;
}

.custom-inline-style-45 {
  line-height: 1.8;
}

.custom-inline-style-46 {
  line-height: 1.8;
}

.custom-inline-style-47 {
  max-width: 400px;
}

.custom-inline-style-48 {
  max-width: 550px;
}

.custom-inline-style-49 {
  color: #fff;
  font-size: 20px;
}

.custom-inline-style-50 {
  font-size: 20px;
}

.custom-inline-style-51 {
  letter-spacing: -0.05em;
}

.custom-inline-style-52 {
  padding: 12px 24px;
}
.call-btn i {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #c39756;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.call-btn:hover {
    background: transparent;
    color: #cfa764;
}

.call-btn i {
    /* font-size: 14px; */
}

ul.navbar-nav.d-flex.flex-row.align-items-center.gap-4 {
}

div#navMenu {flex-basis: unset !important;}

a.call-btn {
    color: #fff;
    margin-left: 30px;
}
.custom-inline-style-53 {
  margin-top: 80px;
}

.custom-inline-style-54 {
  letter-spacing: 0.2em;
}

.custom-inline-style-55 {
  height: 4px;
  width: 96px;
  background: #F3D891;
  background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
}

.custom-inline-style-56 {
  line-height: 1.8;
}

.custom-inline-style-57 {
  line-height: 1.8;
}

.custom-inline-style-58 {
  padding: 20px 40px;
}

.custom-inline-style-59 {
  height: 2px;
  width: 64px;
  background-color: var(--primary);
  margin: 0 auto 2rem auto;
}

.custom-inline-style-60 {
  max-width: 650px;
}

.custom-inline-style-61 {
  line-height: 1.6;
}

.custom-inline-style-62 {
  font-size: 16px;
}

.custom-inline-style-63 {
  line-height: 1.6;
}

.custom-inline-style-64 {
  font-size: 16px;
}

.custom-inline-style-65 {
  line-height: 1.6;
}

.custom-inline-style-66 {
  font-size: 16px;
}

.custom-inline-style-67 {
  line-height: 1.6;
}

.custom-inline-style-68 {
  font-size: 16px;
}

.custom-inline-style-69 {
  line-height: 1.6;
}

.custom-inline-style-70 {
  font-size: 16px;
}

.custom-inline-style-71 {
  line-height: 1.6;
}

.custom-inline-style-72 {
  font-size: 16px;
}

.custom-inline-style-73 {
  max-width: 350px;
}

.custom-inline-style-74 {
  padding: 12px 24px;
  border-radius: 0;
}

.custom-inline-style-75 {
  line-height: 1.6;
}

.custom-inline-style-76 {
  line-height: 1.6;
}

.custom-inline-style-77 {
  padding: 16px 0;
  border-radius: 0;
}

.custom-inline-style-78 {
  background-image: url('data:image/svg+xml,%3Csvg xmlns=\%22http://www.w3.org/2000/svg\%22 preserveAspectRatio=\%22none\%22 viewBox=\%220 0 100 100\%22%3E%3Cpath d=\%22M0 0 L100 100 M100 0 L0 100\%22 stroke=\%22currentColor\%22 stroke-width=\%220.1\%22/%3E%3C/svg%3E');
  background-size: cover;
}

.custom-inline-style-79 {
  letter-spacing: 0.3em;
}

.custom-inline-style-80 {
  max-width: 500px;
}

.custom-inline-style-81 {
  padding: 20px 48px;
}



/* portfolio */

.portfolio_page {
  padding: 120px 0;
}

.project_main>a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
}

.project_main>a img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project_main>a::after {
  content: "+";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.project_main>a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.project_main>a:hover img {
  transform: scale(1.05);
}


/* portfolio */
.ticker-wrapper{
    overflow:hidden;
    width:100%;
    background: radial-gradient(circle, rgba(243, 216, 145, 1) 0%, rgba(189, 143, 79, 1) 100%);
    color:#fff;
    padding: 5px 0;
}

.ticker-track{
    display:flex;
    width:max-content;
    gap:40px;
    white-space:nowrap;
    animation:ticker 20s linear infinite;
}

@keyframes ticker{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
h1 {
    font-size: 70px;
}
.custom-inline-style-56,
.custom-inline-style-57 {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

 /* Mobile Sidebar Menu Styles */
    .mobile-sidebar-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .mobile-sidebar-overlay.active {
      display: block;
      opacity: 1;
    }

    .mobile-sidebar {
      position: fixed;
      top: 0;
      left: -320px;
      width: 320px;
      height: 100%;
      background: #ffffff;
      z-index: 10000;
      overflow-y: auto;
      transition: left 0.3s ease;
      box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
      padding: 10px;
    }

    .mobile-sidebar.open {
      left: 0;
    }

    .mobile-sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 20px;
      border-bottom: 2px solid #f0f0f0;
      margin-bottom: 20px;
    }

    .mobile-sidebar-header .sidebar-logo {
      max-height: 50px;
      width: auto;
    }

    .mobile-sidebar-close {
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: #333;
      padding: 5px 10px;
      transition: transform 0.3s ease;
    }

    .mobile-sidebar-close:hover {
      transform: rotate(90deg);
    }

    .mobile-sidebar .nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mobile-sidebar .nav-list li {
      margin-bottom: 5px;
    }

    .mobile-sidebar .nav-list li a {
      display: block;
      padding: 12px 15px;
      color: #333;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      border-radius: 8px;
      transition: all 0.3s ease;
      font-family: 'Manrope', sans-serif;
    }

    .mobile-sidebar .nav-list li a:hover,
    .mobile-sidebar .nav-list li a.active {
      background: #f5f5f5;
      color: #c9a84c;
      padding-left: 25px;
    }

    .mobile-sidebar .nav-list li a i {
      margin-right: 12px;
      width: 20px;
      color: #c9a84c;
    }

    .mobile-sidebar .sidebar-buttons {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 2px solid #f0f0f0;
    }

    .mobile-sidebar .sidebar-buttons .btn-sidebar {
      display: block;
      width: 100%;
      padding: 12px;
      margin-bottom: 10px;
      text-align: center;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      font-family: 'Manrope', sans-serif;
    }

    .mobile-sidebar .sidebar-buttons .btn-estimate {
      background: #c9a84c;
      color: #ffffff;
    }

    .mobile-sidebar .sidebar-buttons .btn-estimate:hover {
      background: #b8973a;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
    }

    .mobile-sidebar .sidebar-buttons .btn-call {
      background: transparent;
      color: #333;
      border: 2px solid #c9a84c;
    }

    .mobile-sidebar .sidebar-buttons .btn-call:hover {
      background: #c9a84c;
      color: #ffffff;
      transform: translateY(-2px);
    }

    .mobile-sidebar .sidebar-contact-info {
      margin-top: 20px;
      padding: 15px;
      background: #f8f8f8;
      border-radius: 8px;
    }

    .mobile-sidebar .sidebar-contact-info p {
      margin: 5px 0;
      font-size: 14px;
      color: #666;
      font-family: 'Manrope', sans-serif;
    }

    .mobile-sidebar .sidebar-contact-info i {
      color: #c9a84c;
      margin-right: 10px;
      width: 5px;
    }

    /* Hide scrollbar for sidebar */
    .mobile-sidebar::-webkit-scrollbar {
      width: 5px;
    }

    .mobile-sidebar::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    .mobile-sidebar::-webkit-scrollbar-thumb {
      background: #c9a84c;
      border-radius: 10px;
    }

    /* Mobile Toggle Button */
    .nav-btn-mobile {
      background: none;
      border: none;
      color: #fff;
      padding: 5px 10px;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .nav-btn-mobile:hover {
      color: #c9a84c;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .mobile-sidebar {
        width: 280px;
        left: -280px;
      }
    }
@media (max-width: 767px) {
    
.d-block.w-100 {
}
.carousel-item > img {
  height: 70vh;
}
.hero-section {
  height: auto;
}
h1 {
  font-size: 37px;
}
.btn-primary-custom {
  width: 80% !important;
  display: inline-block;
  margin: 0 auto;
  margin-top: 10px;
}
.d-flex.gap-3 {
}
.carousel-caption .d-flex.gap-3 {
  display: block !important;
}
.carousel-caption {
  top: 330px;
  padding-top: 100px;
  text-align: center;
}
.container.position-relative.text-white {
  height: 100%;
}
.carousel-control-next {
  width: 40px;
  height: 40px;
}
.carousel-control-prev {
  width: 40px;
  height: 40px;
}
  .leadership-img-frame {
    top: -16px;
    left: -16px;
  }
}
    @media (max-width: 576px) {
      .mobile-sidebar {
        width: 260px;
        left: -260px;
      }
    }
.mobile-sidebar .sidebar-contact-info p {
  font-size: 11px;
}

img.image.wp-image-101 {
    width: 50%;
}