/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 22 2025 | 06:14:38 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* ============================== */
/* Work With Us Glassmorphic Hero */
/* ============================== */
/* Remove top padding/margin above the blog hero */
.work-with-us-hero.glass-hero {
  position: relative;
  width: 100vw;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: url('/wp-content/uploads/2025/12/work-with-us-page_blue-neural-network_hero-section-scaled.png') center/cover no-repeat;
	
    /* Fix full-width issues */
  margin-top: 0 !important;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
}

.work-with-us-hero.glass-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: inherit;
  filter: brightness(0.6) blur(2px);
  z-index: 0;
}

/* Glass Card */
.work-with-us-hero-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column; /* stack text vertically */
  align-items: center;
  max-width: 700px;
  width: 90%;
  padding: 2rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  gap: 1.5rem;
  margin: 7.5rem auto;
}

/* Text styling */
.work-with-us-hero-text {
  color: #f8f8f4;
    display: flex;
  flex-direction: column;
  align-items: center; /* center everything horizontally */
  text-align: center;  /* fallback for block-level children like <p> */
  max-width: 600px;    /* optional: constrain width for readability */
  margin: 0 auto;
}

.work-with-us-hero__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}

.work-with-us-hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.2;
  margin-top: 0;        /* remove default top margin */
  margin-bottom: 0.75rem;
}

.work-with-us-hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 60ch;
  width: 100%;        /* fill parent */
  text-align: center; /* ensure centered text */
  margin: 0;          /* remove default margin if needed */
  color: #f8f8f4;
}

/* Optional image inside card */
.work-with-us-hero-image-top {
  width: 675px;
  max-width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-top: 1rem;
}

.work-with-us-hero-image-top img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Container for buttons inside hero */
.work-with-us-hero-buttons {
  display: flex;
  gap: 1rem; /* spacing between buttons */
  margin-top: 1.5rem;
}

/* Shared button styles */
.work-with-us-btn {
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}

/* PRIMARY button: solid */
.work-with-us-btn--primary {
  background-color: #31D200; /* solid green */
  color: #F8F8F4; /* text color */
  border: 2px solid #31D200;
  font-family: 'Montserrat', sans-serif !important;
}

.work-with-us-btn--primary:hover {
  background-color: #27a800; /* slightly darker green */
  border-color: #27a800;
  transform: translateY(-2px);
}

/* SECONDARY button: outline */
.work-with-us-btn--secondary {
  background-color: transparent;
  color: #F8F8F4;
  border: 2px solid #F8F8F4;
  font-family: 'Montserrat', sans-serif !important;
}

.work-with-us-btn--secondary:hover {
  background-color: #F8F8F4; /* fills with light color */
  color: #111; /* dark text for contrast */
  border-color: #F8F8F4;
  transform: translateY(-2px);
}


/* Initial state before animation */
.work-with-us-hero-card,
.work-with-us-hero-image-top,
.work-with-us-hero-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Active state after animation */
.work-with-us-hero-card.in-view,
.work-with-us-hero-image-top.in-view,
.work-with-us-hero-text.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .work-with-us-hero-card {
    padding: 1.5rem;
    width: 95%;
	max-width: 600px;
	margin: 2.0rem auto; 
  }

  .work-with-us-hero__title {
    font-size: 1.9rem;
  }

  .work-with-us-hero__subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .work-with-us-hero-card {
    max-width: 90%;   /* almost full width for small devices */
    padding: 1.25rem;
	margin: 2.5rem auto; 
  }
}

@media (max-width: 480px) {
  .work-with-us-hero-card {
	max-width: 90%;
    padding: 1rem;
	margin: 3.0rem auto; 
  }

  .work-with-us-hero__title {
    font-size: 1.65rem;
  }

  .work-with-us-hero__subtitle {
    font-size: 0.9rem;
  }
}
/* Work With Us Glassmorphic Hero */
/* ============================== */
/* Work With Us Booking Section */
/* ============================== */
.work-with-us-booking-section {
  background-color: #f4f0eb; /* light, warm, inviting */
  color: #101820; /* dark text for contrast */
  padding: 60px 20px;
  text-align: center;
	
  /* Force full viewport width */
  width: 100%;
  max-width: 100% !important; /* override theme constraints */
  box-sizing: border-box; /* ensure padding is included */
  margin: 0 auto !important;        /* remove any inherited margins */
}

/* CONTAINER CONTENT */
.work-with-us-booking-content {
  max-width: 700px; /* keeps content narrow for readability */
  margin: 0 auto;   /* centers content */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* HEADING */
.work-with-us-booking__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.work-with-us-booking__highlight {
  font-family: 'Playfair Display', serif !important;
  color: #31D200; /* your primary green for emphasis */
  font-weight: 700; /* optional: make it bolder */
}


.work-with-us-booking__subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  color: #101820; /* slightly softer than black */
}

/* CALENDLY EMBED */
.work-with-us-calendly-embed {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1); /* subtle depth */
}

/* TRUST MICROCOPY */
.work-with-us-booking__trust-note {
  font-size: 0.95rem;
  color: #101820;
  margin-top: 1.5rem;
}

/* Initial state */
.work-with-us-booking-content > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Active state */
.work-with-us-booking-content.animate > * {
  opacity: 1;
  transform: translateY(0);
}

/* Optional staggered animation */
.work-with-us-booking-content.animate > *:nth-child(1) {
  transition-delay: 0s;
}
.work-with-us-booking-content.animate > *:nth-child(2) {
  transition-delay: 0.1s;
}
.work-with-us-booking-content.animate > *:nth-child(3) {
  transition-delay: 0.2s;
}
.work-with-us-booking-content.animate > *:nth-child(4) {
  transition-delay: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .work-with-us-booking__title {
    font-size: 2rem;
  }
  
  .work-with-us-booking__subtitle {
    font-size: 1rem;
  }

  .work-with-us-booking-section {
    padding: 4rem 1rem;
  }
	
    /* Make Calendly embed narrower on mobile */
  .work-with-us-calendly-embed iframe {
    max-width: 100%;
    height: 500px; /* reduce height slightly */
  }
}
/* Work With Us Booking Section */
/* ============================== */
/* Work With Us Inquiry Section */
/* ============================== */
/* Parallax overlay for Work With Us Inquiry Section */
.work-with-us-inquiry-section {
  position: relative; /* needed for pseudo-element */
  overflow: hidden;   /* prevent overflow from fixed pseudo-element */
  padding-top: 60px;     /* Keep existing top padding */
  padding-left: 20px;    /* Keep existing horizontal padding */
  padding-right: 20px;   /* Keep existing horizontal padding */
  padding-bottom: 0px;   /* Remove bottom padding */
  text-align:center;
}

.work-with-us-inquiry-section::before {
  content: "";
  position: fixed; /* parallax effect */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(
      rgba(255, 255, 255, 0.70), /* optional: adjust opacity to taste */
      rgba(255, 255, 255, 0.70)
    ),
    url('/wp-content/uploads/2025/12/work-with-us-page_white-hallway_inquiry-section-scaled.png'); /* replace with your image */
  background-size: cover;
  background-position: center;
  z-index: -1;       /* behind all content */
  pointer-events: none; /* ensure content is clickable */
}

.work-with-us-inquiry-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Heading */
.work-with-us-inquiry__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.work-with-us-inquiry__highlight {
  font-family: 'Playfair Display', serif !important;
  color: #31D200; /* primary green accent */
  font-weight: 700; /* optional: make it bolder */
}

.work-with-us-inquiry__subtitle {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Initial state */
.work-with-us-inquiry-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

/* Active state */
.work-with-us-inquiry-content.animate > * {
  opacity: 1;
  transform: translateY(0);
}

/* Optional staggered animation */
.work-with-us-inquiry-content.animate > *:nth-child(1) {
  transition-delay: 0s;
}
.work-with-us-inquiry-content.animate > *:nth-child(2) {
  transition-delay: 0.1s;
}
.work-with-us-inquiry-content.animate > *:nth-child(3) {
  transition-delay: 0.2s;
}
.work-with-us-inquiry-content.animate > *:nth-child(4) {
  transition-delay: 0.3s;
}
.work-with-us-inquiry-content.animate > *:nth-child(5) {
  transition-delay: 0.4s;
}


/* Responsive */
@media (max-width: 768px) {
  .work-with-us-inquiry__title {
    font-size: 1.75rem;
  }
  
  .work-with-us-inquiry__subtitle {
    font-size: 0.95rem;
  }
}
/* Work With Us Inquiry Section */

