/* Main glowing cursor */
/* Glowing cursor */
.title-break {
  white-space: nowrap;
  /* Default: single line on large screens */
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 40px 15px rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  /* hidden by default */
}

/* Trail glow circles */
.trail {
  position: fixed;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 25px 10px rgba(255, 255, 255, 0.5);
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  animation: fadeOut 0.8s linear forwards;
}

/* Trail fade effect */
@keyframes fadeOut {
  from {
    opacity: 0.4;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0);
  }
}


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

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


@font-face {
    font-family: 'Inter';
    src: url('../inter-font-family/Inter-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../inter-font-family/Inter-Bold.otf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../inter-font-family/Inter-Light-BETA.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../inter-font-family/Inter-Medium.otf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../inter-font-family/Inter-Thin-BETA.otf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
  font-family: 'Denton';
  src: url('Denton-Font-Family/Denton Test Thin 100.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Denton';
  src: url('Denton-Font-Family/Denton Test Light 300.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Denton';
  src: url('Denton-Font-Family/Denton Test Regular 400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Denton';
  src: url('Denton-Font-Family/Denton Test Medium 500.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Denton';
  src: url('Denton-Font-Family/Denton Test Bold 700.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Denton';
  src: url('Denton-Font-Family/Denton Test ExtraBold 800.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Denton';
  src: url('Denton-Font-Family/Denton Test Black 900.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

.navbar {
  /* background-color: transparent; */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
}

.cont-fluid {
  padding: 0px 150px;
}

.cont-fluid ul a,
.cont-fluid ul a button {
  font-family: Inter;
  text-decoration: none;
  color: black;
}

.cont-fluid ul a {
  color: #fff !important;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.cont-fluid ul a:hover {
  color: #fff;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.5),
    0 0 4px rgba(255, 255, 255, 0.3);
}

.cont-fluid ul a button {
  transition: text-shadow 0.3s ease, box-shadow 0.3s ease;
}

.cont-fluid ul a button:hover {
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.5),
    0 0 4px rgba(255, 255, 255, 0.3);
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.4),
    0 0 10px rgba(255, 255, 255, 0.3);
}

.free-access-btn {
  transition: text-shadow 0.3s ease, box-shadow 0.3s ease;
}

.free-access-btn:hover {
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.5),
    0 0 4px rgba(255, 255, 255, 0.3);
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.4),
    0 0 10px rgba(255, 255, 255, 0.3);
}

.sliders {
  width: 100%;
  /* Keep the height for the entire section/viewport */
  height: 1200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(0deg, #060606 2%, #181818 100%);
  margin-top: -90px;
}

.sliders-img {
  width: 100%;
  height: 100%;
  position: absolute;
  /* Removed overflow: hidden here, use .sliders overflow */
}

.img-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
}

.sliders-img img {
  width: 100%;
  height: 1200px;
  /* Individual image height */
  object-fit: cover;
}

.sliders-content {
  width: 40%;
  position: absolute;
  right: 0;
  /* CRITICAL: Set height to match the slide viewport */
  height: 100%;
  /* Same as .sliders height: 1200px */
  padding: 0px 0 100px 0;
  /* Use padding for vertical position instead of margin/commented out padding */
  /* CRITICAL: Hides the text that is not in the viewing area */
  overflow: hidden;
  /* Add this to help visually center the content within the available space */
  /* display: flex;
    align-items: center; */
}

.text-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
  /* Initial position: text track should be at the top of its container */
  /* transform: translateY(0);  */
}

.text-slide {
  /* CRITICAL: Height MUST match the .sliders height (1200px) */
  height: 1200px;
  display: flex;
  flex-direction: column;
  /* CRITICAL: Center text content vertically within the 1200px space */
  justify-content: center;
}

/* ... rest of your text styling ... */

.sliders-content h4 {
  background: linear-gradient(180deg, #FFFFFF 0%, #373737 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "Denton", sans-serif;
  font-weight: 700;
  font-size: 226.63px;
  line-height: 195px;
  margin: 0;
  margin-bottom: 20px;
}

.sliders-content p {
  color: #D8D5D5;
  font-family: Inter;
  font-weight: 400;
  font-size: 26px;
  max-width: 90%;
}

/* ================= SMART TOOLS SECTION ================= */

/* Ensure image touches bottom of card */
.data-integration {
  position: relative;
}

.offcanvas {
  background-color: rgba(27, 27, 27, 0.85) !important;
}

.offcanvas .btn-close {
  background: transparent;
  opacity: 1;
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FE700AF5' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}


.data-integration img.align-bottom {
  /* margin-top: auto; */
  /* pushes image to bottom */
  /* align-self: flex-start; */
  /* keeps image left-aligned on desktop */
}

.smart-goals p {
  text-align: center !important;
}


/* For smaller screens, center the image */
@media (max-width: 768px) {
  .data-integration img.align-bottom {
    align-self: center;
    margin-top: 15px;
  }

  .Data-Int-cont {
    width: 100% !important;
  }

  .healthy-insights-cont {
    width: 100% !important;
  }
}


.smart-tools {
  background-color: #F2F4F5;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
  position: relative;
  z-index: 1;
}

/* Heading */
.smart-tools-head {
  color: #171719;
  font-size: 60px;
  font-family: 'Denton Test', serif;
  font-weight: 400;
  line-height: 1.2;
}

.smart-tools-head h1 {
  margin: 0;
  font-family: 'Inter', serif;
  font-weight: 400;
  font-size: 26px;
  text-align: center;
}

/* SMART GOALS BOX */
.smart-goals,
.healthy-insights,
.data-integration {
  background-color: #fbfbfb;
  border-radius: 20px;
  box-shadow: 0px 1px 80px 0px #0000000D;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 30px 48px !important;
  gap: 30px;
}

.smart-goals:hover,
.healthy-insights:hover,
.data-integration:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 60px 0px #00000015;
}

.Data-Int-cont {
  width: 50%;
}

.healthy-insights-cont {
  width: 50%;
}

.data_integration_image {
  width: 50%;
}

.healthy_insights_image {
  width: 60% ! important;
}

.data-integration {
  padding-bottom: 0px ! important;
}

.smart-goals h3,
.healthy-insights h3,
.data-integration h3 {
  font-family: 'Inter', serif;
  font-weight: 700;
  font-size: 3.12rem;
  color: #171719;
  margin-bottom: 15px;
}

.smart-goals p,
.healthy-insights p,
.data-integration p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  color: #333;
  max-width: 100%;
  word-wrap: break-word;
}

/* Card images */
.smart-goals-img {
  width: 100%;
  max-width: 18.75rem;
  height: 30rem;
  object-fit: contain;
}

.card-img1 {
  width: 100%;
  /* max-width: 300px; */
  height: auto;
  object-fit: contain;
}

.smart-goals h3 {
  font-size: 3.12rem ! important;
}

.healthy-insights h3,
.data-integration h3 {
  font-family: Inter;
  font-weight: 700;
  font-size: 3.12rem !important;
  line-height: 60px;
  padding-left: 0% !important;

}

.healthy-insights p,
.data-integration p {
  font-family: Inter;
  font-weight: 400;
  font-size: 26px;
  text-align: left;
  line-height: 36px;

}

.data_integration_image {
  top: 0px !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  .smart-goals h3,
  .healthy-insights h3,
  .data-integration h3 {
    font-size: 45px;
  }

  .smart-goals p,
  .healthy-insights p,
  .data-integration p {
    font-size: 20px;
  }

  .smart-goals-img,
  .card-img {
    max-width: 250px;
  }
}

@media (max-width: 575.98px) {
  .smart-tools-head {
    font-size: 36px;
    padding: 20px 10px;
  }

  .smart-goals,
  .healthy-insights,
  .data-integration {
    flex-direction: column !important;
    text-align: center !important;
  }

  .smart-goals-img,
  .card-img {
    width: 70%;
    margin: 0 auto;
  }

  .healthy-insights p,
  .data-integration p {
    line-height: 1.4;
  }
}

.smart-goals,
.healthy-insights,
.data-integration {
  overflow: hidden;
}

/* Tablet breakpoint - 768px */
@media (max-width: 768px) {

  .smart-tools-head {
    font-size: 42px;
    padding: 15px 10px;
  }

  .smart-goals,
  .healthy-insights,
  .data-integration {
    flex-direction: column !important;
    text-align: center !important;
    width: 100%;
  }

  .smart-goals {
    gap: 0px !important;
  }

  .smart-goals-img,
  .card-img {
    width: 90%;
    max-width: 280px;
    margin: 0 auto;
  }

  .smart-goals h3,
  .healthy-insights h3,
  .data-integration h3 {
    font-size: 40px;
  }

  .smart-goals p,
  .healthy-insights p,
  .data-integration p {
    font-size: 22px;
    line-height: 1.4;
  }

  /* Center images for right-side cards */
  .healthy-insights,
  .data-integration {
    align-items: center !important;
  }

  /* Remove extra margin on images */
  .healthy-insights img,
  .data-integration img {
    margin: 0 auto 15px auto !important;
  }

  /* Ensure text below image is centered */
  .healthy-insights .flex-fill,
  .data-integration .flex-fill {
    text-align: center;
  }
}



/* 
.smart-tools {
  background-color: #F2F4F5;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
  padding-bottom: 80px;
  z-index: 1;
  position: relative;
}

.smart-tools-head {
  color: #171719;
  font-size: 60px;
  text-align: center;
  padding: 50px 0px;
  font-family: 'Inter';
  font-weight: 400;
}

.smart-goals {
  border-radius: 20px;
  padding: 20px 10px;
  width: 50%;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 1px 120px 0px #0000000D;
}

.smart-goals h3 {
  font-family: Denton Test;
  font-weight: 700;
  font-size: 55px;
}

.smart-goals p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 26px;
  text-align: center;
  vertical-align: middle;
}

.smart-tools-content {
  padding: 0px 100px;
  justify-content: space-between;
}


.healthy-insights,
.data-integration {
  border-radius: 20px;
  padding: 20px 10px;
  height: 50%;

}

.healthy-insights h3,
.data-integration h3 {
  font-family: Denton Test;
  font-weight: 700;
  font-style: Bold;
  font-size: 55px;

}

.healthy-insights p,
.data-integration p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 26px;
  vertical-align: middle;
}

.insight-integration {
  flex-direction: column;
  width: 50%;
}

.healthy-insights {
  gap: 50px;
  box-shadow: 0px 1px 120px 0px #0000000D;
}

.data-integration {
  gap: 50px;
  box-shadow: 0px 1px 120px 0px #0000000D;
}

.data-integration img,
.healthy-insights img {
  width: 50%;
}

.data-integration img {
  height: 114.5%;
} */


.faq-head {
  width: fit-content;
  /* shrink container to text width */
  margin: 0 auto;
  /* center the container */
  text-align: left;
  /* keep text left-aligned inside */
}

.faq-label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 5px;
  color: #171719;
}

.faq-main-heading {
  font-family: 'Denton Test', serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #1B1B1B;
  margin: 0;
}


.faqs {
  background-color: #F2F4F5;
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
}

.faq-content {
  padding: 80px 0;
}

.faq-label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #171719;
  text-transform: uppercase;
  letter-spacing: 5px;
  display: block;
  margin: 0 auto;
  /* center horizontally */
}

.faq-main-heading {
  font-family: 'Denton Test', serif;
  font-weight: 700;
  font-size: 48px;
  color: #1B1B1B;
  margin-top: 0;
  /* remove spacing above */
  margin-bottom: 30px;
  /* spacing before accordion */
  line-height: 1.2;
  /* tight line spacing */
}

/* Bold FAQ questions */
.custom-accordion .accordion-item {
  margin-bottom: 15px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ddd;
  background-color: #fff;
}

.custom-accordion .accordion-button {
  border-radius: 10px;
  margin-bottom: 0;
  /* font-family: 'Inter', sans-serif; */
  font-weight: 700;
  /* bold questions */
  /* font-size: 18px; */
  color: #171719;

  font-family: Inter;
  font-size: 26px;

}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-body {
  font-family: 'Inter', sans-serif;
  font-size: 20px !important;
  font-weight: 400;
  color: #2A2A2A;
  line-height: 1.6;
  /* padding: 15px 20px; */
  padding: 0px 20px 15px 20px;
  text-align: justify;
}

.accordion-collapse .accordion-body {
  font-family: 'Denton Test', serif;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-main-heading {
    font-size: 40px;
  }

  .custom-accordion .accordion-button {
    font-size: 17px;
  }

  .custom-accordion .accordion-body {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .faq-main-heading {
    font-size: 32px;
  }

  .custom-accordion .accordion-button {
    font-size: 16px;
  }

  .custom-accordion .accordion-body {
    font-size: 14px;
    font-family: "Denton Test", serif;
  }
}

@media (max-width: 480px) {
  .faq-main-heading {
    font-size: 28px;
  }

  .custom-accordion .accordion-button {
    font-size: 15px;
  }

  .custom-accordion .accordion-body {
    font-size: 13px;
  }
}

/* Desktop / Default styles */
.download-options {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px 80px;
  background-color: #1B1B1B;
  border-top-left-radius: 160px;
  color: white;
  position: relative;
  overflow: visible;
  min-height: 500px;
}

.dwnld-cont {
  /* flex: 0 0 50%; */
  padding: 50px;
}

.dwnld-cont h2 {
  font-family: 'Inter', sans-serif;
  /* font-weight: bold; */
  font-size: 70px;
  line-height: 1.2;
  color: white;
}

.dwnld-cont p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  width: 75%;
  line-height: 1.6;
}

.coming {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
}

.dwnld-apps {
  display: flex;
  gap: 20px;
  width: 60%;
}

.dwnld-apps img {
  width: 120px;
  height: auto;
}

/* Phone Image on Desktop */
.dwnld-img {
  /* flex: 0 0 50%; */
  position: absolute;
  top: -100px;
  bottom: 0;
  right: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
}

.dwnld-img img {
  width: auto;
  height: 100%;
  max-height: calc(100% + 100px);
  filter: drop-shadow(0px 10px 20px rgba(255, 255, 255, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.dwnld-img img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0px 12px 25px rgba(255, 255, 255, 0.25));
}




.navbar-toggler {
  background-color: white !important;
}



.transition-header {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-scrolled {
  background-color: #1B1B1B;
  /* change this to your preferred color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}



@media (orientation:portrait) {
  .offcanvas {
    width: 35% !important;
  }
}

@media (orientation:landscape) {
  .offcanvas {
    width: 20% !important;
  }
}




/* Mobile (stack vertically) */
@media (max-width: 768px) {


  .dwnld-apps {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
  }

  .dwnld-apps img {
    width: 70px;
  }

}

/* Extra small screens */
@media (max-width: 480px) {
  .dwnld-cont h2 {
    font-size: 24px;
  }

  .dwnld-cont p {
    font-size: 12px;
  }

  .dwnld-apps img {
    width: 50px;
  }

  .dwnld-img img {
    /* max-width: 200px; */
  }
}


/* Base Footer Styling */
footer.footer {
  background-color: #1B1B1B;
  border-top: 0.2px solid #909597;
  color: white;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 12px;
  padding: 20px 180px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* allows items to wrap on small screens */
  gap: 10px;
}

.footer-links a {
  color: white;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

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

footer .copyright {
  display: flex;
  align-items: center;
  gap: 5px;
}

footer .copyright p {
  margin: 0;
}

footer .copyright img {
  width: 20px;
  height: 20px;
}


/* Responsive Styles */

/* Tablets / Medium screens */
@media (max-width: 1024px) {
  footer.footer {
    padding: 20px 60px;
    font-size: 11px;
  }

  footer .copyright img {
    width: 18px;
    height: 18px;
  }
}

/* Mobile / Small screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  footer.footer {
    padding: 20px 20px;
    font-size: 11px;
  }

  .footer-links {
    justify-content: center;
    align-items: center;
  }

  footer .copyright {
    justify-content: center;
    align-items: center;
  }
}

.secure {
  border-top-right-radius: 70px;
  border-top-left-radius: 70px;
  position: relative;
  z-index: 10;
}

.secure-bg {
  border-top-right-radius: 70px;
  border-top-left-radius: 70px;
  background-image: url('img/bg-net.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 0px;
}

.secure-content h2 {
  color: #1B1B1B;
  font-family: Denton Test;
  font-weight: 700;
  font-size: 80px;
  text-align: center;
  background-color: white;
  width: 75%;
  margin: auto;
}

.secure-content {
  width: 70%;
  margin: auto;
}

.secure-content p {
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  color: #2A2A2A;
  background-color: white;
  width: 60%;
  margin: 30px auto;
}







.dark-side {
  background: url('img/dark_side_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 0px;
  margin: -60px 0px;
  position: relative;
  overflow: hidden;
  cursor: none !important;
  background-color: #000;

  /* completely hide default mouse pointer */
}

/* Background overlay with scale effect */
.dark-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/anim_bg.png');
  /* hover background */
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1.8s ease, transform 1s ease;
  z-index: 0;
}

/* Content */
.dark-side-content {
  margin: auto;
  width: 42%;
  z-index: 2;
  position: relative;
  text-align: center;
  color: white;
}

.dark-side-content h3 {
  font-family: Inter;
  font-weight: 400;
  font-size: 60px;
  color: #FFFFFF;
  margin-bottom: -30px;
}

.dark-side-content p {
  font-family: Inter;
  font-weight: 400;
  font-size: 26px;
  color: #EDEDED;
  margin-top: -50px;
}

/* Image container to stack images perfectly */
.image-container {
  position: relative;
  width: 100%;
  height: 700px;
  /* same as image height */
  margin: auto;
}

/* Both images occupy the exact same space */
.dark-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease;
  object-fit: contain;
  /* ensures proper scaling */
}

/* Hover image initially invisible */
.dark-img.hover-img {
  opacity: 0;
}

/* Hover Effects */
/* .dark-side:hover::before {
  opacity: 1;
  transform: scale(1);
}

.dark-side:hover .default-img {
  opacity: 0;
}

.dark-side:hover .hover-img {
  opacity: 1;
} */


/* --- NEW SCROLL-TRIGGERED ANIMATION STATES --- */

/* 1. Animate the '::before' background (anim_bg.png) */
.dark-side.animate-in-view::before {
  opacity: 1;
  transform: scale(1);
  /* Expands from 0.95 to 1 */
}

/* 2. Fade out the default image */
.dark-side.animate-in-view .default-img {
  opacity: 0;
}

/* 3. Fade in the hover image */
.dark-side.animate-in-view .hover-img {
  opacity: 1;
}

/* .cursor{
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.778);
  box-shadow: 1px 1px 50px #ffffff;
  border-radius: 50%;
  z-index: 20;
  transition: all 0.2s;
} */



/* ================= BEYOND THE SCALE ================= */
.beyond-scale {
  background-color: white;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
  position: relative;
  z-index: 1;
  background-image: url('img/bg-net.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: background 0.5s ease;
}

.beyond-scale-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 60px;
  color: #171719;
}

.beyond-scale-content p {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  color: #2A2A2A;
  line-height: 1.5;
  max-width: 700px;
  position: relative;
  bottom: 101px;
}

/* PHONE CONTAINER */
.phone-container {
  width: fit-content;
  margin: auto;
  position: relative;
}

/* PHONE IMAGE */
.phone img {
  width: 700px;
  max-width: 90vw;
  position: relative;
  z-index: 0;
  transition: transform 0.5s ease;
}

/* LEFT/RIGHT IMAGE CONTAINERS */
.bg-left img,
.bg-right img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
  border-radius: 10px;
}

/* LEFT IMAGE WIDTHS */
.bg-left img:nth-child(1) {
  width: 250px;
}

.bg-left img:nth-child(2) {
  width: 350px;
}

.bg-left img:nth-child(3) {
  width: 180px;
}

/* RIGHT IMAGE WIDTHS */
.bg-right img:nth-child(1) {
  width: 170px;
}

.bg-right img:nth-child(2) {
  width: 260px;
}

.bg-right img:nth-child(3) {
  width: 300px;
}

.bg-right img:nth-child(4) {
  width: 220px;
}

/* HOVER FAN-OUT */
.phone-container:hover .bg-left img:nth-child(1) {
  opacity: 1;
  transform: translate(-420px, -310px) scale(1);
}

.phone-container:hover .bg-left img:nth-child(2) {
  opacity: 1;
  transform: translate(-520px, -130px) scale(1);
}

.phone-container:hover .bg-left img:nth-child(3) {
  opacity: 1;
  transform: translate(-350px, 70px) scale(1);
}

.phone-container:hover .bg-right img:nth-child(1) {
  opacity: 1;
  transform: translate(170px, -330px) scale(1);
}

.phone-container:hover .bg-right img:nth-child(2) {
  opacity: 1;
  transform: translate(170px, -180px) scale(1);
}

.phone-container:hover .bg-right img:nth-child(3) {
  opacity: 1;
  transform: translate(180px, -10px) scale(1);
}

.phone-container:hover .bg-right img:nth-child(4) {
  opacity: 1;
  transform: translate(170px, 80px) scale(1);
}

/* HOVER BACKGROUND IMAGE */
.bg-hover {
  background: url('img/bg-net-hover.png') center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.phone-container:hover .bg-hover {
  opacity: 1;
}

/* RESET ON HOVER OUT */
.phone-container:not(:hover) .bg-left img,
.phone-container:not(:hover) .bg-right img {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .beyond-scale-content h3 {
    font-size: 50px;
  }

  .beyond-scale-content p {
    font-size: 22px;
  }

  .phone img {
    width: 600px;
  }
}

@media (max-width: 992px) {
  .beyond-scale-content h3 {
    font-size: 44px;
  }

  .beyond-scale-content p {
    font-size: 20px;
  }

  .phone img {
    width: 500px;
  }
}

@media (max-width: 768px) {
  .beyond-scale {
    padding: 80px 15px;
  }

  .beyond-scale-content h3 {
    font-size: 36px;
  }


  .phone img {
    width: 400px;
  }
}

@media (max-width: 576px) {
  .beyond-scale {
    padding: 60px 10px;
  }

  .beyond-scale-content h3 {
    font-size: 28px;
  }

  .beyond-scale-content p {
    font-size: 16px;
    line-height: 1.4;
  }

  .phone img {
    width: 300px;
  }
}



.circle-container {
  position: relative;
  width: 500px;
  height: 500px;
  margin: auto;
  isolation: isolate;
}

.glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  animation: glowFade 5s linear infinite;
}

/* Circle backgrounds as hollow rings */
.glow-circle:nth-child(1) {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(203, 166, 95, 0.15) 0%, rgba(203, 166, 95, 0.08) 60%, rgba(203, 166, 95, 0.12) 100%);
  animation-delay: 0.1s, 0s;
}

.glow-circle:nth-child(2) {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(203, 166, 95, 0.12) 0%, rgba(203, 166, 95, 0.06) 60%, rgba(203, 166, 95, 0.1) 100%);
  animation-delay: 0.3s, 0s;
}

.glow-circle:nth-child(3) {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(203, 166, 95, 0.1) 0%, rgba(203, 166, 95, 0.05) 60%, rgba(203, 166, 95, 0.08) 100%);
  animation-delay: 0.5s, 0s;
}

.glow-circle:nth-child(4) {
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(203, 166, 95, 0.08) 0%, rgba(203, 166, 95, 0.04) 60%, rgba(203, 166, 95, 0.06) 100%);
  animation-delay: 0.8s, 0s;
}

.glow-circle:nth-child(5) {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(203, 166, 95, 0.06) 0%, rgba(203, 166, 95, 0.03) 60%, rgba(203, 166, 95, 0.05) 100%);
  animation-delay: 1.3s, 0s;
}




/* Keyframes: fade in sequentially, then stay, then fade out together */
@keyframes glowFade {

  0%,
  10% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
  }

  20%,
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
  }
}



.secure-img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 130px;
}

.secure-img img {
  width: 100%;
  height: 100%;
  display: block;
}



.faq-1,
.faq-2 {
  width: 49%;
}

.acc-item {
  border-radius: 20px !important;

}

.acc-item h2 button {
  border-radius: 20px !important;
  padding: 0px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-item h2 button p {
  width: 60%;
  color: #05132E;
  font-family: Denton Test;
  font-weight: 700;
  font-size: 26px;
}

.accordion-button {
  height: 100px;
}

.accordion-button::after {
  background-image: none !important;
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  transform: none !important;
}

/* Change + to – when accordion is open */
.accordion-button:not(.collapsed)::after {
  content: '–';
  color: #000;
}

/* Remove border and background */
.accordion-button {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: #000;
  /* text color */
  font-weight: 500;
}

/* Prevent color change when opened */
.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: #000 !important;
  box-shadow: none !important;
}

/* Remove hover color too */
.accordion-button:focus,
.accordion-button:hover {
  background-color: transparent !important;
  box-shadow: none !important;
  color: #000 !important;
}

/* Replace Bootstrap arrow with + and – */
.accordion-button::after {
  background-image: none !important;
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  transform: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: '–';
}

.acc-bdy {
  text-align: justify;
  padding: 0px 30px 16px 30px;
}

.coming {
  color: white;
  font-family: Inter;
  font-weight: 400;
  font-size: 22px;

}

.accordion-collapse {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.accordion-button p {
  margin-bottom: 0px;
}







/* Modal Container */
.modal-content {
  background: #181919;
  border-radius: 40px;
}

.modal-header {
  height: 30px;
}

.modal.show {
  backdrop-filter: blur(6px);
}

/* Modal Heading */
.heading-modal {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 45px;
  text-align: center;
  color: #fff;
}

/* Waitlist Form in Modal */
.modal-body .waitlist-form {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  height: 46px;
  width: 75%;
  padding-right: 1.5px;
  margin: auto;
  overflow: hidden;
}

.modal-body .waitlist-form input {
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  flex-grow: 1;
  width: 68%;
}

.modal-body .waitlist-form input:focus {
  box-shadow: none;
}

.modal-body .waitlist-form button {
  border-radius: 40px;
  padding: 10px 20px;
  color: #fff;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: bold;
  width: 35%;
  background: #000;
}



.free-access-btn {
  /* background-color: rgba(255, 255, 255, 0.25) !important; */
  background-color: white !important;
  color: black !important;
  border-radius: 30px !important;
  padding: 8px 20px !important;
  font-size: 16px !important;
  border: none !important;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: Inter;
  /* font-weight: 600; */
  font-size: 1.25rem;
}



/* Responsive Adjustments */
@media (max-width: 992px) {
  .heading-modal {
    font-size: 40px !important;
    text-align: center;
  }

  .modal-body .waitlist-form {
    width: 100% !important;
  }

  .modal-body .waitlist-form button {
    width: 50% !important;
    font-size: 10px !important;
    padding: 6px 3px !important;
  }
}

@media (min-width: 992px) {

  .modal-lg,
  .modal-xl {
    --bs-modal-width: 740px;
  }
}

/* Full desktop/laptop styles */
@media (min-width: 1200px) and (max-width: 1450px) {
  .text-slide {
    height: 685px;
  }

  .sliders-img img {
    height: 720px;
    object-fit: cover;
    object-position: top;
  }

  .sliders {
    height: 720px;
    margin-top: 0px;
  }

  .sliders-content h4 {
    font-size: 120px;
    line-height: 120px;
  }

  .sliders-content p {
    font-size: 23px;
  }

  .cont-fluid img {
    width: 60px;
    height: 60px;
  }

  .cont-fluid {
    padding: 0px 70px;
  }
}

/* Medium laptops / small desktops */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .text-slide {
    height: 685px;
  }

  .sliders-img img {
    height: 685px;
    object-fit: cover;
  }

  .sliders {
    height: 650px;
    margin-top: -33px !important;
  }

  .sliders-content h4 {
    font-size: 100px;
    line-height: 100px;
  }

  .sliders-content p {
    font-size: 20px;
  }

  .cont-fluid img {
    width: 60px;
    height: 60px;
  }

  .cont-fluid {
    padding: 0px 70px;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .sliders-content {
    left: 0px !important;
    width: 100%;
  }

  .sliders-content h4 {
    font-size: 150px;
    line-height: 150px;
    width: 60%;
  }

  .sliders-content p {
    font-size: 20px;
  }

  .text-slide {
    height: 900px;
    padding-left: 30px;
  }

  .cont-fluid ul {
    justify-content: end;
  }

  .cont-fluid img {
    width: 60px !important;
    height: 60px !important;
  }

  .sliders-img img {
    height: 1500px;
    object-fit: cover;
  }

  .sliders {
    height: 1500px;
  }

  .cont-fluid li a {
    font-size: 25px !important;
  }

  .cont-fluid ul button {
    font-size: 20px !important;
    padding: 6px 15px !important;
  }
}

/* Landscape tablets (iPad, etc.) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .sliders-content {
    left: 0px !important;
    width: 100%;
  }

  .sliders-content h4 {
    font-size: 150px;
    line-height: 150px;
    width: 60%;
  }

  .sliders-content p {
    font-size: 20px;
  }

  .text-slide {
    height: 900px;
    padding-left: 30px;
  }

  .cont-fluid ul {
    justify-content: end;
  }

  .cont-fluid img {
    width: 60px !important;
    height: 60px !important;
  }

  .sliders-img img {
    height: 1500px;
    object-fit: cover;
  }

  .sliders {
    height: 1500px;
  }

  .cont-fluid li a {
    font-size: 25px !important;
  }

  .cont-fluid ul button {
    font-size: 20px !important;
    padding: 6px 15px !important;
  }
}


/* CSS rules for portrait mode */
@media screen and (min-width: 800px) and (max-width: 845px) and (orientation: portrait) {

  .sliders-content {
    left: 0px !important;
    width: 100%;
  }

  .sliders-content h4 {
    font-size: 150px;
    line-height: 150px;
    width: 60%;
  }

  .sliders-content p {
    font-size: 20px;
  }

  .text-slide {
    height: 900px;
    padding-left: 30px;
  }

  .cont-fluid {
    padding: 0px 50px;
  }

  .cont-fluid ul {
    justify-content: end;
    flex-direction: row;
  }

  .cont-fluid img {
    width: 60px !important;
    height: 60px !important;
  }

  .sliders-img img {
    height: 1500px;
    object-fit: cover;
  }

  .sliders {
    height: 1500px;
  }

  .cont-fluid li a {
    font-size: 25px !important;
  }

  .cont-fluid ul button {
    font-size: 20px !important;
    padding: 6px 15px !important;
  }

}

.gol-section {
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}

.data_integration_image {
  /* position: relative; */
  width: 50%;
  display: flex;
  flex-direction: column;

}

.data_integration_image video {
  height: 100%;
  margin-top: auto;
  object-fit: cover;
  /* border-top-left-radius: 15%;
  border-top-right-radius: 15%; */
}