.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Playfair Display";--e-global-typography-primary-font-weight:400;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.7em;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap");

:root {
  --e-gold: #c8a96e;
  --e-dark: #0a0a0a;
  --e-dark2: #1a1a1a;
  --e-gray: #666;
  --e-light: #f5f5f5;
}

body { overflow-x: hidden; }

/* Marquee */
.skills-marquee { overflow: hidden; white-space: nowrap; }
.skills-track {
  display: inline-flex; gap: 48px;
  animation: marquee 25s linear infinite;
}
.skills-track span {
  font-size: 13px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: #999;
  display: inline-flex; align-items: center; gap: 48px;
}
.skills-track span::after { content: "✦"; color: var(--e-gold); font-size: 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Service cards */
.service-card {
  background: #fff; padding: 48px 40px;
  border: 1px solid #eee; transition: all 0.3s ease;
  position: relative;
}
.service-card:hover { border-color: var(--e-gold); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.service-card .service-num {
  font-family: "Playfair Display", serif; font-size: 3rem; font-weight: 400;
  color: #eee; line-height: 1; margin-bottom: 24px;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: #ddd; }
.service-card h3 { font-family: "Playfair Display", serif; font-size: 1.35rem; font-weight: 400; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; line-height: 1.7; color: #666; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.service-tags span {
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: #666; border: 1px solid #e8e8e8; padding: 4px 12px;
}

/* Portfolio cards */
.portfolio-card {
  position: relative; overflow: hidden; border-radius: 4px;
  cursor: pointer; transition: transform 0.3s ease;
}
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-card .p-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
  opacity: 0; transition: opacity 0.4s ease;
}
.portfolio-card:hover .p-overlay { opacity: 1; }
.portfolio-card .p-cat {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--e-gold); margin-bottom: 6px;
}
.portfolio-card .p-title { font-family: "Playfair Display", serif; font-size: 1.3rem; color: #fff; }

/* Process steps */
.process-step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid #eee; transition: padding 0.3s ease;
}
.process-step:first-child { border-top: 1px solid #eee; }
.process-step:hover { padding-left: 16px; }
.process-step .step-num {
  font-family: "Playfair Display", serif; font-size: 0.9rem; color: #ccc;
  min-width: 28px; padding-top: 3px; transition: color 0.3s;
}
.process-step:hover .step-num { color: var(--e-gold); }
.process-step h4 { font-family: "Playfair Display", serif; font-size: 1.15rem; font-weight: 400; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; line-height: 1.65; color: #666; margin: 0; }

/* Stats */
.stat-item { text-align: center; padding: 20px; }
.stat-item .stat-num {
  font-family: "Playfair Display", serif; font-size: 3.2rem; font-weight: 600;
  color: #fff; line-height: 1; margin-bottom: 8px;
}
.stat-item .stat-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: #999;
}

/* Testimonials */
.testi-card {
  background: #fff; padding: 44px 36px; border: 1px solid #eee;
  position: relative; transition: border-color 0.3s;
}
.testi-card:hover { border-color: var(--e-gold); }
.testi-card .testi-quote {
  font-family: "Playfair Display", serif; font-size: 3rem;
  color: #eee; line-height: 1; margin-bottom: 20px;
}
.testi-card .testi-text {
  font-family: "Playfair Display", serif; font-size: 0.95rem;
  line-height: 1.75; color: #333; font-style: italic; margin-bottom: 28px;
}
.testi-card .testi-author { display: flex; align-items: center; gap: 12px; }
.testi-card .testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-size: 1rem; color: #999;
}
.testi-card .testi-name { font-size: 0.88rem; font-weight: 600; }
.testi-card .testi-role { font-size: 0.75rem; color: #999; margin-top: 2px; }
.testi-card .stars {
  position: absolute; top: 40px; right: 36px;
  color: var(--e-gold); font-size: 0.8rem;
}

/* Section tags */
.section-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--e-gold);
  display: inline-flex; align-items: center; gap: 12px;
}
.section-tag::before { content: ""; display: inline-block; width: 32px; height: 1px; background: var(--e-gold); }

/* Footer */
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #999; margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 0.88rem; color: #666;
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

/* Reveal animation */
.e-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.e-reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 767px) {
  .stat-item .stat-num { font-size: 2.4rem; }
  .service-card { padding: 32px 28px; }
}/* End custom CSS */