.elementor-25 .elementor-element.elementor-element-3552021{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-25 .elementor-element.elementor-element-48f1be1{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-48f1be1 *//* Color Variables */
:root {
  --primary: #0EC3CA;
  --secondary: #C7FF50;
  --foreground: #0F172A;
  --foreground-muted: #64748B;
  --background: #FFFFFF;
  --background-alt: #F8FAFC;
  --border-muted: rgba(226, 232, 240, 0.2);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 4rem 0 3rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 5rem 0 4rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
  }
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-wrapper {
  position: relative;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-accent {
  display: block;
  color: var(--primary);
}

.hero-accent-line {
  width: 5rem;
  height: 0.375rem;
  background-color: var(--secondary);
  border-radius: 9999px;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1rem;
  color: var(--foreground-muted);
  margin: 0;
  max-width: 28rem;
  font-weight: 500;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.cta-button {
  background-color: var(--secondary);
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  border-radius: 0.25rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(199, 255, 80, 0.2);
}

.cta-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.25rem;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-link:hover {
  color: var(--foreground);
  border-bottom-color: var(--foreground);
}

/* Hero Image */
.hero-image {
  display: none;
}

@media (min-width: 768px) {
  .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(14, 195, 202, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.image-wrapper:hover .headshot {
  box-shadow: 0 30px 60px rgba(14, 195, 202, 0.25);
  transform: translateY(-4px);
}

/* Accent Element Behind Image */
.image-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: linear-gradient(135deg, rgba(14, 195, 202, 0.1), rgba(199, 255, 80, 0.05));
  border-radius: 0.75rem;
  z-index: 1;
  border: 1px solid rgba(14, 195, 202, 0.2);
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .cta-button,
  .cta-link {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b141caa */.featured-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
}

.featured-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--foreground-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.featured-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--foreground);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-02e2e9a */.stats-section {
  padding: 2.5rem 0;
  background-color: var(--background-alt);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  border-left: 2px solid var(--primary);
  padding-left: 1rem;
}

.stat-number-large {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .stat-number-large {
    font-size: 2.25rem;
  }
}

.stat-text {
  font-size: 0.8125rem;
  color: var(--foreground-muted);
  margin: 0;
  font-weight: 500;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-12fa403 */.portfolio-section {
  padding: 2.25rem 0;
}

@media (min-width: 768px) {
  .portfolio-section {
    padding: 3rem 0;
  }
}

@media (min-width: 1024px) {
  .portfolio-section {
    padding: 2.75rem 0;
  }
}


.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.portfolio-card {
  background-color: var(--background);
  border: 1px solid var(--border-muted);
  padding: 1.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.portfolio-card:nth-child(even) {
  margin-top: 1rem;
}

.portfolio-card:hover {
  border-color: var(--primary);
  background-color: var(--background-alt);
  box-shadow: 0 4px 12px rgba(14, 195, 202, 0.1);
}

.card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.portfolio-card:hover .card-title {
  color: var(--primary);
}

.card-description {
  font-size: 0.8125rem;
  color: var(--foreground-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.card-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-link:hover {
  gap: 0.625rem;
}

.arrow {
  display: inline-block;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-47a56bc *//* Color Variables */
:root {
  --primary: #0EC3CA;
  --secondary: #C7FF50;
  --foreground: #0F172A;
  --foreground-muted: #64748B;
  --background: #FFFFFF;
  --background-alt: #F8FAFC;
  --border-muted: rgba(226, 232, 240, 0.2 );
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* YouTube Section */
.youtube-section {
  padding: 3rem 0;
  background-color: var(--background);
}

@media (min-width: 768px) {
  .youtube-section {
    padding: 4rem 0;
  }
  @media (min-width: 1024px) {
  .youtube-section {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .youtube-wrapper {
    align-items: flex-start;
  }
}
}

/* YouTube Wrapper - Grid Layout */
.youtube-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center; /* ← CHANGE THIS */
}

@media (min-width: 768px) {
  .youtube-wrapper {
    grid-template-columns: 1fr 0.9fr;
    gap: 2.5rem;
  }
}


/* Text Block */
.youtube-text-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.youtube-title {
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--foreground);
  margin: 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .youtube-title {
    font-size: 1.5rem;
  }
}

.youtube-description {
  font-size: 0.875rem;
  color: var(--foreground-muted);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

@media (min-width: 768px) {
  .youtube-description {
    font-size: 0.9375rem;
  }
}

.cta-button {
  background-color: var(--secondary);
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  border-radius: 0.25rem;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(199, 255, 80, 0.2);
}

/* Video Block */
.youtube-video-block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.video-container {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 16;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(14, 195, 202, 0.15);
  transition: all 0.3s ease;
}

.video-container:hover {
  box-shadow: 0 15px 40px rgba(14, 195, 202, 0.25);
}

.video-container iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .youtube-wrapper {
    gap: 1.5rem;
  }

  .youtube-text-block {
    gap: 0.75rem;
  }

  .youtube-title {
    font-size: 1.25rem;
  }

  .youtube-description {
    font-size: 0.8125rem;
  }

  .video-container {
    max-width: 100%;
    max-height: 500px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e9794bf */.portfolio-section {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .portfolio-section {
    padding-top: 2.25rem;
    padding-bottom: 3rem;
  }
}


.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.portfolio-card {
  background-color: var(--background);
  border: 1px solid var(--border-muted);
  padding: 1.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.portfolio-card:nth-child(even) {
  margin-top: 1rem;
}

.portfolio-card:hover {
  border-color: var(--primary);
  background-color: var(--background-alt);
  box-shadow: 0 4px 12px rgba(14, 195, 202, 0.1);
}

.card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.portfolio-card:hover .card-title {
  color: var(--primary);
}

.card-description {
  font-size: 0.8125rem;
  color: var(--foreground-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.card-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-link:hover {
  gap: 0.625rem;
}

.arrow {
  display: inline-block;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c0abdb6 */.contact-section {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .contact-section {
    padding-top: 2.25rem;
    padding-bottom: 3rem;
  }
}


.contact-content {
  max-width: 32rem;
}

.contact-subtitle {
  font-size: 0.9375rem;
  color: var(--foreground-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-muted);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background-color: var(--background);
  color: var(--foreground);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 195, 202, 0.1);
}

.contact-form textarea {
  resize: none;
}

.contact-divider {
  height: 1px;
  background-color: var(--border-muted);
  margin: 2rem 0;
}

.contact-email {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-label {
  font-size: 0.8125rem;
  color: var(--foreground-muted);
  margin: 0;
  font-weight: 500;
}

.email-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.email-link:hover {
  gap: 0.75rem;
}/* End custom CSS */