/* === FINAL AND CORRECT STYLESHEET === */

/* --- Globals & Resets --- */
body {
  background-color: #fff;
  margin: 0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1357px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* --- 1. HERO SECTION --- */


/* --- Header & Nav --- */
.site-header {
  padding-top: 35px;
  /* This gives space above the floating nav */
  position: absolute;
  /* Take it out of the normal flow */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Ensure it's on top of all other content */
}


.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 28px;
  background-color: rgba(248, 246, 244, 0.9);
  border-radius: 20px;
  box-shadow: 0 54px 84px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(45px);
  -webkit-backdrop-filter: blur(45px);
}

.main-nav {
  width: 100%;
}

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


.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo img {
  height: 50px;
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.8px;
  color: #535353;
}

.logo-text strong {
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 54px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.button-secondary {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  background-color: #fff;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 1000px;
  z-index: 1;
}

.button-secondary::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  padding: 1px;
  border-radius: 1000px;
  background: linear-gradient(114deg, #B0F07D 0%, #017EFF 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* --- Hero Content (3-Column Layout) --- */
















.headline-line .text-gray {
  color: #b5b5b5;
  font-size: 64px;
}

.headline-line .text-gradient {
  background: linear-gradient(102deg, #AFEF7C 0%, #007EFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}




.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #747474;
  letter-spacing: -0.8px;
  margin-bottom: 32px;
  max-width: 650px;
  /* Constrains the width */
  margin: 24px auto 32px auto;
}

.button-primary {
  display: inline-block;
  background-color: #007eff;
  color: #f6f6f6;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 1000px;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}

/* --- 2. OVERLAP WRAPPER & CHAT WIDGET --- */
.overlap-wrapper {
  position: relative;
}

.chat-widget-section {
  position: absolute;
  top: -180px;
  /* Pulls it up into the hero's padding */
  left: 50%;
  transform: translateX(-50%);
  width: 934px;
  z-index: 3;
}

.chat-widget {
  background-color: #faf8f638;
  backdrop-filter: blur(45px);
  -webkit-backdrop-filter: blur(45px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.742);
  text-align: center;
}

/* ... (all other chat widget styles are correct and included below) ... */
.chat-widget-title {
  font-family: 'Inter', sans-serif;
  color: #242424;
  font-size: 24px;
  line-height: 1.4;
  max-width: 740px;
  margin: 0 auto 30px auto;
}

.chat-input-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #e9e9ea;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}

.chat-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #7c7c80;
}

.chat-submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #007EFF;
  border-radius: 50%;
  position: relative;
}

.chat-submit-button::before {
  content: '';
  position: absolute;
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  margin-left: -2px;
}

.chat-suggestions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.suggestion-pill {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: rgba(128, 128, 128, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 35px;
  text-decoration: none;
}

/* --- 3. DARK SECTION --- */
.dark-section {
  background-color: #000;
  color: #fff;
  padding-top: 150px;
  /* Space for the floating widget */
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: -50px;

}


/* ... All other CSS for dark section, product features, etc. can follow ... */
/* ... all your other .dark-section and subsequent styles go here ... */

.dark-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.dark-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-us-header {
  margin-bottom: 60px;
}

.about-us-pill {
  display: inline-block;
  text-decoration: none;
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 25px;
  border-radius: 43px;
  position: relative;
  z-index: 1;
}

.about-us-pill::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  padding: 1px;
  border-radius: 43px;
  background: linear-gradient(116deg, #AFEF7C 0%, #017EFF 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.about-us-content {
  max-width: 1009px;
  margin: 0 auto 80px auto;
  text-align: left;
}

.about-us-content p {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 64px;
  letter-spacing: -2.00px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 10px 0;
}

.about-headline-2 {
  margin-left: 69px;
  /* The indent for the second line */
}

.about-headline-3 {
  margin-left: 69px;
  /* The indent for the third block */
}

.about-headline-3 .text-muted {
  color: #777777;
}


.about-headline-image {
  width: 100%;
  margin-top: 20px;
}

.trusted-by {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
}


.fade-in-on-scroll {
  opacity: 0.3;
  /* Start dimmed */
  transform: translateY(20px);
  /* Start slightly lower */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.is-visible {
  opacity: 1;
  /* Fade to full brightness */
  transform: translateY(0);
  /* Move up to original position */
}


/* --- Logo Section --- */

/* =========================================
   LOGO SECTION INFINITE SCROLL
   ========================================= */

.logo-section {
  padding: 60px 0;
  border-top: 1px solid #f0f0f0;
  overflow: hidden;
  /* Vital: Hides the scrolling part that goes off-screen */
  background-color: #fff;
  position: relative;
}

/* Optional: White Gradient Masks on Left/Right for smooth fade */
.logo-section::before,
.logo-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-section::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.logo-section::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* The Container that moves */
.logo-bar {
  display: flex;
  align-items: center;
  gap: 80px;
  /* Space between logos */
  width: max-content;
  /* Forces container to be as wide as all logos combined */

  /* The Animation */
  /* 40s = Speed (Higher number = Slower) */
  animation: scroll-logos 40s linear infinite;
}

/* Stop scrolling when user hovers to click */
.logo-bar:hover {
  animation-play-state: paused;
}

/* Keyframes for moving left */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Move by -50% because we duplicated the logos. 
       Once it reaches -50%, it snaps back to 0 without anyone noticing. */
    transform: translateX(-50%);
  }
}

/* Individual Logo Styling */
.logo-item {
  flex-shrink: 0;
  /* Prevents logos from getting squished */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.logo-item img {
  max-height: 45px;
  max-width: 160px;
  width: auto;

  /* Greyscale by default */
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

/* Hover Effect: Color + Scale */
.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.15);
  /* Pop effect */
}

/* Mobile Adjustment: Speed it up slightly on small screens */
@media (max-width: 768px) {
  .logo-bar {
    gap: 50px;
    animation-duration: 20s;
  }

  .logo-section::before,
  .logo-section::after {
    width: 50px;
    /* Smaller fade area on mobile */
  }
}



/* --- Intro Title Section --- */

.intro-title-section {
  text-align: center;
  /* Center all the content */
  padding: 100px 0;
  /* Generous spacing above and below */
  border-top: 1px solid #EAEAEA;
  /* The separator line */
}

.intro-title-section .container {
  /* We can make the container for this section a bit narrower */
  max-width: 800px;
}

.intro-title {
  font-family: 'Poppins', sans-serif;
  /* Assuming Poppins for titles */
  font-size: 50px;
  font-weight: 400;
  color: #403a3a;
  letter-spacing: -1.76px;
  margin: 0 0 24px 0;
  /* Remove default margin and add space below */
}

.intro-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #757575;
  line-height: 1.6;
  /* More readable line spacing */
  margin: 0;
  /* Remove default paragraph margin */
}



/* --- Product Features Section --- */

.product-features {
  padding: 80px 0;
  /* Space above and below the whole features area */
}

/* A single feature block (text + image) */
.feature-block {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 200px;
  /* Space between text and image */
  margin-bottom: 120px;
  /* Space before the next feature block */
}

/* This is a modifier class for the next section ("SpaceZap") to reverse the order */
.feature-block.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex-basis: 50%;
  /* Text takes up a bit less than half the space */
  max-width: 540px;
}

.feature-image {
  flex-basis: 50%;
  /* Image takes up a bit more */
  max-width: 500px;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 32px 0 0 32px;
  /* Rounded corners from the design */
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
}

.feature-title {
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #403a3a;
  /* Default color for the second part of the title */
  margin: 0 0 24px 0;
}

.feature-title .text-gradient-red {
  background: linear-gradient(102deg, #2A90EF 0%, #FF0004 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.feature-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #131313;
  line-height: 1.6;
  margin-bottom: 32px;
}

.feature-title .text-gradient-spacezap {
  background: linear-gradient(102deg, #C97CEF 0%, #007EFF 100%);
  /* Purple to Violet */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --- New gradient for Sakshi AI title --- */
.feature-title .text-gradient-cyan {
  background: linear-gradient(102deg, #63E1FF 0%, #00A3FF 100%);
  /* Cyan/Blue Gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* New style for the secondary "GET STARTED" button */
.button-secondary {
  display: inline-block;
  text-decoration: none;
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  padding: 12px 28px;
  border-radius: 1000px;
  border: 1px solid #dedede;
  transition: all 0.2s ease;
}

.button-secondary:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.feature-image.reverse-radius img {
  /* Top-left, Top-right, Bottom-right, Bottom-left */
  border-radius: 0 32px 32px 0;
}


/* --- New styles for "Restromind.AI" --- */

/* New gradient for the title */
.feature-title .text-gradient-magenta {
  background: linear-gradient(102deg, #2A90EF 0%, #FF0004 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Container for the accordion */
.new-features-list {
  margin: 32px 0;
}

/* "NEW FEATURES" tag */
.new-features-tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  background: linear-gradient(to right, #2A90EF, #FF0004);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 16px;
  display: inline-block;
}

/* Accordion item styles */
.feature-item {
  border-top: 1px solid #EAEAEA;
}

.feature-item:last-child {
  border-bottom: 1px solid #EAEAEA;
}

.feature-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
}

.feature-item-header h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #131313;
  margin: 0;
}

.feature-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-bottom 0.4s ease-out;
}

.feature-item-content p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #5e5e5e;
  line-height: 1.5;
  margin: 0;
}

.feature-item.active .feature-item-content {
  max-height: 200px;
  padding-bottom: 20px;
}

/* --- The One True Icon Style --- */
.toggle-icon {
  width: 21px;
  height: 21px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  background-color: #646464;
  transition: transform 0.3s ease;
  top: 50%;
  left: 50%;
}

/* Horizontal bar */
.toggle-icon::before {
  width: 13px;
  height: 2px;
  transform: translate(-50%, -50%);
}

/* Vertical bar */
.toggle-icon::after {
  width: 2px;
  height: 13px;
  transform: translate(-50%, -50%);
}

/* On active, rotate the vertical bar and add the circle */
.feature-item.active .toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.feature-item.active .toggle-icon {
  background-color: #efefef;
  border-radius: 50%;
}

/* When active, rotate the vertical bar to align with the horizontal one */
.feature-item.active .toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* The JavaScript also needs a small tweak to handle this new icon logic */
/* When an item is NOT active, we need to ensure the icon is a plus */
.feature-item:not(.active) .toggle-icon::after {
  transform: rotate(0deg);
}


/* --- FAQ Section --- */

.faq-section {
  background-color: #F7F7F7;
  /* Light grey background */
  padding: 120px 0;
}

.faq-layout {
  display: flex;
  gap: 80px;
  /* Space between the title and the Q&A list */
  align-items: flex-start;
  /* Align columns to the top */
}

.faq-title-column {
  flex: 1;
  /* Takes up 1 part of the available space */
  position: sticky;
  /* Optional: makes the "Faq" title stick as you scroll */
  top: 120px;
}

.faq-title-column h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 600;
  color: #E0E0E0;
  /* Light grey color for the title */
  margin: 0;
}

.faq-list-column {
  flex: 2;
  /* Takes up 2 parts of the space, making it wider */
}

.faq-item {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #EAEAEA;
  /* Separator line */
}

/* Remove the border from the very last item */
.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #131313;
  margin: 0 0 16px 0;
}

.faq-item p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #5e5e5e;
  line-height: 1.7;
  margin: 0;
}

.faq-item p a {
  color: inherit;
  /* Link color matches the paragraph text */
  text-decoration: underline;
  font-weight: 500;
}


/* --- Contact "Seeing is Believing" Section --- */

.contact-section {
  padding: 120px 0;
  position: relative;
  /* For the background image */
  overflow: hidden;
  /* To contain the background image */
}

/* The decorative background element */
.contact-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -60%);
  width: 200%;
  /* Make it very large */
  height: 200%;
  background-image: url('img/group-10-1.png');
  /* The decorative vector from Figma */
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
  z-index: -1;
}

.contact-layout {
  display: flex;
  align-items: flex-start;
  /* This aligns to the top */
  justify-content: center;
  /* Ensure the group is centered */
  gap: 80px;
}

.contact-text {
  flex: 1;
  /* Allow text block to take up available space */
  padding-top: 15px;
}

.contact-form-wrapper {
  flex-basis: 440px;
  /* The original, correct width from Figma */
  flex-shrink: 0;
  /* Prevent the form from shrinking */
}

.contact-title {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.68px;
  color: #000;
  margin: 0 0 24px 0;
}

.contact-title .text-light-gray {
  color: #5e5e5e;
}

.contact-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #9f9f9f;
  line-height: 1.5;
  margin: 0;
}

/* Form Styles */
.contact-form {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 54px 94px rgba(0, 0, 0, 0.08);

  /* --- ADD THESE TWO LINES --- */
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  background-color: #f8f8f8;
  border: 1px solid #f7f7f7;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

/* Style for the dropdown arrow */
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('img/mask-group.svg');
  /* The dropdown arrow icon from Figma */
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.contact-form .button-primary {
  align-self: flex-end;

  width: 158px;
}

/* --- FAQ Accordion Styles --- */

.faq-item {
  padding: 0;
  /* Remove old padding */
  margin: 0;
  /* Remove old margin */
  border-bottom: 1px solid #EAEAEA;
}

.faq-item:first-child {
  border-top: 1px solid #EAEAEA;
  /* Add a top border for the first item */
}

.faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
}

.faq-item-header h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #131313;
  margin: 0;
  padding-right: 20px;
  /* Space for the icon */
}

.faq-item-content {
  max-height: 0;
  /* Starts closed */
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-bottom 0.4s ease-out;
}

.faq-item-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #5e5e5e;
  line-height: 1.7;
  margin: 0;
}

/* Open state */
.faq-item.active .faq-item-content {
  max-height: 500px;
  /* Animate open to a large enough height */
  padding-bottom: 24px;
}

/* We can completely REUSE the .toggle-icon CSS we already have! */
/* Just make sure the icon in the FAQ has the same dark color */
.faq-item .toggle-icon::before,
.faq-item .toggle-icon::after {
  background-color: #646464;
  /* Dark icon color */
}

/* When active, it becomes a minus in a circle (matching the other accordion) */
.faq-item.active .toggle-icon {
  background-color: #efefef;
  border-radius: 50%;
}

.faq-item.active .toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}


/* --- Final Site Footer --- */

.site-footer-final {
  background-color: #000;
  color: #fff;
  padding: 80px 0 30px 0;
  /* Reduced top padding */
  position: relative;
  overflow: hidden;
  z-index: 5;
  border-top: none !important;
}

/* Vector Shapes (Unchanged) */
.site-footer-final::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -200px;
  width: 1207px;
  height: 540px;
  background-image: url('img/vector-980-1.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.site-footer-final::after {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 1235px;
  height: 863px;
  background-image: url('img/vector-981-1.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

/* Main Container (Unchanged) */
.site-footer-final .container {
  position: relative;
  z-index: 2;
}

/* Main footer content area (columns + social links) */
.site-footer-final .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* REMOVED: margin-bottom, as the new structure handles the spacing */
  padding-bottom: 30px;
  border-bottom: 1px solid #1e1e1e;
}

/* Columns and Links styling (Unchanged) */
.site-footer-final .footer-columns {
  display: flex;
  gap: 80px;
}

.site-footer-final .footer-column h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px 0;
}

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

.site-footer-final .footer-column li {
  margin-bottom: 16px;
}

.site-footer-final .footer-column a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer-final .footer-column a:hover {
  opacity: 0.7;
}

.site-footer-final .footer-social-links {
  display: flex;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.site-footer-final .footer-social-links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer-final .footer-social-links a:hover {
  opacity: 0.7;
}

.site-footer-final .footer-social-links span {
  color: rgba(255, 255, 255, 0.6);
}


/* --- FIX: STYLING FOR THE NEW BOTTOM AREA --- */

/* The new wrapper for the copyright and background text */
.site-footer-final .footer-base {
  position: relative;
  padding-top: 40px;
  min-height: 200px;
}

/* Decorative background text */
.site-footer-final .footer-bg-text {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 200px;
  font-weight: 800;
  white-space: nowrap;
  z-index: 1;
  /* Sits behind the copyright text */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Bottom bar (copyright) */
.site-footer-final .footer-bottom {
  position: relative;
  /* Keeps it in the document flow */
  z-index: 2;
  /* Sits ON TOP of the background text */
  text-align: left;
}

.site-footer-final .footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.contact-section {
  border-bottom: none !important;
}



/* Extra Small Devices */
@media (max-width: 480px) {
  .site-footer-final {
    padding: 40px 0 20px 0;
  }

  .site-footer-final .footer-bg-text {
    font-size: 40px;
    /* Further reduced */
    top: 15px;
  }

  .site-footer-final .footer-bottom {
    padding-top: 70px;
  }

  /* Further scale vectors */
  .site-footer-final::before {
    width: 400px;
    height: 180px;
    left: -50px;
  }

  .site-footer-final::after {
    width: 400px;
    height: 290px;
    right: -50px;
  }
}



@media (max-width: 992px) {

  /* Make nav links stack */
  .main-nav {
    flex-direction: column;
    gap: 20px;
  }

  /* Hero section stacks */
  .hero-top-layout {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .hero-text-block {
    text-align: center;
  }

  .headline-line {
    font-size: 48px;
    text-align: center !important;
  }

  .headline-line.indented {
    transform: none;
  }

  /* Chat widget shrinks */
  .chat-widget-section {
    width: 100%;
    top: -150px;
  }

  /* Dark section headline shrinks */
  .about-us-content p {
    font-size: 40px;
  }

  /* Product features stack */
  .feature-block,
  .feature-block.reverse {
    flex-direction: column;
  }

  .feature-image img,
  .feature-image.reverse-radius img {
    border-radius: 24px;
  }

  /* FAQ stacks */
  .faq-layout {
    flex-direction: column;
  }

  .faq-title-column {
    position: static;
    text-align: center;
    margin-bottom: 40px;
  }

  /* Contact form stacks */
  .contact-layout {
    flex-direction: column;
  }

  /* Footer stacks */
  .footer-main,
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-bg-text {
    font-size: 80px;
  }
}





/* === FINAL AND CORRECT DATADIME PAGE STYLES === */

/* --- 1. Main Page Content Wrapper --- */
.page-content {
  /* Pushes all content down to appear below the floating header */
  padding-top: 180px;
  position: relative;
  z-index: 1;

}

@media (max-width: 992px) {
  .page-content {
    /* Header is usually smaller or stacked on mobile */
    padding-top: 160px;
  }
}


/* --- 2. DataDime Hero Section (Correct Single-Column Layout) --- */
.datadime-hero {
  padding-bottom: 0;
  /* No bottom padding on the section itself */
}

.datadime-hero-text {
  padding-bottom: 60px;
  text-align: left;
}

/* .datadime-hero-text .container {
  max-width: 650px;
} */

.datadime-hero-header-layout {
  display: flex;
  justify-content: space-between;
  /* Pushes text and button to opposite ends */
  align-items: flex-end;
  /* Aligns the button with the bottom of the text */
}

.hero-header-text {
  flex-basis: 60%;
  /* Give the text block more space */
}

.hero-header-button {
  flex-shrink: 0;
  /* Prevent the button from shrinking */
}


.datadime-hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #403a3a;
  margin: 0 0 24px 0;
}

.datadime-hero-title .text-gradient-red {
  background: linear-gradient(102deg, #2A90EF 0%, #FF0004 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.datadime-hero-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #757575;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* This is the full-width image */
.datadime-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  /* Removes any extra space below the image */
}

/* --- 3. "Empowers" Section --- */
.empowers-section {
  background-color: #F7F7F7;
  padding: 120px 0;
  text-align: center;
}

.empowers-title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #000;
  margin: 0;
}

.empowers-title .text-gray {
  color: #5e5e5e;
}

.empowers-title .text-light-gray {
  color: #5e5e5e;
}

.empowers-title .text-very-light-gray {
  color: #5e5e5e;
}


/* === FINAL AND CORRECT STATS SECTION STYLES === */

.stats-section {
  padding: 100px 0;
  border-top: 1px solid #EAEAEA;
}

.stats-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px auto;
}

.stats-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #000;
  margin: 0 0 16px 0;
}

.stats-header h2 .text-gray {
  /* Correct subtle grey color */
  color: #a0a0a0;
}

.stats-header p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #5e5e5e;
  line-height: 1.6;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background-color: #FBFBFB;
  /* The correct, slightly off-white background */
  border: 1px solid #EFEFEF;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  min-height: 250px;
  /* Gives the cards the correct height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #000;
  margin-bottom: 24px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

/* Color styles for the labels */
.stat-label .blue-text {
  /* This creates a gradient and clips it to the text shape */
  background: linear-gradient(to right, #2A90EF, #FF0004);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stat-label .red-text {
  /* This creates a gradient and clips it to the text shape */
  background: linear-gradient(to right, #FF0004, #D4A8FF);
  /* Example Red to Pink */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --- Responsive Styles for Stats Section --- */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-header h2 {
    font-size: 40px;
  }

  .stat-number {
    font-size: 56px;
  }
}


/* === FINAL AND CORRECT FEATURES GRID SECTION STYLES === */

.features-grid-section {
  padding: 120px 0;
  background-color: #fff;
}

.features-header {
  /* Change text-align to left */
  text-align: left;
  max-width: 3800px;
  /* Remove margin: auto to allow left alignment */
  margin: 0 0 80px 0;
}

.features-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #000;
  margin: 0 0 24px 0;
}

.features-header h2 .text-gray {
  color: #a0a0a0;
}

.features-header p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #5e5e5e;
  line-height: 1.6;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.feature-card {
  /* This is the key: Make the card a flex container */
  display: flex;
  align-items: flex-start;
  /* Align icon and text to the top */
  gap: 20px;
  /* Space between icon and text */
}

.feature-icon {
  height: 32px;
  /* Adjust size as needed */
  /* Remove margin, as gap property handles spacing */
  margin: 0;
}

.feature-card-text {
  /* This container holds the h3 and p */
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 16px 0;
}

.feature-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #5e5e5e;
  line-height: 1.6;
  margin: 0;
}

/* --- Responsive Styles for Features Grid --- */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .features-header {
    text-align: center;
    /* Center header on mobile */
  }
}


/* === FINAL AND CORRECT "AI ADVANTAGE" SECTION STYLES === */

.tabbed-feature-section {
  padding: 120px 0;
  position: relative;
  /* Anchor for the background image */
  background-color: #fff;
  overflow: hidden;
  /* Contains the background image */
}

/* --- The single, combined background image --- */
.tabbed-feature-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 60%;
  /* Adjust size as needed */
  height: 100%;
  /* Make it tall */
  background-image: url('img/restromind-background.png');
  /* The COMBINED background image */
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  z-index: 1;
  /* Sits behind the content */
}

/* Ensure the main container sits on top */
.tabbed-feature-section .container {
  position: relative;
  z-index: 2;
}


/* --- Layout and Styling --- */
.tabbed-feature-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  /* Align columns to the top */
}

.tab-links {
  flex-basis: 35%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Space between the tab cards */
}

/* This is now just a placeholder to take up space */
.tab-content-placeholder {
  flex: 1;
}

/* --- Individual Tab Link Styles --- */
.tab-link {
  display: block;
  text-decoration: none;
  padding: 30px;
  border: 1px solid #EAEAEA;
  /* Default border */
  background-color: #F7F7F7;
  /* Default grey background */
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tab-link:hover {
  background-color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}

.tab-link h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: #a0a0a0;
}

/* --- Styles for the ACTIVE tab --- */
.tab-link.active {
  background-color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}

.tab-link.active h3 {
  /* The correct magenta/blue gradient */
  background: linear-gradient(to right, #C900C2, #2A90EF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* === FINAL AND CORRECT TOOLKIT SECTION STYLES === */

.toolkit-section {
  padding: 120px 0;
  background-color: #fff;
}

/* Reusable Section Header - ensure this is in your CSS */
.section-header {
  max-width: 1100px;
  /* Wider to prevent wrapping */
  margin: 0 0 80px 0;
  text-align: left;
}

.section-header.is-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #000;
  margin: 0 0 24px 0;
}

.section-header h2 .text-gray {
  color: #a0a0a0;
}

.section-header p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #5e5e5e;
  line-height: 1.6;
  margin: 0;
}


/* Three-Column Grid */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.toolkit-card {
  /* No special layout needed, items will stack naturally */
}

.toolkit-image-wrapper {
  background-color: #F7F7F7;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 32px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toolkit-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.toolkit-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 16px 0;
}

/* We reuse the gradient class from the hero */
.toolkit-text h3 .text-gradient-red {
  background: linear-gradient(102deg, #2A90EF 0%, #FF0004 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.toolkit-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #5e5e5e;
  line-height: 1.6;
  margin: 0;
}

/* --- Responsive Styles for Toolkit Section --- */
@media (max-width: 992px) {
  .toolkit-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}


/* === FINAL AND CORRECT STYLES FOR SOLUTIONS & ADDONS SECTIONS === */

/* --- The Unified Two-Column Layout Rule --- */
.two-col-layout {
  display: grid;
  /* Create two columns. Left is slightly smaller than the right. */
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  /* THIS IS THE CRITICAL FIX: Align both columns to the top. */
  align-items: start;
}

/* --- Solutions Forged For Your Sector Section --- */
.solutions-section {
  padding: 120px 0;
  background-color: #fff;
}

.solutions-content {
  /* No special layout needed, it's a grid item */
}

.solutions-image img {
  width: 100%;
  height: auto;
  /* Let height be natural */
  border-radius: 16px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.1);
}

.sector-feature {
  margin-top: 60px;
}

.sector-feature h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 16px 0;
}

.sector-feature p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #5e5e5e;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #5e5e5e;
  background-color: #F7F7F7;
  border: 1px solid #EAEAEA;
  padding: 10px 20px;
  border-radius: 30px;
}

/* --- Add-ons Section ("Go Beyond Numbers") --- */
.addons-section {
  padding: 120px 0;
  background-color: #fff;
}

.addons-main-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #000;
  margin: 0;
  position: sticky;
  top: 150px;
}

.addons-main-title h2 .text-gray {
  color: #a0a0a0;
}

.addons-description {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #5e5e5e;
  line-height: 1.6;
  margin: 0 0 80px 0;
  max-width: 450px;
}

.addons-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 40px 0;
}

.addons-subtitle .text-gradient-red {
  background: linear-gradient(102deg, #2A90EF 0%, #FF0004 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 60px;
}

.addon-icon {
  height: 32px;
  margin-bottom: 20px;
}

.addon-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0 0 12px 0;
}

.addon-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #5e5e5e;
  line-height: 1.6;
  margin: 0;
}

/* --- Responsive Styles for BOTH Sections --- */
@media (max-width: 992px) {
  .two-col-layout {
    grid-template-columns: 1fr;
    /* Stack into a single column on mobile */
    text-align: center;
  }

  .solutions-content,
  .addons-main-title {
    max-width: 600px;
    margin: 0 auto;
    /* Center the content when stacked */
    text-align: center;
  }

  .addons-main-title h2 {
    position: static;
    margin-bottom: 40px;
  }

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



/* ---  gradient for the Restromind title --- */
.text-gradient-magenta {
  background: linear-gradient(to right, #C900C2, #2A90EF);
  /* Magenta to Blue */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}



/* === FINAL AND CORRECT "AI ADVANTAGE" SECTION STYLES === */

.ai-advantage-section {
  padding: 120px 0;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

/* The two-column layout for the tabs and the images */
.ai-advantage-layout {
  display: flex;
  gap: 80px;
  /* THIS IS THE KEY: We REMOVE align-items, so it defaults to "stretch" */
  /* This makes the left and right columns equal height */
}

/* --- Left Column: Tabs --- */
.advantage-tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.advantage-tab {
  /* THIS IS THE SECOND KEY: Make each tab grow to fill the space */
  flex: 1;

  display: flex;
  align-items: center;
  /* Vertically center the text inside the taller card */
  text-decoration: none;
  padding: 30px;
  background-color: #F7F7F7;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.advantage-tab:hover {
  background-color: #fff;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}

.advantage-tab h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: #a0a0a0;
}

/* --- Styles for the ACTIVE tab --- */
.advantage-tab.active {
  background-color: #fff;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}

.advantage-tab.active h3 {
  /* The correct magenta/blue gradient */
  background: linear-gradient(to right, #C900C2, #2A90EF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.advantage-tab:hover h3 {
  /* Same gradient as active state */
  background: linear-gradient(to right, #C900C2, #2A90EF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


/* --- Right Column: Layered Images --- */
.advantage-images {
  flex: 1;
  position: relative;
  min-height: 500px;
}

.advantage-images img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  height: auto;
}

.advantage-bg-gradient {
  width: 120%;
  z-index: 1;
}

.advantage-dashboard {
  width: 90%;
  border-radius: 16px;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* --- Reusable Section Header --- */
.section-header {
  max-width: 1100px;
  margin: 0 0 80px 0;
  text-align: left;
}

.section-header.is-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #000;
  margin: 0 0 24px 0;
}

.section-header h2 .text-gray {
  color: #a0a0a0;
}

.section-header p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #5e5e5e;
  line-height: 1.6;
  margin: 0;
}


/* --- Corrected Simple Steps Section --- */

.simple-steps-section {
  padding: 120px 0;
  background-color: #FBFBFB;
}

/* This new wrapper centers the header */
.steps-header-wrapper {
  display: flex;
  justify-content: center;
  text-align: center;
}

.steps-header-wrapper .section-header {
  text-align: center;
  margin-bottom: 80px;
}


/* The steps-list is now full-width */
.steps-list {
  border-top: 1px solid #EAEAEA;
}

.step-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  /* Use vertical padding, horizontal comes from parent container */
  border-bottom: 1px solid #EAEAEA;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.step-text {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #a0a0a0;
  transition: color 0.3s ease;
}

.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #d0d0d0;
  transition: color 0.3s ease;
}

/* Hover and Active States */
.step-item:hover,
.step-item.active {
  /* No background change needed on hover for full-width */
}

.step-item:hover .step-text,
.step-item.active .step-text,
.step-item:hover .step-number,
.step-item.active .step-number {
  background: linear-gradient(to right, #C900C2, #2A90EF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}



/* Sakhi.ai page */
.text-gradient-sakshi {
  background: linear-gradient(to right, #63E1FF, #00A3FF);
  /* Cyan/Blue Gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


/* --- Design Automation Section (SpaceZap Page) --- */

.design-automation-section {
  padding: 120px 0;
  background-color: #fff;
}

/* We reuse the .section-header class, no new CSS needed for the title */

.design-automation-grid {
  display: grid;
  /* Create 2 equal-width columns */
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: stretch;

}

.automation-card {
  /* Turn the card itself into a flex container */
  display: flex;
  flex-direction: column;
}

.automation-image-wrapper {
  background-color: #FBFBFB;
  /* Very light, slightly warm grey */
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  /* This ensures a consistent height and vertical centering */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  /* Adjust as needed to get the right look */
  flex-grow: 1;
}

.automation-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.automation-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 16px 0;
}

/* We reuse the gradient class we already created for Restromind */
.automation-text h3 .text-gradient-magenta {
  /* This class should already exist in your CSS */
  background: linear-gradient(to right, #C900C2, #2A90EF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.automation-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #5e5e5e;
  line-height: 1.6;
  margin: 0;
}

/* --- Responsive Styles for Design Automation Section --- */
@media (max-width: 992px) {
  .design-automation-grid {
    /* On tablet, stack the cards in a single column */
    grid-template-columns: 1fr;
  }
}



.about-us-hero {
  /* Make it a flex container to center its content */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0;
  /* Add vertical spacing */
}

.about-us-title {
  font-family: 'Poppins', sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -2.88px;
  color: #000;
  margin: 0 0 24px 0;
}

.about-us-title .text-gradient {
  background: linear-gradient(102deg, #AFEF7C 0%, #007EFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* This is the key fix for the subtitle */
.about-us-hero .hero-subtitle {
  max-width: 650px;
  /* Constrain the width to force wrapping */
  margin-bottom: 32px;
  /* Space before the button */
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #747474;
  line-height: 1.6;
}


.about-us-main-title {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -2px;
  color: #fff;
  max-width: 1000px;
  /* Constrain width */
  margin: 0 auto;
  /* Center it */
}


.image-feature-section {
  padding: 120px 0;
  background-color: #fff;
  border-top: 1px solid #EAEAEA;
}



.full-width-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  /* Removes any extra space below the image */
  border-radius: 24px;
  /* The rounded corners from the design */
}

.image-feature-section .section-header {
  /* Reduce the space below the header from 80px to a smaller value */
  margin-bottom: 40px;
}


/* --- Industry Solutions Section --- */

.industry-solutions-section {
  padding: 120px 0;
  background-color: #fff;
  border-top: 1px solid #EAEAEA;
}

/* We reuse the .section-header and .feature-block classes */
/* We just need to add the new gradient style */

.feature-title .text-gradient-enterprise {
  background: linear-gradient(to right, #AFEF7C, #007EFF);
  /* Light Green to Cyan */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* New styles for the two-column text block at the bottom */
.bottom-text-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  padding-top: 80px;
  /* Space above this text block */
  border-top: 1px solid #EAEAEA;
  /* Separator line */
  margin-top: 120px;
  /* Space between the feature-block and this */
}

.text-column p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #5e5e5e;
  line-height: 1.7;
  margin: 0 0 24px 0;
  /* Space between paragraphs */
}

.text-column p:last-child {
  margin-bottom: 0;
}


/* --- Responsive Styles for Industry Solutions --- */
@media (max-width: 992px) {
  .bottom-text-columns {
    grid-template-columns: 1fr;
    /* Stack into a single column */
    gap: 40px;
  }
}



/* --- Leadership Section --- */

.leadership-section {
  background-color: #fff;
  /* Clean white background */
  padding: 120px 0;
  overflow: hidden;
  /* Prevents arrows from causing horizontal scroll */
}

.leadership-section .section-header {
  margin-bottom: 60px;
}

.leadership-section .section-header h2 {
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -1px;
}

/* 2. Wrapper for the carousel */
.leadership-carousel-wrapper {
  position: relative;
}

/* 3. Main Swiper container adjustments */
.leadership-swiper {
  /* Add padding to the container itself to prevent cards from touching the edges */
  padding: 10px 25px;
}

/* 4. THE KEY FIX: Individual Team Member Card styles */
.team-member-card {
  background-color: #F7F7F7;
  /* The light grey background for the whole card */
  border-radius: 16px;
  /* Rounded corners for the card */
  padding: 20px;
  /* Padding inside the card */
  height: 100%;
  /* Ensure cards in a row are equal height */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Add a subtle "lift" effect on hover for a modern feel */
.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

/* 5. Photo wrapper styles (background is now removed) */
.member-photo-wrapper {
  /* REMOVED: background-color. It's now on the parent card. */
  border-radius: 12px;
  /* Slightly smaller radius than the parent card */
  margin-bottom: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.member-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 6. Member info text styles */
.member-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px 0;
}

.member-info p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #5e5e5e;
  margin: 0;
}

/* 7. Navigation Arrow Styling (Unchanged, already matches Figma) */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #EAEAEA;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: #333 !important;
  top: 40%;
  transition: transform 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
}

/* Position arrows to overlap between slides */
.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}


/* 8. Responsive Styles */
@media (max-width: 992px) {

  /* Hide arrows on mobile and rely on touch swiping */
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}


/* === FINAL AND CORRECT CONTACT US PAGE STYLES === */

.contact-page-section {
  padding-bottom: 120px;
}

/* --- The main two-column layout for the whole section --- */
.contact-page-layout {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding-top: 80px;
  /* Reduced from 80px to close the gap */
  border-top: 1px solid #EAEAEA;
}

/* --- Left Column: "CONTACT US" Title --- */
.contact-page-eyebrow {
  flex-basis: 25%;
  flex-shrink: 0;
}

.contact-page-eyebrow p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5e5e5e;
  margin: 0;
  position: sticky;
  top: 50px;
}

/* --- Right Column: Main Content --- */
.contact-page-main {
  flex: 1;
}

.contact-page-title {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #000;
  margin: 0 0 80px 0;
}

/* The sub-grid for the info and form */
.contact-content-grid {
  display: flex;
  /* Change to Flexbox */
  gap: 100px;
  align-items: stretch;
  /* Make columns equal height */
}

.contact-info-block {
  flex: 1;
  /* Take up half the space */
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper {
  flex: 1;
  /* Take up the other half */
}

/* Styling for the Info Items on the Left */
.info-item {
  padding: 30px 0;
  border-bottom: 1px solid #EAEAEA;
}

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

.info-item:last-child {
  border-bottom: none;
  flex-grow: 1;
}

.info-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #007EFF;
  margin: 0 0 12px 0;
}

.info-item p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #5e5e5e;
  line-height: 1.6;
  margin: 0;
}

.info-item p a {
  color: #5e5e5e;
  text-decoration: none;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-button {
  background-color: #333;
  color: #fff !important;
  /* Force white color */
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  text-decoration: none;
}

.timing-note {
  font-size: 12px;
  font-weight: 400;
  color: #a0a0a0;
  margin-left: 8px;
}

.text-gradient-cyan {
  /* Reusing a gradient class */
}

/* Reusing the .contact-form styles */

/* --- Responsive Styles for Contact Page --- */
@media (max-width: 992px) {

  .contact-page-layout,
  .contact-content-grid {
    flex-direction: column;
    /* Stack all columns on mobile */
  }

  .contact-page-eyebrow p {
    position: static;
    text-align: center;
    margin-bottom: 40px;
  }

  .contact-page-title {
    text-align: center;
  }
}



/* The container for the dropdown */
.dropdown {
  position: relative;
  /* This padding extends the hover area downwards, covering the visual gap */
  /* and preventing the menu from disappearing. */
  padding-bottom: 10px;
}

/* 2. The Arrow Icon */
.dropdown-toggle span {
  font-size: 10px;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

/* 3. The Dropdown Menu Itself */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1001 !important;
  /* Keep this for layering */

  width: 220px;
  padding: 8px;
  /* margin-top is REMOVED to eliminate the "dead zone" */

  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  list-style: none;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Glassmorphism for Dropdown */
.dropdown-menu {
  /* Make it slightly transparent white */
  background-color: rgba(255, 255, 255, 0.9) !important;

  /* Add the blur effect */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  /* Soft border to match */
  border: 1px solid rgba(255, 255, 255, 0.6);

  /* Ensure it sits on top */
  z-index: 1001 !important;
}

/* 4. Links Inside the Dropdown */
.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* 5. Hover Effect for Dropdown Links */
.dropdown-menu li a:hover {
  background-color: #f7f7f7;
  color: #007EFF;
}

/* --- The Hover Interaction --- */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-toggle span {
  transform: rotate(180deg);
}




/* --- Legal & Policy Page Styles --- */

.legal-container {
  max-width: 840px;
  /* A good width for reading text */
  margin: 100px auto;
  /* Centers the container and adds space top/bottom */
  padding: 0 20px;
  color: #333;
  /* Dark grey text for readability */
  font-family: 'Inter', sans-serif;
}

.legal-container h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}

.legal-container h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-container h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-container p,
.legal-container li {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.legal-container p {
  margin-bottom: 16px;
}

.legal-container .updated-date {
  font-style: italic;
  color: #888;
  margin-bottom: 32px;
}

.legal-container ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-container li {
  margin-bottom: 12px;
}

.legal-container a {
  color: #007bff;
  /* A standard blue for links */
  text-decoration: none;
  font-weight: 500;
}

.legal-container a:hover {
  text-decoration: underline;
}

.legal-container .contact-info {
  margin-top: 24px;
  margin-bottom: 24px;
}

.legal-container .contact-item {
  line-height: 1.8;
  font-size: 16px;
}

.legal-container .contact-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Space between icon and text */
}

.legal-container .contact-item svg {
  vertical-align: middle;
  /* Helps with alignment */
}



/* ============================================
   HAMBURGER MENU STYLES - FINAL FIX
   ============================================ */

/* Hamburger Button - Hidden on Desktop, Visible on Mobile */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  position: relative;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

/* Hamburger Animation - X when open */
.hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Panel - Hidden by default */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #f8f6f4;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
  padding: 80px 30px 30px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Mobile Menu Active State */
.mobile-menu.active {
  right: 0;
}

/* Overlay Background - Behind the menu */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
  pointer-events: none;
}

body.menu-open::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Mobile Navigation Links */
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav-links li:last-child {
  border-bottom: none;
}

.mobile-nav-links>li>a {
  display: block;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.mobile-nav-links>li>a:hover {
  color: #007bff;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.mobile-dropdown-toggle span {
  font-size: 10px;
  transition: transform 0.3s ease;
}

/* Mobile Dropdown Menu */
.mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-dropdown-menu li {
  border-bottom: none;
}

.mobile-dropdown-menu li a {
  display: block;
  padding: 12px 0 12px 20px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-dropdown-menu li a:hover {
  color: #000;
}

/* Mobile Dropdown Active State */
.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 500px;
}

.mobile-dropdown.active .mobile-dropdown-toggle span {
  transform: rotate(180deg);
}

/* Mobile CTA Button */
.mobile-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* ============================================
   MOBILE RESPONSIVE - UNIFIED 768px
   ============================================ */

@media (max-width: 768px) {

  /* Global */
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }

  /* NAVIGATION */
  .site-header {
    width: 100%;
    padding-top: 20px;
  }

  .main-nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center;
    padding: 10px 16px;
    width: 100%;
  }

  .logo {
    order: 1;
    z-index: 1002;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 1 auto;
  }

  .logo img {
    height: 36px;
    flex-shrink: 0;
  }

  .logo-text {
    font-size: 12px;
  }

  .hamburger-menu {
    display: flex !important;
    order: 2;
    flex-shrink: 0;
    margin-left: auto;
  }

  .main-nav>.nav-links,
  .main-nav>.button-secondary {
    display: none !important;
  }

  /* HERO SECTION */


  /* ============================================
   HERO SECTION - RAMOS STYLE (FULL WIDTH)
   ============================================ */

  .hero-section {
    position: relative;
    padding-bottom: 250px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    overflow: hidden;
  }

  /* Override container max-width for hero */
  .hero-section .container {
    max-width: 100% !important;
    padding: 0 40px !important;
  }

  .hero-content {
    padding: 220px 0 0;
    text-align: center;
  }

  /* RAMOS CENTERED LAYOUT - FULL WIDTH */
  .hero-top-layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 80px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 80px auto !important;
    padding: 0 !important;
    grid-template-columns: unset !important;
  }

  /* Text Block - FULL WIDTH */
  .hero-text-block {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    flex: none !important;
  }

  /* Hide old layout elements */
  .hero-icon-left,
  .hero-icon-right,
  .hero-image {
    display: none !important;
  }

  /* RAMOS-STYLE HUGE TYPOGRAPHY - FULL SCREEN WIDTH */
  .headline-line {
    font-family: 'Poppins', sans-serif !important;
    font-size: clamp(60px, 8.5vw, 140px) !important;
    font-weight: 600 !important;
    line-height: 0.95 !important;
    letter-spacing: -0.04em !important;
    color: #000000 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  /* First line - bold black */
  .headline-line:nth-child(1) {
    font-weight: 600 !important;
    color: #000000 !important;
  }

  /* Second line - lighter gray, regular weight */
  .headline-line:nth-child(2) {
    color: #d0d0d0 !important;
    font-weight: 400 !important;
  }

  /* Third line - regular weight */
  .headline-line:nth-child(3) {
    font-weight: 400 !important;
  }

  /* Gradient text styling */
  .headline-line .text-gradient {
    background: linear-gradient(102deg, #AFEF7C 0%, #007EFF 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 400 !important;
  }

  .headline-line .text-gray {
    color: #d0d0d0 !important;
    font-weight: 400 !important;
  }



  .hero-section {
    padding-bottom: 50px;
  }

  .hero-content {
    padding-top: 40px;
  }

  /* Hero Top Layout - Stack vertically */
  .hero-top-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }



  .hero-text-block {
    flex: initial;
    width: 100%;
    text-align: center;
    padding: 0 16px;
  }



  .headline-line {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 2px !important;
  }

  .headline-line.indented {
    margin-left: 0 !important;
  }

  .headline-line .text-gray {
    font-size: inherit !important;
  }

  .headline-line .text-gradient {
    font-size: inherit !important;
  }



  /* Hero Bottom - Critical fix */
  .hero-bottom-content {
    display: block !important;
    text-align: center;
    margin-top: 24px;
    padding: 0 16px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px 0 !important;
  }

  .hero-bottom-content .button-primary {
    display: inline-block !important;
    width: 100%;
    padding: 13px 20px;
    font-size: 14px;
    margin: 0 0 40px 0 !important;
  }

  /* OVERLAP WRAPPER - Must come AFTER hero */
  .overlap-wrapper {
    position: relative;
    margin-top: 0;
  }

  /* CHAT WIDGET - Reset absolute positioning */
  .chat-widget-section {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    padding: 0 16px 30px;
  }

  .chat-widget {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .chat-widget-title {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .chat-input-area {
    padding: 12px 14px;
    margin-bottom: 14px;
  }

  .chat-input-placeholder {
    font-size: 13px;
  }

  .chat-submit-button {
    width: 36px;
    height: 36px;
  }

  .chat-suggestions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .suggestion-pill {
    font-size: 11px;
    padding: 10px 8px;
    line-height: 1.3;
    color: black;
  }

  /* DARK SECTION */
  .dark-section {
    padding: 45px 20px;
    margin-top: 0 !important;
  }

  .about-us-header {
    text-align: center;
    margin-bottom: 28px;
  }

  .about-us-content {
    text-align: center;
  }

  .about-us-content p,
  .about-headline-1,
  .about-headline-2 {
    font-size: 22px !important;
    text-align: center;
    margin-left: 0 !important;
    margin-bottom: 8px;
  }

  .about-headline-3 {
    font-size: 16px !important;
    text-align: center;
    margin-left: 0 !important;
  }

  /* LOGOS */
  .logo-section {
    padding: 40px 0;
    overflow: hidden;
  }

  .logo-bar {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 60px !important;
    padding: 20px 0 !important;
    animation: scroll-logos 20s linear infinite !important;
    width: max-content !important;
  }

  @keyframes scroll-logos {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  /* Enable hover/click effects */
  .logo-item {
    flex: 0 0 auto !important;
    min-width: 120px !important;
    padding: 0 !important;
    cursor: pointer !important;
  }

  .logo-item img {
    max-width: 100px !important;
    max-height: 45px !important;
    object-fit: contain !important;
    filter: grayscale(100%) !important;
    opacity: 0.7 !important;
    transition: all 0.3s ease !important;
  }

  /* Restore color on tap/click */
  .logo-item:active img,
  .logo-item:hover img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: scale(1.1) !important;
  }

  /* Pause animation on touch */
  .logo-bar:hover,
  .logo-bar:active {
    animation-play-state: paused !important;
  }

  /* ABOUT US PAGE FIX */
  .about-us-hero {
    text-align: center;
    padding: 0 18px;
  }

  .about-us-title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 22px;
  }

  .about-us-main-title {
    font-size: 21px;
    line-height: 1.5;
    text-align: center;
  }

  /* DATADIME & OTHER PAGES */
  .datadime-hero-header-layout {
    flex-direction: column;
    gap: 22px;
  }

  .datadime-hero-title {
    font-size: 30px;
    line-height: 1.2;
  }

  /* FOOTER */
  .site-footer-final {
    padding: 60px 0 30px 0;
    position: relative;
    background-color: #000;
    overflow: hidden;
  }

  .site-footer-final .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
  }

  .site-footer-final .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
  }

  .site-footer-final .footer-column {
    text-align: center;
    width: 100%;
  }

  .site-footer-final .footer-column h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: #fff;
  }

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

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

  .site-footer-final .footer-column a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
  }

  .site-footer-final .footer-social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }

  .site-footer-final .footer-base {
    padding-top: 50px;
    min-height: 150px;
    position: relative;
  }

  .site-footer-final .footer-bg-text {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    font-weight: 800;
    white-space: nowrap;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
  }

  .site-footer-final .footer-bottom {
    text-align: center;
    padding-top: 80px;
    position: relative;
    z-index: 2;
  }

  .site-footer-final .footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }

  /* Background gradients - KEEP BEHIND */
  .site-footer-final::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 270px;
    left: -100px;
    bottom: 0;
    opacity: 0.6;
    z-index: 0;
  }

  .site-footer-final::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 430px;
    right: -100px;
    bottom: 0;
    opacity: 0.6;
    z-index: 0;
  }

  .site-footer-final .container {
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  /* AI ADVANTAGE SECTION - MOBILE */
  .ai-advantage-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .section-header h2 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .section-header p {
    font-size: 15px;
  }

  /* Stack layout vertically */
  .ai-advantage-layout {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  /* Tabs full width */
  .advantage-tabs {
    width: 100%;
    gap: 12px;
  }

  .advantage-tab {
    padding: 20px;
    flex: initial;
  }

  .advantage-tab h3 {
    font-size: 18px;
  }

  /* Images section - show below tabs */
  .advantage-images {
    width: 100%;
    min-height: 400px;
    position: relative;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .advantage-bg-gradient {
    width: 100%;
    max-width: 100%;
    position: static;
    top: auto;
    left: auto;
    transform: none;
    display: block;
  }

  .advantage-dashboard {
    width: 90%;
    max-width: 350px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    z-index: 2;
  }

}

@media (max-width: 480px) {
  .headline-line {
    font-size: 26px !important;
    letter-spacing: -2.18px;
  }

  .headline-line .text-gray {
    color: #b5b5b5;
    font-size: 26px;
  }


  .chat-suggestions {
    grid-template-columns: 1fr;
  }

  .logo-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer-final .footer-bg-text {
    font-size: 40px;
    top: 15px;
  }

  .site-footer-final .footer-bottom {
    padding-top: 70px;
  }

  .site-footer-final::before {
    width: 400px;
    height: 180px;
    left: -50px;
  }

  .site-footer-final::after {
    width: 400px;
    height: 290px;
    right: -50px;
  }


  .contact-form-wrapper {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }

  .contact-form {
    width: 100%;
    padding: 24px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14px;
    padding: 12px;
  }

  /* Submit button - full width on mobile */
  .contact-form .button-primary {
    width: 100% !important;
    align-self: stretch;
  }


}


/* iPad and Tablet devices (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .site-footer-final .footer-bg-text {
    font-size: 80px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
  }
}





/* =========================================
    LOADER STYLES (BLUE THEME)
   ========================================= */

/* Main Fullscreen Wrapper - BLUE BACKGROUND */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #007EFF 0%, #0057FF 50%, #3B82F6 100%);
  background-size: 200% 200%;
  animation: preloaderGradient 8s ease-in-out infinite alternate;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* subtle animated gradient */
@keyframes preloaderGradient {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

/* Hide scrollbar while loading */
body.loading {
  overflow: hidden;
}

/* Background Watermark (White transparent) */
.watermark {
  position: absolute;
  font-size: 12rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  /* Subtle white */
  user-select: none;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 5px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;


}

/* Timeline Container */
.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
  padding: 18px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* The Stage (Icon + Label) */
.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
  position: relative;
  z-index: 2;
}

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

/* The Circle holding the Icon */
.icon-circle {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.65);
  position: relative;
  overflow: hidden;
}

.icon-circle img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.icon-circle::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 0%, rgba(56, 189, 248, 0.25), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.stage.visible .icon-circle {
  animation: iconFloat 2.2s ease-in-out infinite alternate;
}

.stage.visible .icon-circle::before {
  opacity: 1;
}



/* Animate Icon when stage is visible */
.stage.visible .icon-circle img {
  opacity: 1;
  transform: scale(1);
}

@keyframes iconFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

/* Text Label below circle - WHITE TEXT */
.label {
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  /* Changed to White */
  opacity: 0;
  transition: opacity 0.6s ease;
  text-align: center;
}

.stage.visible .label {
  opacity: 1;
}

/* The Connecting Line - INACTIVE (Faint White) */
.timeline .line {
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  border-radius: 999px;
  overflow: hidden;
}

/* active fill with light shimmer */
.timeline .line::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.2),
      #ffffff,
      rgba(255, 255, 255, 0.2));
  background-size: 200% 100%;
  transition: all 0.8s ease-out;
}

/* Footer Text - WHITE TEXT */
.loader-footer-text {
  position: absolute;
  bottom: 60px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  /* Changed to White */
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 2;
}

.loader-footer-text.visible {
  opacity: 1;
}

/* Fade Out Animation class */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* --- RESPONSIVE STYLES --- */

@media (min-width: 769px) {
  .timeline .line {
    flex-grow: 1;
    height: 4px;
    min-width: 100px;
  }

  .timeline .line::after {
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
  }

  .timeline .line.grow::after {
    width: 100%;
    animation: lineShimmer 1.2s ease-out;
  }
}

@media (max-width: 768px) {
  #preloader {
    padding-top: 5vh;
    padding-bottom: 5vh;
    overflow-y: auto;
  }

  .timeline {
    flex-direction: column;
    gap: 8px;
    padding: 24px 18px;
    border-radius: 24px;
  }


  .watermark {
    display: none;
    /* Hide big text on mobile */
  }

  .timeline .line {
    width: 4px;
    height: 60px;
    margin: 10px 0;
  }

  .timeline .line::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
  }

  .timeline .line.grow::after {
    height: 100%;
    animation: lineShimmerVertical 1.2s ease-out;
  }

  .icon-circle {
    width: 80px;
    height: 80px;
  }

  .icon-circle img {
    width: 40px;
    height: 40px;
  }

  .loader-footer-text {
    position: relative;
    bottom: auto;
    margin-top: 40px;
  }
}

@keyframes lineShimmer {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 100% 0;
  }
}

@keyframes lineShimmerVertical {
  0% {
    background-position: 0 -100%;
  }

  100% {
    background-position: 0 100%;
  }
}

/* initial state – content is hidden until loader finishes */
#content {
  opacity: 0;
}

#content.content-enter {
  animation: contentFadeIn 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes contentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  #preloader,
  .stage,
  .icon-circle,
  .timeline .line::after,
  .loader-footer-text,
  #content {
    animation: none !important;
    transition: none !important;
  }

  #preloader {
    background-size: auto;
  }
}





/* =========================================
   HEADER & NAV HOVER EFFECTS
   ========================================= */

/* 1. Logo Hover - Subtle Zoom */
.logo {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  /* Slight zoom in */
  opacity: 0.9;
}

/* 2. Navigation Links - Sliding Gradient Underline */
.nav-links li a {
  position: relative;
  transition: color 0.3s ease;
}

/* Change text color to Brand Blue on hover */
.nav-links li a:hover {
  color: #007EFF;
}

/* The Underline Line (Hidden by default) */
.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  /* Position slightly below text */
  left: 0;
  /* Use your brand gradient */
  background: linear-gradient(90deg, #AFEF7C 0%, #017EFF 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* Expand the line on hover */
.nav-links li a:hover::after {
  width: 100%;
}

/* 3. Dropdown Menu Items Hover */
.dropdown-menu li a {
  position: relative;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  /* Prepare for border effect */
}

.dropdown-menu li a:hover {
  background-color: #F7F9FC;
  /* Very light blue/grey background */
  color: #007EFF;
  /* Brand blue text */
  padding-left: 20px;
  /* Slight shift to the right */
  border-left: 3px solid #007EFF;
  /* Blue accent line on left */
}

/* 4. "Request a Demo" Button Hover */
/* Note: Since this button uses a complex mask for the border, 
   we will use shadow and lift for the hover effect */
.button-secondary {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.button-secondary:hover {
  transform: translateY(-2px);
  /* Lifts the button up */
  /* Adds a soft blue glow shadow */
  box-shadow: 0 10px 20px rgba(0, 126, 255, 0.15);
  background-color: #fcfcfc;
}

/* 5. Dropdown Arrow Rotation */
/* This ensures the arrow spins when you hover the parent link */
.dropdown:hover .dropdown-toggle span {
  transform: rotate(180deg);
  display: inline-block;
  /* Required for transform to work */
}



/* =========================================
   HERO SECTION ANIMATIONS
   ========================================= */

/* 1. Keyframes Definition */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gentleFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  /* Moves up */
  100% {
    transform: translateY(0px);
  }
}

/* 2. Entrance Animation Classes */
.hero-animate-up {
  opacity: 0;
  /* Start hidden */
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-animate-left {
  opacity: 0;
  animation: fadeInLeft 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-animate-right {
  opacity: 0;
  animation: fadeInRight 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* 3. Continuous Float (Applied to images inside the containers) */
.float-infinite {
  animation: gentleFloat 4s ease-in-out infinite;
}

/* 4. Staggered Delays (So things don't appear all at once) */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}

.delay-800 {
  animation-delay: 0.8s;
}



/* =========================================
   DARK SECTION & CHAT WIDGET ANIMATIONS
   ========================================= */

/* 1. Chat Widget Entrance (Pop In Effect) */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }

  60% {
    opacity: 1;
    transform: scale(1.03) translateY(-5px);
    /* Slight over-scale for bounce */
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* This class applies the animation when visible */
.chat-widget.is-visible {
  animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
  /* Ensures it's hidden before animation starts */
}

/* 2. Chat Suggestion Pills Hover Effect */
.suggestion-pill {
  transition: all 0.3s ease;
}

.suggestion-pill:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 3. Chat Submit Button Hover */
.chat-submit-button {
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.chat-submit-button:hover {
  transform: scale(1.1);
  background-color: #0060c2;
}

/* 4. About Us Pill Reveal */
.about-us-pill {
  opacity: 0;
  /* Start hidden */
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-us-pill.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 5. Refine the existing fade-in-on-scroll */
/* Your current CSS starts at opacity 0.3. Let's make it 0 for a cleaner reveal */
.fade-in-on-scroll {
  opacity: 0;
  /* Change from 0.3 to 0 */
  transform: translateY(30px);
  /* Change from 20px to 30px for more movement */
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   PRODUCT FEATURES ANIMATIONS
   ========================================= */

/* 1. Feature Image Hover - Subtle Scale & Shadow */
.feature-image img {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
  will-change: transform;
  /* Performance optimization */
}

.feature-image:hover img {
  transform: scale(1.03);
  /* Slight zoom in */
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
  /* Deeper shadow */
}

.feature-item-content {
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.4s ease;
}

.text-gradient-red,
.text-gradient-spacezap,
.text-gradient-cyan,
.text-gradient-magenta {
  background-size: 200% auto;
  transition: background-position 0.5s ease;
}

.feature-block:hover .text-gradient-red,
.feature-block:hover .text-gradient-spacezap,
.feature-block:hover .text-gradient-cyan,
.feature-block:hover .text-gradient-magenta {
  background-position: right center;
}


/* =========================================
   FAQ, CONTACT & FOOTER ANIMATIONS
   ========================================= */

/* 1. Form Input Focus Animation */
.form-group input,
.form-group select,
.form-group textarea {
  transition: all 0.3s ease;
  border: 1px solid #f7f7f7;
  /* Default border */
}

/* When user clicks inside an input */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background-color: #fff;
  border-color: #007EFF;
  /* Blue border */
  box-shadow: 0 0 0 4px rgba(0, 126, 255, 0.1);
  /* Blue glow ring */
  transform: translateY(-2px);
}

/* 2. FAQ Item Hover */
.faq-item {
  transition: background-color 0.3s ease;
}

.faq-item:hover .faq-item-header h3 {
  color: #007EFF;
  /* Turn title blue on hover */
  transition: color 0.3s ease;
}

/* 3. Footer Background Text Parallax */
/* We make the big text start lower and fade in */
.footer-bg-text {
  opacity: 0;
  transform: translateX(-50%) translateY(50px);
  /* Start lower */
  transition: opacity 1s ease, transform 1s ease;
}

.footer-bg-text.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* 4. Social Links Hover */
.footer-social-links a {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-links a:hover {
  color: #007EFF;
  transform: translateY(-3px);
}



/* =========================================
   SCROLL-SCRUB (FINAL STABLE VERSION)
   ========================================= */

.about-us-content {
  max-width: 1250px;
  margin: 0 auto 100px auto;
  text-align: center;
  padding: 0 20px;
}

.scroll-reveal-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  /* Regular/Thin */
  font-size: 58px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 0;
  display: inline-block;
}

/* The Individual Word */
.reveal-word {
  color: #666;
  /* Default Grey */
  opacity: 0.2;
  /* Very faint */

  /* FASTER TRANSITION for responsive feel */
  transition: opacity 0.1s linear, color 0.1s linear;

  display: inline-block;
  margin-right: 0.25em;
  will-change: opacity, color;
}

/* The Active State */
.reveal-word.is-active {
  color: #ffffff;
  /* White */
  opacity: 1;
  /* Fully visible */
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  /* Nice Glow */
}

/* --- MOBILE --- */
@media (max-width: 992px) {
  .scroll-reveal-text {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .about-us-content {
    margin-bottom: 60px;
  }

  .scroll-reveal-text {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
}


/* =========================================
   TOOLKIT SECTION HOVER EFFECTS (UPDATED)
   ========================================= */

/* 1. Make the whole card clickable/interactive */
.toolkit-card {
  cursor: pointer;
}

/* 2. Animate the Image Wrapper (The Grey Box) */
.toolkit-image-wrapper {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease,
    background-color 0.3s ease;
  will-change: transform;
}

/* On Card Hover: Lift the box and add a soft shadow */
.toolkit-card:hover .toolkit-image-wrapper {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border: 1px solid #f0f0f0;
}

/* 3. Animate the Image Inside */
.toolkit-image-wrapper img {
  transition: transform 0.6s ease;
}

.toolkit-card:hover .toolkit-image-wrapper img {
  transform: scale(1.1);
}

/* 4. Animate the Text Headings - GRADIENT EFFECT */
.toolkit-text h3 {
  transition: transform 0.3s ease;
  display: inline-block;
}

/* On Card Hover: Apply the Red/Blue Gradient to the text */
.toolkit-card:hover .toolkit-text h3 {
  /* Define the specific gradient used in "Conversational Analytics" */
  background: linear-gradient(102deg, #2A90EF 0%, #FF0004 100%);

  /* Clip the background to the text */
  -webkit-background-clip: text;
  background-clip: text;

  /* Make the text transparent so the background shows through */
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* Move slightly to the right */
  transform: translateX(5px);
}

/* Ensure existing gradient spans inside don't break the flow */
.toolkit-card:hover .toolkit-text h3 span {
  -webkit-text-fill-color: transparent;
}


/* =========================================
   TEXT WRITING ANIMATION (Empowers Section)
   ========================================= */

/* Hide the main container briefly while JS processes the words */
.empowers-title {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.empowers-title.initialized {
  opacity: 1;
}

/* The individual word style */
.anim-word {
  display: inline-block;
  /* Allows animation while keeping flow */
  opacity: 0;
  transform: translateY(20px);
  /* Start slightly lower */
  filter: blur(8px);
  /* Start blurry */

  /* The transition creates the "writing" motion */
  transition: opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.6s ease;

  margin-right: 0.25em;
  /* Maintain spacing between words */
  white-space: nowrap;
  /* Keep words intact */
  will-change: transform, opacity, filter;
}

/* The Active State (Visible) */
.anim-word.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


/* =========================================
   SPACEZAP HOVER EFFECTS
   ========================================= */

/* 1. Design Automation Cards */
.automation-card {
  cursor: pointer;
}

.automation-image-wrapper {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease,
    background-color 0.3s ease;
  will-change: transform;
}

/* Hover: Lift and Shadow */
.automation-card:hover .automation-image-wrapper {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border: 1px solid #f0f0f0;
}

.automation-image-wrapper img {
  transition: transform 0.6s ease;
}

/* Hover: Zoom Image */
.automation-card:hover .automation-image-wrapper img {
  transform: scale(1.05);
}

/* Hover: Text Slide */
.automation-text h3 {
  transition: transform 0.3s ease;
  display: inline-block;
}

.automation-card:hover .automation-text h3 {
  transform: translateX(5px);
}

/* Hover: Magenta Gradient Interaction */
.automation-card:hover .automation-text h3 .text-gradient-magenta {
  /* Ensure the gradient persists and shimmers */
  background: linear-gradient(to right, #C900C2, #2A90EF);
  background-size: 200% auto;
  background-position: right center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}



/* =========================================
   RESTROMIND HOVER EFFECTS
   ========================================= */

/* Challenges Section Cards */
.features-grid .feature-card {
  cursor: pointer;
  padding: 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  /* Prevents layout jump on hover */
}

.features-grid .feature-card:hover {
  background-color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  border-color: #f0f0f0;
}

.features-grid .feature-card:hover .feature-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Simple Steps Hover Animation */
.step-item {
  transition: all 0.3s ease;
}

.step-item:hover {
  padding-left: 20px;
  /* Slide right on hover */
  background-color: #fff;
}


/* =========================================
   MOBILE FIX: HERO SPACING
   ========================================= */

@media (max-width: 768px) {

  .hero-content {
    padding-top: 130px !important;
    /* Increased from 40px */
  }

  .about-us-title {
    margin-top: 10px;
    font-size: 36px;
    line-height: 1.2;
  }
}



/* Disable cursor glow while preloader is active */
body.loading .tnl-cursor-glow {
  opacity: 0 !important;
  pointer-events: none;
}



.tnl-cursor-glow {
  position: fixed;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(128, 133, 234, 0.95)),
    radial-gradient(circle, rgb(8, 124, 239));
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scaleX(1) scaleY(1);
  opacity: 1;
  transition:
    transform 0.12s ease-out,
    opacity 0.25s ease-out;
}

/* Pulse keyframes */
@keyframes tnlGlowPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.25);
  }

  100% {
    transform: translate(-50%, -50%) scale(0.9);
  }
}



/* ===== PAGE REVEAL BRICK EFFECT – FINAL ===== */

#reveal-grid {
  position: fixed;
  inset: 0;
  z-index: 9998;
  /* below preloader (9999) but above site */
  pointer-events: none;
  display: none;
}

#reveal-grid.active {
  display: grid;
  /* fallback values, will be overridden by JS via CSS vars */
  grid-template-columns: repeat(var(--cols, 8), 1fr);
  grid-template-rows: repeat(var(--rows, 5), 1fr);
  gap: 6px;
  padding: 6px;
  /* this is the color BETWEEN bricks */
  background: #020617;
}

/* each individual brick */
.reveal-tile {
  background: #1d4ed8;
  /* bright-ish blue brick */
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.6),
    0 10px 25px rgba(15, 23, 42, 0.7);
  transform-origin: center;
  animation: tileReveal 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes tileReveal {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}

/* Mobile: fewer bigger bricks */
@media (max-width: 768px) {
  #reveal-grid.active {
    gap: 4px;
    padding: 4px;
  }

  .reveal-tile {
    border-radius: 6px;
  }
}

/* Content fade in (tie-in with the loader JS) */
#content {
  opacity: 0;
}

#content.content-enter {
  animation: contentFadeIn 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes contentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Accessibility – if user prefers reduced motion, skip bricks */
@media (prefers-reduced-motion: reduce) {

  #reveal-grid,
  #reveal-grid.active,
  .reveal-tile,
  #content.content-enter {
    animation: none !important;
    transition: none !important;
  }

  #reveal-grid {
    display: none !important;
  }

  #content {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}


/* ===== HERO LAYOUT UPDATE ===== */



.hero-text-block {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.hero-text-block .headline-line {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.hero-text-block .headline-line:nth-child(1) {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
}

.hero-text-block .headline-line:nth-child(2) {
  font-size: clamp(1.8rem, 2.7vw, 2.3rem);
  color: #6b7280;
  /* subtle gray */
}

.hero-text-block .headline-line:nth-child(3) {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
}

/* reuse your gradient text style if already defined */
.text-gradient {
  background: linear-gradient(90deg, #22c55e, #22c1c3, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* soft up–down float animation for the whole text block */
.hero-text-floating {
  animation: heroTextFloat 6s ease-in-out infinite;
}

@keyframes heroTextFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ===== HERO VIDEO FRAME ===== */

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

.hero-video-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 16 / 10;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.5), rgba(15, 23, 42, 1));
  border-radius: 24px;
  padding: 8px;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

/* inner video */
.hero-video-frame video {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

/* animated white border glow */
.hero-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.75);
  pointer-events: none;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.18);
  opacity: 0.75;
}

/* subtle floating for the frame too */
.hero-video-frame {
  animation: heroVideoFloat 7s ease-in-out infinite;
}

@keyframes heroVideoFloat {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(8px) scale(1.01);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* play button sitting on the border */
.hero-video-play {
  position: absolute;
  right: 14px;
  bottom: -18px;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ffffff, #e5e7eb);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.35),
    0 0 0 8px rgba(15, 23, 42, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  outline: none;
}

.hero-video-play-icon {
  width: 0;
  height: 0;
  border-left: 12px solid #1d4ed8;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* little hover / pulse */
.hero-video-play:hover {
  transform: translateY(-50%) translateY(-2px);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.45),
    0 0 0 8px rgba(37, 99, 235, 0.8);
}

.hero-video-play:active {
  transform: translateY(-50%) translateY(0);
}

/* optional breathing glow */
.hero-video-play {
  animation: heroPlayPulse 3s ease-in-out infinite;
}

@keyframes heroPlayPulse {

  0%,
  100% {
    box-shadow:
      0 14px 30px rgba(15, 23, 42, 0.35),
      0 0 0 8px rgba(15, 23, 42, 0.85);
  }

  50% {
    box-shadow:
      0 18px 42px rgba(15, 23, 42, 0.55),
      0 0 0 12px rgba(37, 99, 235, 0.75);
  }
}

/* ===== RESPONSIVE HERO ===== */

@media (max-width: 900px) {
  .hero-top-layout {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    gap: 32px;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-text-block {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-video-frame {
    max-width: 320px;
  }

  .hero-text-block .headline-line:nth-child(1),
  .hero-text-block .headline-line:nth-child(3) {
    font-size: clamp(1.9rem, 7vw, 2.2rem);
  }

  .hero-text-block .headline-line:nth-child(2) {
    font-size: clamp(1.4rem, 5.5vw, 1.7rem);
  }
}



/* === HERO LAYOUT: text + video === */



.hero-text-block {
  max-width: 560px;
}

/* keep your headline typography clean */
.hero-text-block .headline-line {
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.hero-text-block .headline-line:nth-child(1),
.hero-text-block .headline-line:nth-child(3) {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
}

.hero-text-block .headline-line:nth-child(2) {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  color: #6b7280;
}

/* gentle up/down float */
.hero-text-floating {
  animation: heroTextFloat 10s ease-in-out infinite;
}

@keyframes heroTextFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0);
  }
}

/* === VIDEO COLUMN + FLOATING ICONS === */

.hero-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* your existing frame can stay – just nudge closer */
.hero-video-frame {
  max-width: 380px;
  width: 100%;
  transform: translateX(-10px);
  /* pulls video closer to text */
}

/* floating round icons around video – subtle, modern */
.hero-float-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #fbfaf9, #e5e7eb);
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.25),
    0 0 0 1px rgba(249, 250, 250, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition:
    transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.22s ease;
  cursor: default;
}

.hero-float-icon span {
  font-size: 18px;
}

/* positions */
.hero-float-icon--top {
  top: -18px;
  left: -18px;
  animation: heroIconFloat1 8s ease-in-out infinite;
}

.hero-float-icon--bottom {
  bottom: -18px;
  left: 10px;
  animation: heroIconFloat2 9s ease-in-out infinite;
}

/* subtle idle float */
@keyframes heroIconFloat1 {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.02);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes heroIconFloat2 {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(5px) scale(1.02);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* hover: shrink & stretch slightly */
.hero-float-icon:hover {
  transform: scale(1.08, 0.94);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(148, 163, 184, 0.9);
}

/* === Responsive === */

@media (max-width: 900px) {
  .hero-top-layout {
    grid-template-columns: minmax(0, 1fr);
    max-width: 100%;
    row-gap: 28px;
  }

  .hero-text-block {
    max-width: 100%;
    text-align: center;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-video-frame {
    transform: translateX(0);
    max-width: 320px;
  }

  .hero-float-icon--top {
    top: -14px;
    left: 12px;
  }

  .hero-float-icon--bottom {
    bottom: -14px;
    left: 40px;
  }
}



/* ===== PRODUCT FEATURES ANIMATIONS (CLEAN VERSION) ===== */

/* Start: hidden & ready to animate */
.product-features .feature-text.fade-in-on-scroll,
.product-features .feature-image.fade-in-on-scroll {
  opacity: 0;
}

/* ODD blocks: text from left, image from right */
.product-features .feature-block:nth-child(1) .feature-text.fade-in-on-scroll.is-visible,
.product-features .feature-block:nth-child(3) .feature-text.fade-in-on-scroll.is-visible {
  animation: featureTextFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.product-features .feature-block:nth-child(1) .feature-image.fade-in-on-scroll.is-visible,
.product-features .feature-block:nth-child(3) .feature-image.fade-in-on-scroll.is-visible {
  animation: featureImageFromRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
}

/* EVEN blocks: text from right, image from left */
.product-features .feature-block:nth-child(2) .feature-text.fade-in-on-scroll.is-visible,
.product-features .feature-block:nth-child(4) .feature-text.fade-in-on-scroll.is-visible {
  animation: featureTextFromRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.product-features .feature-block:nth-child(2) .feature-image.fade-in-on-scroll.is-visible,
.product-features .feature-block:nth-child(4) .feature-image.fade-in-on-scroll.is-visible {
  animation: featureImageFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
}

/* KEYFRAMES */
@keyframes featureTextFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes featureImageFromRight {
  0% {
    opacity: 0;
    transform: translateX(60px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes featureTextFromRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes featureImageFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}



/* Card-like hover on product images */

.product-features .feature-image img {
  display: block;
  width: 100%;
  border-radius: 22px;
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(148, 163, 184, 0.35);
  transform: translateY(0) scale(1);
  transition:
    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.5s ease;
}

.product-features .feature-image:hover img {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.45),
    0 0 0 1px rgba(148, 163, 184, 0.5);
}


/* ===== HERO INTRO ANIMATION (ONCE AFTER LOADER) ===== */

/* initial state: invisible until loader finishes */
.hero-animated .hero-text-block,
.hero-animated .hero-media {
  opacity: 0;
}

/* when JS adds .hero-intro, run both intro + loop animations */
.hero-animated.hero-intro .hero-text-block {
  animation:
    heroTextEnter 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    heroTextFloat 9s ease-in-out 1s infinite;
}

.hero-animated.hero-intro .hero-media {
  animation:
    heroMediaEnter 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    heroMediaFloat 10s ease-in-out 1.1s infinite;
}

/* Text: slide from left + slight lift/scale */
@keyframes heroTextEnter {
  0% {
    opacity: 0;
    transform: translateX(-60px) translateY(18px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

/* Video: slide from right + slight lift/scale */
@keyframes heroMediaEnter {
  0% {
    opacity: 0;
    transform: translateX(60px) translateY(10px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

/* gentle float / micro-movement for text */
@keyframes heroTextFloat {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-4px);
  }

  40% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-1px) rotate(-0.35deg);
  }

  50% {
    transform: translateY(1px) rotate(0.35deg);
  }

  55% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

/* slow float for video (no wiggle, just premium drift) */
@keyframes heroMediaFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }

  100% {
    transform: translateY(0);
  }
}



/* ============================================
   HERO TEXT - RAMOS STYLE (FULL WIDTH)
============================================ */

/* Hero Content */
.hero-content {
  padding: 220px 0 0;
  text-align: center;
}

/* RAMOS LAYOUT - Full width text */
.hero-top-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 100%;
  /* Remove width constraint */
  margin: 0 auto 80px auto;
  padding: 0 40px;
  /* Just side padding */
}

/* Text Block - FULL WIDTH */
.hero-text-block {
  width: 100%;
  max-width: 100%;
  /* No constraint */
  text-align: center;
  flex: none;
}

/* Ramos-style HUGE Typography - FULL SCREEN WIDTH */
.headline-line {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(60px, 8.5vw, 140px);
  /* Responsive size based on viewport */
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  /* Relative spacing */
  color: #000000;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* First line stays black and bold */
.headline-line:nth-child(1) {
  font-weight: 600;
  color: #000000;
}

/* Second line (lighter gray like Ramos) - regular weight */
.headline-line:nth-child(2) {
  color: #d0d0d0;
  font-weight: 400;
}

/* Third line with gradient - regular weight */
.headline-line:nth-child(3) {
  font-weight: 400;
}

/* Keep your gradient styling */
.headline-line .text-gradient {
  background: linear-gradient(102deg, #AFEF7C 0%, #007EFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.headline-line .text-gray {
  color: #d0d0d0;
  font-weight: 400;
}

/* Video Section */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-video-frame {
  position: relative;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 60px 140px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.03);
  background: #f5f5f5;
}

.hero-video-frame video {
  width: 100%;
  height: auto;
  display: block;
}

/* Play Button */
.hero-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 1);
}

.hero-video-play-icon {
  width: 0;
  height: 0;
  border-left: 22px solid #007EFF;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
}

/* Bottom Content */
.hero-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 700px;
  margin: 0 auto;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #8a8a8a;
  letter-spacing: -0.3px;
  margin: 0;
  line-height: 1.5;
}

.button-primary {
  display: inline-block;
  background-color: #007eff;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 18px 42px;
  border-radius: 1000px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 35px rgba(0, 126, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button-primary:hover {
  background-color: #0066cc;
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 126, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-top-layout {
    padding: 0 30px;
  }
}

@media (max-width: 992px) {
  .hero-top-layout {
    gap: 60px;
    padding: 0 24px;
  }

  .hero-video-frame {
    max-width: 650px;
  }

  .hero-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 180px 0 0;
  }

  .hero-top-layout {
    padding: 0 20px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-bottom: 100px;
  }

  .hero-content {
    padding: 160px 0 0;
  }

  .hero-top-layout {
    padding: 0 16px;
  }

  .hero-subtitle {
    font-size: 16px !important;
  }

  .hero-video-frame {
    border-radius: 20px;
  }

  .hero-video-play {
    width: 65px;
    height: 65px;
  }

  .hero-video-play-icon {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }

  .hero-top-layout {
    gap: 40px;
  }

  .hero-bottom-content {
    gap: 28px;
    padding: 0 20px;
  }

  .button-primary {
    width: 100%;
    max-width: 320px;
    font-size: 15px;
    padding: 16px 36px;
  }
}



/* ============================================
   DARK SECTION - FULL WIDTH TEXT FIX
   ============================================ */

/* 1. Make the container wider */
.dark-section .container {
  max-width: 100% !important;
  padding: 0 40px;
}

/* 2. Allow text content to stretch */
.about-us-content {
  max-width: 1600px !important;
  /* Increased from ~1000px to 1600px */
  width: 95% !important;
  /* Takes up 95% of screen width */
  margin: 0 auto 60px auto;
  /* Center it */
  text-align: center;
}

/* 3. Adjust Font Size for better fit */
/* Since there is more text, we shrink the max size slightly so it's readable */
.scroll-reveal-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  /* Responsive size: 24px mobile -> 56px desktop */
  font-size: clamp(24px, 3.5vw, 56px) !important;
  line-height: 1.4 !important;
  /* More breathing room between lines */
  letter-spacing: -0.02em;
}

/* 4. Fix mobile padding */
@media (max-width: 768px) {
  .about-us-content {
    width: 100% !important;
    padding: 0 20px;
  }

  .dark-section .container {
    padding: 0 10px;
  }
}


.faq-item-content ul {
  margin: 15px 0;
  padding-left: 25px;
  list-style-type: disc;
}

.faq-item-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.faq-item-content p {
  margin-bottom: 10px;
}



/* ============================================
   PRODUCT PAGE SPECIFIC STYLES
   ============================================ */

/* 1. RESTORED GRADIENT (Blue to Red) */
.text-gradient-red {
  background: linear-gradient(90deg, #2A90EF 0%, #FF0004 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* 2. SLIDE ANIMATIONS */
/* Initial States */
.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Active States (Triggered by JS) */
.is-visible.slide-in-left,
.is-visible.slide-in-right,
.is-visible.slide-in-up {
  opacity: 1;
  transform: translate(0);
}

/* 3. HERO PADDING FIX */
.datadime-hero {
  /* Tighten top spacing to remove the big gap */
  padding-bottom: 80px;
  background-color: #ffffff;
  overflow: hidden;
  /* Prevents scrollbar during animation */
}


/* 5. RESPONSIVE FIXES */
@media (max-width: 992px) {
  .datadime-hero-header-layout {
    flex-direction: column-reverse;
    /* Image top, Text bottom on mobile? Or standard stack */
    text-align: center;
    gap: 40px;
  }

}


/* === EMPOWER LIGHT SECTION - MODERN AESTHETIC === */
.empower-light-section {
  background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
  /* Subtle gradient background */
  padding: 120px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Subtle animated background pattern */
.empower-light-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(175, 239, 124, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 126, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.empower-animation-wrapper {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}

.empower-heading {
  font-family: 'Inter', sans-serif;
  font-size: 58px;
  font-weight: 500;
  /* Slightly bolder */
  letter-spacing: -2px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  /* Subtle text shadow */
}

/* Individual word animation with modern effects */
.empower-heading .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  /* Added scale effect */
  filter: blur(8px);
  margin-right: 0.3em;
  transition:
    opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Visible state with gradient highlight on some words */
.empower-show .word {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Gradient effect on key words (every 5th word) */
.empower-show .word:nth-child(5n) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Alternative gradient for variety (every 7th word) */
.empower-show .word:nth-child(7n) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Subtle glow effect on animated words */
.empower-show .word:hover {
  text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
  transform: translateY(-2px) scale(1.02);
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 1600px) {
  .empower-animation-wrapper {
    max-width: 1300px;
  }
}

@media (max-width: 1400px) {
  .empower-animation-wrapper {
    max-width: 1100px;
  }
}

@media (max-width: 1200px) {
  .empower-animation-wrapper {
    max-width: 900px;
  }

  .empower-heading {
    font-size: 52px;
  }
}

@media (max-width: 992px) {
  .empower-light-section {
    padding: 80px 0;
  }

  .empower-animation-wrapper {
    max-width: 700px;
    padding: 0 40px;
  }

  .empower-heading {
    font-size: 42px;
    letter-spacing: -1.5px;
  }
}

@media (max-width: 768px) {
  .empower-light-section {
    padding: 60px 0;
  }

  .empower-animation-wrapper {
    max-width: 100%;
    padding: 0 20px;
  }

  .empower-heading {
    font-size: 32px;
    letter-spacing: -1px;
    line-height: 1.3;
  }

  /* Disable hover effects on mobile */
  .empower-show .word:hover {
    transform: translateY(0) scale(1);
    text-shadow: none;
  }
}



/* FAQ See More Functionality */
.faq-hidden-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-hidden-items.expanded {
  max-height: 10000px;
  /* Large enough to show all content */
}

.faq-see-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.faq-see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.faq-see-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.faq-see-more-btn:active {
  transform: translateY(0);
}

.faq-see-more-btn .btn-icon {
  transition: transform 0.3s ease;
}

.faq-see-more-btn.expanded .btn-icon {
  transform: rotate(180deg);
}

/* Hide button when expanded */
.faq-see-more-btn.hide-button {
  opacity: 0;
  pointer-events: none;
  margin-top: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .faq-see-more-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}



/* ============================================
   FOUNDING TEAM SECTION
   ============================================ */

.team-section {
  padding: 120px 0;
  background-color: #ffffff;
  border-top: 1px solid #f0f0f0;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.team-card {
  flex: 1 1 350px;
  /* Responsive flex basis */
  max-width: 400px;
  background-color: #fcfcfc;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-card:hover {
  transform: translateY(-10px);
  background-color: #ffffff;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.team-name {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0d0d0d;
  margin: 0 0 5px 0;
}

.team-role {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;

  /* Gradient Text */
  background: linear-gradient(90deg, #AFEF7C 0%, #007EFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Closing Statement Box */
.team-footer-box {
  text-align: center;
  max-width: 900px;
  margin: 60px auto 0 auto;
  /* Spacing from grid above */
  padding: 60px 40px;

  /* Modern Glass/Gradient Background */
  background: linear-gradient(145deg, #ffffff, #f5f7fa);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 30px;

  /* Soft Elevation Shadow */
  box-shadow:
    0 20px 40px -10px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);

  position: relative;
  overflow: hidden;
}

.team-footer-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #AFEF7C 0%, #007EFF 100%);
}

.team-footer-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.team-footer-box p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 100%;
    max-width: 100%;
  }
}


@media (max-width: 768px) {
  .team-footer-box {
    padding: 40px 24px;
    margin-top: 40px;
    border-radius: 20px;
  }

  .team-footer-box h3 {
    font-size: 22px;
  }

  .team-footer-box p {
    font-size: 16px;
  }
}




/* ============================================
   TEAM CARD ANIMATION (Scale Up Reveal)
   ============================================ */

/* Initial State (Hidden) */
.scale-up-reveal {
  opacity: 0;
  transform: scale(0.9) translateY(40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy pop effect */
  will-change: opacity, transform;
}

/* Visible State */
.scale-up-reveal.is-visible {
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
}