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

/* 
  IMPORTANT: FONT CONSISTENCY RULES
  All pages should use 'Inter' font consistently
  - DO NOT override font-family in page-specific CSS files
  - All elements inherit from body's font-family: 'Inter', sans-serif
  - Header elements use !important to prevent overrides
*/

/* Global Styles - Keep font-family consistent across all pages */
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


@font-face {
    font-family: 'Neue Montreal';
    src: url('path-to-font/NeueMontreal-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
  --header-height: 77px;
}

body {
  padding-top: var(--header-height);
}



/* Header - DO NOT OVERRIDE IN PAGE-SPECIFIC CSS */
.main-header {
  background: #ffffff;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  font-family: 'Inter', sans-serif !important;
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.75); /* semi-transparent white */
  backdrop-filter: blur(10px); /* blur effect */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* subtle shadow */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ensure all navigation elements use global font */
.nav-list, .nav-item, .nav-item a, .submenu, .submenu a {
  font-family: 'Inter', sans-serif !important;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}
.logo span {
  font-weight: 600;
  font-size: 1.2rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-list, .submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item > a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

/* Underline animation */
.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: black;
  transition: width 0.2s ease-in-out;
}

.nav-item > a:hover::after {
  width: 100%;
}


.nav-item:hover .submenu {
  display: block;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background-color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  z-index: 1000;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.submenu li {
  padding: 0.5rem 1rem;
}

/* SHOW ON HOVER */
.nav-item:hover .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu li a {
  display: block;
  white-space: nowrap;
  padding: 0.75rem 1.2rem;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease;
  font-size: 0.95rem;
}

.submenu li a:hover {
  background-color: #f5f5f5;
}






/* Hero section style */

 .hero-section {
  text-align: center;
  padding-top: 150px;
  padding-bottom: 50px;
  /* padding: 150px 0px; */
  font-family: 'Inter', sans-serif;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 400;
}

.rotating {
  display: inline-block;
  transition: color 0.4s ease;
}

.subheadline {
  margin-top: 4rem;
  margin-bottom: 10rem;
  font-size: 1.25rem;
  transition: opacity 0.4s ease;
}

.image-carousel {
  margin-top: 60px;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll 60s linear infinite;
}

.carousel-track img {
  height: 469px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 8px;
}

/* Keyframes to scroll the entire duplicated image set */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



.highlight1 {
  color: #ff0000; 
}

.highlight2 {
  color: #ff0000; 
}






/* logo section */
.partners-section {
  padding: 50px 200px;
  background: #fff;
  padding-bottom: 100px;
}

.partners-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 1.5rem;
  /* font-weight: bold; */
  font-family: 'Inter', sans-serif;
  color: #000000;
}

.arrow-controls .arrow {
  width: 40px;
  height: 40px;
  border: 2px solid black;
  background: transparent;
  border-radius: 50%;
  color: black;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-controls .arrow:hover {
  border-color: #9c24ff;
  color: #9c24ff;
}

.logos-carousel {
  overflow: hidden;
  position: relative;
  /* width: 100%; */
}

.logos-track {
  display: flex;
  gap: 82px;
  transition: transform 0.5s ease-in-out;
}

.logos-track img {
  height: 60px;
  width: auto; 
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  flex-shrink: 0;
}

.logos-track img:hover {
  filter: none;
}



/* style for what we do section */
  .what-we-do-section {
    background: black;
    padding: 80px 200px;
    color: #aaa;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    position: relative;
  }

  .section-heading {
    color: #9c24ff;
    font-size: 2rem;
    font-weight: lighter;
    margin-bottom: 20px;
  }

  .highlight {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    transition: color 0.3s ease;
  }

  .highlight.green:hover {
    color: #28a745;
  }

  .highlight.orange:hover {
    color: #ffa500;
  }

  .scroll-fade span {
    opacity: 0.2;
    transition: color 0.3s ease, opacity 0.6s ease;
    display: inline-block;
    font-size: 3.125rem;
  }

  .scroll-fade span.visible {
    color: white;
    opacity: 1;
  }


/* style for the video section */
.video-showcase {
  background: url('../assets/images/php-hp-agentforce-lg-bg.webp') no-repeat center center / cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 190px 200px;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.video-showcase.active {
  opacity: 1;
  transform: translateY(0);
}

.video-content {
  flex: 1;
  min-width: 300px;
}

.video-headline {
  color: #9c24ff;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  /* font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */

}

.video-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 500px;
  color: #333;
  margin-bottom: 4rem;
  margin-top: 3rem;
}

.watch-demos-btn {
  background: #9c24ff;
  color: rgb(255, 255, 255);
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.watch-demos-btn:hover {
  background: #e33fc4;
  color: #ffffff;
}

.video-wrapper {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.video-wrapper video {
  width: 100%;
  border-radius: 20px;
  /* border: 5px solid #ddd; */
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 20px 30px;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
}

.video-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
}


/* style for explore brand section */

.brands-section {
  background: #f5f5f5;
  padding: 100px 200px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.brands-section.active {
  opacity: 1;
  transform: translateY(0);
}

.brands-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.brands-title {
  font-size: 4rem;
  font-weight: bold;
  color: black;
  flex: 1;
  min-width: 300px;
}

.brands-text {
  font-size: 1.1rem;
  max-width: 500px;
  color: #333;
  line-height: 1.7;
  flex: 1;
  min-width: 300px;
}

.brand-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-item {
  display: flex;
  align-items: center;
  padding: 60px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.brand-item:hover {
  background-color: #9c24ff;
  color: white;
}

.brand-item:hover .brand-description {
  color: white;
}

.brand-item:hover .brand-logo {
  filter: brightness(0) invert(1); 
  transition: filter 0.3s ease;
}


.brand-logo {
  width: 250px;
  height: auto;
  margin-right: 40px;
}

.brand-description {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
}

.brand-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 100px;
  transition: background 0.3s ease, color 0.3s ease;
}

.brand-item:hover .brand-arrow {
  /* background: white; */
  color: #ffffff;
  border-color: white;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0;
}


/* style for numbers section */
/* style for numbers section */
.testimonials-section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  color: #222;
}

.section-header {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 100px;
}

.section-subheader {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #9c24ff;
}

.section-description {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 100px;
  color: #666;
}

.stats-cards {
  display: flex;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
}

.card-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 280px;
}

.card {
  background: linear-gradient(135deg, #3e0071 0%, #9c24ff 100%);
  color: white;
  border-radius: 12px;
  padding: 32px 21px;
  width: 100%;
  box-shadow: 0 8px 15px rgba(38, 64, 129, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-logo {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.card-number {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.card-text {
  font-size: rem;
  font-weight: 400;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.85);
}

.story-cta {
  margin-top: 2.5rem;
  padding-left: 6px;
  text-align: left;
  font-size: 3rem;
}

.story-cta p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.read-story {
  display: inline-block;
  color: #9c24ff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.read-story .arrow {
  transition: transform 0.3s ease;
}

.read-story::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #9c24ff;
  transition: width 0.3s ease;
}

.read-story:hover {
  color: #9c24ff;
}

.read-story:hover::after {
  width: 100%;
}

.read-story:hover .arrow {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 900px) {
  .stats-cards {
    flex-direction: column;
    align-items: center;
  }

  .card-group {
    width: 90%;
    max-width: 350px;
  }
}




/* style for hightlight section */
.latest-section {
  max-width: 1200px;
  margin: 150px auto;
  padding: 0 20px;
  text-align: center;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  color: #222;
}

.highlight-header {
  font-size: 2.5rem;
  font-weight: lighter;
  margin-bottom: 60px;
}

.highlight-boxes {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.highlight-box {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-box {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.highlight-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.highlight-box:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1); */
}

.box-image {
  position: relative;
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  align-items: flex-end;
  padding-bottom: 3px; /* Control how low it sits */
}

.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
  z-index: 1;
}

.box-inner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px ;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.box-logo {
  height: 20px;
}

.dot {
  height: 5px;
  width: 5px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
}

.company-name {
  font-size: 0.8rem;
  font-weight: 600;
}

.box-title {
  font-size: 1.6rem;
  /* font-weight: 600; */
}

.box-description {
  text-align: center;
  margin-top: 20px;
  max-width: 500px;
}

.box-description p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn {
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #9c24ff;
  color: white;
}

.btn-primary:hover {
  background-color: #8c00ff;
}

.btn-secondary {
  background-color: #ccc;
  color: #333;
}

.btn-secondary:hover {
  background-color: #e4e4e4;
}

/* Responsive */
@media (max-width: 1000px) {
  .highlight-boxes {
    flex-direction: column;
    gap: 40px;
  }
}



/* style for contact us section */
.cta-section {
  background-color: #8c00ff; /* Novera purple */
  padding: 80px 20px;
  text-align: center;
  color: white;
  transition: background-color 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.cta-section.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}


.cta-section:hover {
  background-color: #6e22d3; /* slightly lighter on hover */
}

.cta-heading {
  font-size: 2.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid white;
  border-radius: 999px; /* makes it pill/circular */
  color: white;
  background-color: transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #eee;
  color: #4a00a0;
}




/* style for footer */

.site-footer {
  background-color: #0a0a0a;
  color: #ccc;
  padding: 80px 200px 40px;
  font-family: 'Inter', sans-serif;
}

/* Control footer logo size */
.footer-logo {
  max-width: 150px; /* Adjust this value to your preferred size */
  height: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
}

.footer-tagline {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #999;
}

.footer-social a {
  color: #ccc;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}
.footer-social a:hover {
  color: #1da1f2;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-newsletter {
  max-width: 300px;
}

.footer-newsletter h4 {
  color: white;
  margin-bottom: 12px;
}

.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #aaa;
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
}

.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.footer-newsletter button {
  background-color: #1da1f2;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.footer-newsletter button:hover {
  background-color: #0d8ddb;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 50px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #999;
  font-size: 0.9rem;
}

.footer-legal a {
  color: #999;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: white;
}







