/* Font Imports */
@font-face {
  font-family: 'glacial';
  src: url('https://bravura-ai.com/wp-content/uploads/2025/05/GlacialIndifference-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'glacial';
  src: url('https://bravura-ai.com/wp-content/uploads/2025/05/GlacialIndifference-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'montserrat';
  src: url('https://bravura-ai.com/wp-content/uploads/2025/05/Montserrat-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'montserrat';
  src: url('https://bravura-ai.com/wp-content/uploads/2025/05/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'glacial', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #171717;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 500!important;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1.5px;
  width: max-content;
}

.btn-primary {
  background-color: #00abfa;
  color: white!important;
}

.btn-primary:hover {
  background-color: #00CA60;
}

.btn-outline {
  background-color: transparent;
  color: white!important;
  border: 1px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: #171717;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* Text Utilities */
.text-accent {
  color: #10b981;
}


/* Hero Section */
.hero {
  background-color: #f0f9ff;
  padding: 80px 0;
  min-height: 850px;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 48px!important;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -3px;
  font-weight: 400!important;
  margin-bottom: 40px!important;
}

.hero-description {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 30px!important;
  color: #374151;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  justify-content: center;
}

.hero-image {
  order: -1;
}

.hero-img {
  border-radius: 20px;
  width: 100%;
  max-width: 670px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  line-height: 1.2;
  color: #475569;
  margin-bottom: 10px;
  letter-spacing: -0.72px;
  text-align: center
}

.section-subtitle {
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
  font-weight: 300;
}

/* Problems Section */
.problems {
  padding: 80px 0;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.problem-card {
  border: 1px solid #475569;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

.problem-content {
  flex: 1;
}

.problem-title {
  font-size: 20px!important;
  font-weight: 600;
  margin-bottom: 10px;
}

.problem-description {
  color: #374151;
}

/* Early Adopters Section */
.early-adopters {
  padding: 60px 0;
  overflow: hidden;
}

.logos-carousel {
  margin-top: 30px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.logos-carousel::before,
.logos-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logos-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-marquee {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.client-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin: 0 40px;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  overflow: hidden;
}

.testimonials-carousel {
  margin-top: 40px;
  position: relative;
}

.testimonials-carousel .swiper {
  overflow: visible;
  padding: 0 20px;
}

.testimonials-carousel .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials-carousel .swiper-slide {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.7;
  transform: scale(0.95);
}

.testimonials-carousel .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.testimonials-carousel .swiper-slide-next,
.testimonials-carousel .swiper-slide-prev {
  opacity: 0.85;
  transform: scale(0.98);
}

.testimonial-card {
  background-size: cover;
  background-position: center;
  border: 1px solid #9ca3af;
  border-radius: 8px;
  padding: 24px;
  color: white;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: grab;
  user-select: none;
}

.testimonial-card:active {
  cursor: grabbing;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(rgba(23, 23, 23, 0.03) 0%, rgb(23, 23, 23) 100%);
  opacity: 0.8;
  border-radius: 8px;
  z-index: 1;
}

.testimonial-card > * {
  position: relative;
  z-index: 2;
}

.testimonial-accenture {
  background-image: url('https://bravura-ai.com/wp-content/uploads/2025/05/factory-1.webp');
}

.testimonial-pfizer {
  background-image: url('https://bravura-ai.com/wp-content/uploads/2025/05/factory-2.webp');
}

.testimonial-shell {
  background-image: url('https://bravura-ai.com/wp-content/uploads/2025/05/factory-3.webp');
}

.testimonial-merck {
  background-image: url('https://bravura-ai.com/wp-content/uploads/2025/05/factory-4.webp');
}

.testimonial-logo {
  text-align: center;
  margin-bottom: 16px;
}

.testimonial-logo-img {
  width: 140px;
  height: auto;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: normal;
}

.testimonial-author {
  font-weight: 600;
  font-style: normal;
}

/* Swiper Customization */
.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  background: #000;
  opacity: 0.3;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #0ea5e9;
  transform: scale(1.2);
}

/* What We Do Section */
.what-we-do {
  padding: 80px 0;
}

.what-we-do-content {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.what-we-do-text {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.what-we-do-image {
  order: -1;
  width: 100%;
}

.what-we-do-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

/* Five Steps Section */
.five-steps {
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  padding: 20px;
  border-radius: 8px;
}

.step-card {
  position: relative;
  height: 260px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
div[data-step="centralization"]{
  background-image: url('https://bravura-ai.com/wp-content/uploads/2025/05/5box-5.webp');
  background-size: cover;
  background-position: center;
}
div[data-step="standardization"]{
  background-image: url('https://bravura-ai.com/wp-content/uploads/2025/05/5box-4.webp');
  background-size: cover;
  background-position: center;
}
div[data-step="optimization"]{
  background-image: url('https://bravura-ai.com/wp-content/uploads/2025/05/5box-3.webp');
  background-size: cover;
  background-position: center;
}
div[data-step="visualization"]{
  background-image: url('https://bravura-ai.com/wp-content/uploads/2025/05/5box-2.webp');
  background-size: cover;
  background-position: center;
}
div[data-step="automation"]{
  background-image: url('https://bravura-ai.com/wp-content/uploads/2025/05/5box-1.webp');
  background-size: cover;
  background-position: center;
}
.step-front,
.step-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.step-front {
  background: rgba(23, 23, 23, 0.5);
  color: white;
  border: 1px solid #d1d5db;
}

.step-back {
  background: #475569;
  color: white;
  transform: translateX(-100%);
}

.step-card:hover .step-back {
  transform: translateX(0);
}

.step-title {
  font-size: 20px!important;
  font-weight: 600!important;
  line-height: 1.25!important;
}

.step-description {
  font-size: 14px;
  line-height: 1.4;
}

/* Elevate Team Section */
.elevate-team {
  padding: 80px 0;
  background-color: transparent;
  background-image: linear-gradient(150deg, #00abfa 0%, #00ca60 100%);
  color: white;
}

.elevate-header {
  text-align: center;
  margin-bottom: 40px;
}

.elevate-title {
  font-size: 28px;
  line-height: 1.2;
  color: #059669;
  letter-spacing: -0.72px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  display: inline-block;
}

.elevate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.elevate-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #4b5563;
  border-radius: 8px;
  padding: 15px;
  font-size: 18px;
  line-height: 1.5;
}

.elevate-card p {
  margin-bottom: 15px;
}

.elevate-card p:last-child {
  margin-bottom: 0;
}

.elevate-card strong {
  font-weight: bold;
}

.elevate-card em {
  font-style: italic;
}

.cse-logo {
  text-align: right;
  margin-top: 10px;
}

.cse-img {
  width: 180px;
  background: white;
  padding: 5px;
  border-radius: 8px;
}

/* Case Study Section */
.case-study {
  padding: 80px 0;
  
  color: white;
}

.case-study-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-radius: 8px;
  background-color: transparent;
  background-image: linear-gradient(150deg, #00abfa 0%, #00ca60 100%);
}

.case-study-image {
  order: -1;
  text-align: center;
}

.case-study-img {
  width: 100%;
  max-width: 415px;
  border-radius: 8px;
}

.case-study-subtitle {
  font-size: 18px!important;
  font-weight: 600!important;
  margin-bottom: 10px;
  letter-spacing: -0.72px;
}

.case-study-title {
  font-size: 28px!important;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.72px;
}

.case-study-description {
  background: #f0f9ff;
  color: #475569;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.case-study-description p {
  margin-bottom: 15px;
}

.case-study-description p:last-child {
  margin-bottom: 0;
}

.case-study-highlights {
  margin-bottom: 30px;
}

.highlight {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.highlight-icon {
  flex-shrink: 0;
  background: white;
  padding: 9px;
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon img {
  width: 18px;
  height: 18px;
}

.highlight-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.highlight-description {
  font-size: 20px;
}

.case-study-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* Challenges Section */
.challenges {
  padding: 80px 0;
}

.challenges-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.challenges-list {
  background: #ffffff;
  border: 1px solid rgba(220, 38, 38, 0.1);
  border-radius: 5px;
  padding: 5%;
  box-shadow: 0 5px 8px rgba(252, 0, 0, 0.09);
}

.challenge-items {
  list-style: none;
}

.challenge-item {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  margin-top: 15px;
  position: relative;
}

.challenge-item:first-child {
  margin-top: 0;
}

.challenge-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.challenge-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: url('https://c.animaapp.com/me9wcxicqz2fG5/assets/icon-13.svg') no-repeat center;
  background-size: contain;
  margin-right: 5px;
  flex-shrink: 0;
}

.challenges-image {
  order: -1;
  text-align: center;
  background: #f0f9ff;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  border: 1px solid #f0f9ff;
  border-radius: 5px;
  padding: 5%;
  box-shadow: 0 5px 8px rgba(0, 97, 209, 0.2);
}

.challenges-img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.pricing-description {
  grid-column: span 2;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 20px;
  text-align: justify;
}

.pricing-description p {
  margin-bottom: 10px;
}

.pricing-description p:last-child {
  margin-bottom: 0;
}

.pricing-image {
  grid-column: span 2;
  order: -1;
  text-align: center;
  padding: 30px 10px;
  border-radius: 8px;
  background-image: linear-gradient(150deg, #00567e 0%, #00ca60 100%);
}

.pricing-img {
  width: 90%;
  max-width: 350px;
}

.pricing-card {
  grid-column: span 2;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 20px;
}

.pricing-icon {
  width: 100px;
  margin-bottom: 10px;
}

.pricing-icon img {
  width: 32px;
  height: 32px;
}

.pricing-card-title {
  font-size: 20px!important;
  font-weight: 600!important;
  margin-bottom: 10px;
}

.pricing-card-description {
  line-height: 1.5;
}

/* Case Studies Section */
.case-studies {
  padding: 80px 0;
  background: white;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.case-study-card {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.case-study-card-image {
  text-align: center;
}

.case-study-card-img {
  width: 100%;
  max-width: 750px;
  border-radius: 8px;
}

.case-study-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1e293b;
}

.case-study-card-title a {
  color: inherit;
}

.case-study-card-description {
  color: #475569;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.case-studies-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cta-content {
  background: linear-gradient(155deg, rgb(50, 91, 115) 0%, rgb(0, 116, 55) 100%);
  border: 1px solid #4b5563;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: white;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
  position: relative;
}




.cta-title {
  font-size: 26px;
  font-weight: bold;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}



/* Responsive Design */
@media (min-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header-content {
    padding: 15px 0;
  }

  .logo {
    max-width: 345px;
  }

  .menu-toggle {
    padding: 6.75px;
  }

  .menu-icon {
    width: 27px;
    height: 27px;
  }

  .nav-menu {
    max-width: 1300px;
    transform: translateX(-85%);
    left: 85%;
    top: 40.5px;
  }

  .cta-desktop {
    display: block;
  }

  .hero-content {
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }

  .hero-text {
    flex: 0 0 47.331%;
  }

  .hero-title {
    font-size: 52px;
    line-height: 1;
  }

  .hero-description {
    font-size: 26px;
    line-height: 1;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-image {
    order: 0;
    flex: 1;
  }

  .section-title {
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 22px;
    line-height: 1.5;
  }

  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-logo-img {
    width: 164px;
  }

  .testimonial-quote {
    font-size: 20px;
    line-height: 1.5;
  }

  .testimonials-carousel .swiper {
    padding: 0 40px;
  }

  .what-we-do-content {
    flex-direction: row;
    align-items: center;
  }

  .what-we-do-text {
    flex: 1;
    text-align: left;
  }

  .what-we-do-image {
    order: 0;
    flex-shrink: 0;
    width: auto;
    text-align: right;
  }

  .what-we-do-img {
    border-radius: 8px;
  }

  .steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .step-back {
    transform: translateX(-224px);
  }

  .elevate-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .elevate-card-wide {
    grid-column: span 2;
  }

  .elevate-card-full {
    grid-column: span 3;
  }

  .case-study-content {
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }

  .case-study-image {
    order: 0;
    flex: 0 0 auto;
    text-align: center;
  }

  .case-study-text {
    flex: 1;
  }

  .case-study-subtitle,
  .case-study-title {
    text-align: left;
  }

  .case-study-actions {
    flex-direction: row;
    justify-content: flex-start;
  }

  .challenges-content {
    flex-direction: row;
    gap: 1.5%;
  }

  .challenges-list {
    flex: 0 0 50%;
  }

  .challenges-image {
    order: 0;
    flex: 0 0 47%;
  }

  .challenges-img {
    width: 80%;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-description {
    grid-column: span 2;
  }

  .pricing-image {
    grid-column: span 1;
    grid-row: span 2;
    order: 0;
    padding: 89.6px 12.8px;
  }

  .pricing-img {
    width: 539px;
  }

  .pricing-card {
    grid-column: span 1;
  }

  .case-studies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5%;
  }

  .case-study-card-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .case-study-card-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .cta-buttons {
    flex-direction: row;
  }

  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    padding: 48px;
  }

  .footer-brand {
    align-items: flex-start;
    width: 320px;
    margin-right: auto;
    margin-bottom: 32px;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-nav {
    width: 185px;
  }

  .footer-nav-section {
    text-align: left;
  }

  .footer-nav-list {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-legal {
    text-align: right;
  }

  .footer-legal-list {
    justify-content: flex-end;
  }
  .cta-content{
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 15px 0;
  }

  .problems {
    padding: 50px 0 30px;
  }

  .testimonials {
    padding: 50px 0;
  }

  .what-we-do {
    padding: 50px 0 30px;
  }

  .five-steps {
    padding: 30px 0;
  }

  .elevate-team {
    padding: 50px 0;
  }

  .case-study {
    padding: 50px 0;
  }

  .challenges {
    padding: 50px 0;
  }

  .pricing {
    padding: 50px 0;
  }

  .case-studies {
    padding: 50px 0;
  }
}