* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "HelveticaNeue", sans-serif;
  font-weight:400;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.loader {
  position: fixed;
  z-index: 2;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

.loader__box {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader__box-door {
  width: 60%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.loader__box-door--right {
  left: auto;
  right: 0;
}

.u-bg--black {
  background-color: var(--black, #000);
}

.u-bg--orange {
  background-color: var(--orange, #f40);
}

.u-bg--white {
  background-color: var(--white, #fff);
}

.u-hide {
  display: none;
}
.intro {
  position: relative;
  overflow: hidden;
}

.intro__inner-section {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 1;
}

.staggered-blur {
  opacity: 0;
}

.staggered-blur.show {
  opacity: 1;
}

.staggered-blur .word {
  display: inline-block;
  filter: blur(20px);
  opacity: 0.5;
}

.body-content {
  opacity: 0;
  text-align: center;
  color: rgb(255, 255, 255);
}

body.loaded .body-content {
  opacity: 1;
  transition: opacity 0.1s ease;
}

body.loaded #loader {
  display: none;
}

/* Header */
.header {
  background-color: #000;
  color: white;
  padding: 26px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1;
}

.logo {
  height: 30px;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.tagline {
  font-size: 16px;
  font-weight: 300;
}

/* New Gradient Hero Section */
.gradient-hero {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
  color: white;
  z-index: 0;
}

.gradient-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/intro-bg-full.png");
  background-size: cover;
  background-repeat: repeat-x;
  background-position: 0 0;
  z-index: -1;
  filter: blur(5px);
  transform: scale(1.05);
  animation: scrollBackground 20s linear infinite;
}

@keyframes scrollBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1000px 0;
  }
}

.gradient-hero h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  text-align: center;
}

.gradient-hero .white-text {
  color: #ffffff;
  text-align: center;
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.calendly-embed-container iframe {
  border-radius: 12px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 69, 0, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: #000000;
}

/* Calendly styling injection */
.calendly-popup-content,
.calendly-overlay {
  background: #ffffff !important;
}

/* Add custom CSS variables for Calendly theming */
:root {
  --calendly-primary-color: #ff4500;
  --calendly-secondary-color: #000000;
  --calendly-text-color: #ffffff;
  --calendly-background-color: #000000;
  --calendly-border-color: rgba(255, 69, 0, 0.2);
}

.gradient-hero p {
  font-size: 30px;
  color: #ffffff;
  margin: 40px auto;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.14px;
}

.gradient-hero p:first-child {
  margin: 0 auto 0px;
}

.gradient-hero .cta-button {
  display: inline-block;
  background: #ff4500;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 69, 0, 0.4);
}

.gradient-hero .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 69, 0, 0.6);
}

.hero-text {
  margin-top: 100px;
}

.hero-text h2 {
  color: #ffffff;
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 32px;
  text-align: left;
  line-height: 93.628%;
  letter-spacing: -0.4px;
}

/* What WE DO */
.barbarian-bridges {
  background: linear-gradient(to bottom right, #181818, #000000);
  padding-top: 40px;
  line-height: normal;
}

.barbarian-bridges {
  background: linear-gradient(to bottom, #000000 0%, #2a2a2a 40%, #000000 100%);
  padding-top: 40px;
  line-height: normal;
}

.barbarian-bridges h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 400;
}

.barbarian-bridges .content {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 30px 0px;
}

.barbarian-bridges .left-content {
  padding-top: 60px 0px;
  width: 65%;
}

.barbarian-bridges .right-content {
  color: rgb(255, 255, 255);
}

.barbarian-bridges p {
  font-size: 16px;
  color: rgb(255, 255, 255);
  margin-bottom: 24px;
}

.barbarian-bridges .right-content p {
  color: rgb(255, 255, 255);
}

.methodology-items {
  margin-top: 32px;
}

.barbarian-bridges .method-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.barbarian-bridges .method-item p {
  font-size: 12px;
  color: #ffffff;
  margin-bottom: 20px;
}

.capabilities-lists {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
}

.barbarian-bridges .capability-list {
  list-style: none;
  font-size: 16px;
  line-height: 120%;
}

.barbarian-bridges .capability-list li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  color: rgb(255, 255, 255);
}

.barbarian-bridges .capability-list li:before {
  content: "";
  width: 13px;
  height: 13px;
  background-color: #ff4500;
  position: absolute;
  left: 0;
  top: 1px;
}

/*tech stack infooooooooo*/
.tech-stack-info {
  font-size: 12px;
  display: grid;
  grid-template-columns: 45% 55%;
}

.tech-stack-item .mobile-only {
  display: none;
}

.tech-stack-item-wrapper {
  border-right: #8b8b8b 1px solid;
}
.tech-stack-item-wrapper p {
  font-size: 16px;
}

.tech-stack-item {
  padding: 0px 40px;
}

.tech-stack-item-wrapper:first-of-type .tech-stack-item {
  padding-left: 0;
}

.tech-stack-item.logos {
  padding-right: 0px;
}

.tech-stack-left {
  display: flex;
}

.platform-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.platform-icons .logos {
  height: auto;
  width: 120px;
}

.platform-icons .logos.two {
  width: 80px;
}

.platform-icons .logos.three {
  width: 120px;
}

.platform-icons .logos.four {
  height: auto;
  width: 120px;
}

.platform-icons .logos.five {
  width: 60px;
}

.tech-stack-info h1 {
  font-weight: 400;
  margin-bottom: 16px;
}

.capability-list {
  list-style: none;
  font-size: 12px;
}

.capability-list li {
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
  color: white;
}

/*AEM info section*/
.aem-info-banner {

  border-bottom: #ccc solid 0.8px;
  background-color: #000;
  color: white;
  padding: 20px 0;
}

.aem-info-banner .aem-info-items {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.aem-info-banner .aem-info-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0px;
  font-size: 16px;
  max-width: fit-content;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.aem-info-banner .aem-info-item h1 {
  margin-right: 4px;
}
.aem-info-item p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* .aem-info-banner .aem-info-item.sub-text p {
  width: 65%;
} */

.aem-info-banner .aem-info-item img {
  height: 40px;
  object-fit: contain;
}

/* How We Do It Section */

.how-we-do {
  background-color: #000;
    border-top: #ccc solid 0.8px;
  color: white;
}
.how-we-do-wrapper {
  padding: 40px 0px;
}

.how-we-do h3 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 0px;
}

.process-grid {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  z-index: 0;
  padding:30px 0;
}

.process-item {
  width: 50%;
  padding: 0px 40px;
  position: relative;
  z-index: 2;
}

.process-item:first-child {
  padding-left: 0px;
}

.process-item:last-child {
  padding-right: 0px;
}

.process-item h1 {
  color: #ff4500;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.606px;
  margin-bottom: 12px;
}

.process-item h3 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: normal;
  letter-spacing: -0.26px;
}

.process-item p {
  font-size: 16px;
  color: #ffffff;
  line-height: normal;
  font-weight: 400;
}

/* Footer Animation */
.stepMask {
  width: 100%;
  height: 100px;
  z-index: 3;
  display: flex;
  position: relative;
}
.stepMask .step {
  width: 25%;
  background-color: #000000;
  transition: height 0.55s ease;
}
.stepMask .step1 {
  height: 90px;
}
.stepMask .step2 {
  height: 40px;
}
.stepMask .step3 {
  height: 90px;
}
.stepMask .step4 {
  height: 20px;
}

/* Footer Section */
.footer {
  position: relative;
  color: #fff;
  text-align: left;
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 2;
  margin: 40px 0px;
}

footer #gradientBG {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
}

#gradientBG {
  position: relative;
  width: 100%;
  height: 100%; /* or fixed height if you want */
  overflow: hidden;
}

#gradient-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* push behind */
  --gradient-color-1: #eb4224;
  --gradient-color-2: #ff5600;
  --gradient-color-3: #ff4400;
  --gradient-color-4: #ff772e;
}

.footer-content {
  margin: 40px 0px;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-top p {
  font-size: 30px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.459px;
}

.footer-bottom {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-left p {
  font-size: 16px;
  font-weight: 400;
}

.footer-left h2 {
  font-weight: 400;
  font-size: 72px;
  line-height: normal;
}

.footer-middle {
  display: flex;
  gap: 20px;
}

.footer-middle a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid;
  font-weight: 300;
}

.footer-right {
  text-align: right;
  letter-spacing: -0.035px;
  line-height: 134%;
  font-weight: 400;
  font-size: 16px;

  align-items: stretch;
}

.footer-right .email {
  text-decoration: underline;
  cursor: pointer;
  color: #ffffff;
}

.label {
  flex: 1;
}

.calendly-embed-container iframe {
  border-radius: 12px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 69, 0, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1140px) {
  .gradient-hero .white-text {
    font-size: 52px;
  }

  .gradient-hero p {
    font-size: 24px;
  }

  .hero-text h2 {
    font-size: 52px;
  }

  .ai-style-change-4 {
    margin: 0px 20px;
  }

  .barbarian-bridges p {
    font-size: 16px;
  }

  .stat-item .label {
    font-size: 16px;
  }

  .barbarian-bridges .right-content p {
    font-size: 16px;
  }

  .barbarian-bridges .capability-list {
    font-size: 16px;
  }

  .how-we-do {
    padding-bottom: 40px;
  }

  .platform-icons {
    gap: 20px;
  }

  .platform-icons .logos {
    height: 40px;
    width: 80px;
  }

  .platform-icons .logos.two {
    width: 50px;
  }

  .platform-icons .logos.three {
    width: 100px;
  }

  .platform-icons .logos.four {
    height: 60px;
    width: 90px;
  }

  .platform-icons .logos.five {
    width: 40px;
  }

  .process-item p {
    font-size: 16px;
  }

  .aem-info-banner .aem-info-items {
    gap: 10px;
  }

  .process-grid {
  	padding:30px 0;
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px;
  }

  .process-item {
    width: 100%;
    padding: 0px;
  }

  .footer-right {
    font-size: 16px;
  }

  .barbarian-bridges .left-content {
    width: 100%;
  }

  .footer-top-edge {
    display: none;
  }

  .footer-content {
    margin-top: 40px;
  }

  .footer-left h2 {
    font-size: 52px;
  }
}

@media (max-width: 1024px) {
  .how-we-do {
    padding: 0px 20px;
  }

  .platform-icons img {
    height: 40px;
    width: 60px;
  }

  #Adobe {
    height: 40px;
    width: 80px;
  }

  #webflow {
    height: 70px;
    width: 100px;
  }
}

@media (max-width: 1023px) {
  .barbarian-bridges .content {
    grid-template-columns: auto;
  }
}

@media (max-width: 921px) {
  .aem-info-banner .aem-info-item {
    font-size: 14px;
  }

  .aem-info-banner .aem-info-item img {
    width: 110px;
  }

  .aem-info-item h1 {
    font-size: large;
  }

  .tech-stack-info {
    grid-template-columns: 50% 50%;
  }

  .tech-stack-item .desktop-only {
    display: none;
  }

  .tech-stack-item .mobile-only {
    display: block;
  }

  .tech-stack-item .mobile-only p {
    margin-bottom: 4px;
  }

  .tech-stack-item {
    padding: 0px 20px;
  }

  .platforms-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .platform-icons {
    flex-direction: column;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .gradient-hero h1 {
    font-size: 48px;
  }

  .gradient-hero p {
    font-size: 16px;
  }

  .gradient-hero {
    padding: 80px 24px 100px 24px;
  }

  .footer h1 {
    font-size: 32px;
  }
  .mission h2 {
    font-size: 32px;
  }

  .what-we-do .content,
  .barbarian-bridges .content .tech-capabilities .content,
  .how-we-do-it-white .content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .methodology-grid,
  .capabilities-grid,
  .capabilities-lists {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aem-info-banner .aem-info-item {
    font-size: 12px;
    margin: 5px 10px;
  }

  .aem-info-banner .aem-info-item img {
    width: 140px;
  }

  .aem-info-item h1 {
    font-size: large;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tech-stack-item {
    padding: 0px 12px;
  }

  .adobe-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platform-logos {
    flex-direction: column;
    align-items: flex-start;
  }
  .calendly-section {
    padding: 60px 24px;
  }

  .calendly-intro h2 {
    font-size: 36px;
  }

  .calendly-embed-container {
    padding: 20px;
  }

  #calendly-inline-widget {
    height: 600px;
  }

  .process-grid {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-left {
    align-items: right;
  }
  .footer-right {
    text-align: left;
  }

  .logo {
    height: 25px;
  }

  .aem-info-item p {
    font-size: 12px;
  }
}

@media (max-width: 630px) {
  .tech-stack-info {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tech-stack-left {
    min-width: 100%;
    justify-content: space-around;
  }

  .tech-stack-right {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tech-stack-item-wrapper {
    border-right: none;
  }

  .aem-info-banner {
    padding: 10px 0px;
  }
  .aem-info-banner .aem-info-item {
    margin: 0px 5px;
  }

  .aem-info-banner .aem-info-item img {
    width: 100px;
  }
}

@media (max-width: 520px) {
  .capabilities-lists {
    display: block;
  }
  .logo {
    height: 20px;
  }

  .aem-info-banner .aem-info-items {
    flex-wrap: wrap;
    justify-content: center;
  }

  .aem-info-banner .aem-info-item {
    align-items: center;
  }

  .process-item {
    padding: 0px;
  }

  .process-item h1 {
    font-size: 36px;
  }

  .process-item h3 {
    font-size: 20px;
  }

  .process-grid {
    gap: 40px;
  }

  .tagline {
    font-size: 14px;
  }

  .footer-left p {
    font-size: 12px;
  }

  .footer-right {
    font-size: 12px;
  }

  .footer-logos i {
    font-size: 16px;
  }

  .footer-middle a {
    font-size: 14px;
  }
}

@media (max-width: 425px) {
  .barbarian-bridges .left-content {
    padding: 0px;
  }
  .barbarian-bridges .right-content {
    padding: 0px;
  }
  .process-grid {
    display: flex;
    padding: 30px 0px;
    gap: 30;
  }
  .tech-stack-item {
    padding: 0px 0px;
  }
  .tech-stack-left {
    justify-content: space-between;
  }
}

@media (max-width: 400px) {
  .barbarian-bridges h2 {
    font-size: 24px;
  }

  .barbarian-bridges p {
    font-size: 12px;
  }
  .adobe-header {
    gap: 8px;
  }

  .adobe-logo {
    width: 64px;
    height: 64px;
  }

  .adobe-info {
    width: 150px;
    height: 84px;
  }

  .capabilities-content {
    font-size: 20px !important;
  }

  .tech-stack-info p {
    font-size: 12px !important;
  }

  .logo {
    height: 18px;
  }

  .tagline {
    font-size: 12px;
  }

  .barbarian-bridges .capability-list li {
    font-size: 12px;
  }

  .barbarian-bridges .capability-list li:before {
    font-size: 18px;
  }

  .how-we-do h3 {
    font-size: 24px;
  }

  .process-item p {
    font-size: 12px;
  }

  .footer-top p {
    font-size: 24px;
  }
}
