
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: #0a192f;
  color: #fff;
  display: flex;
  flex-direction: column;
  background-image: url("../Images/BG.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top left;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #10A37F transparent;
}

/* Webkit browsers (Chrome, Safari, Edge) */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
  opacity: 0.8;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}
.section5-video-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  width: 100%;
  margin: 0 auto;
  height: auto;
  min-height: 500px;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
}
/* Remove forced 100% height so columns can size naturally */
/* .section5-video-container div{ height: 100%; } */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
#navbar{
  transition: top 0.4s ease;
}
.logo {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #64ffda;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 150px;
}

.logo img {
  height:60px;
  width: 198px;
  /* width: 168px; */
  display: block;
}
/* Desktop Navigation */
.desktop-nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
}

.desktop-nav ul li {
  margin: 0 15px;
}

.desktop-nav ul li a {
  text-decoration: none;
  color: var(--Text-Dark-Primary, rgba(233, 238, 241, 1));
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.desktop-nav ul li a:hover {
  color: #64ffda;
}

.desktop-nav ul li a.active {
  color: #64ffda;
}

.desktop-nav ul li a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #64ffda;
}

.desktop-buttons {
  display: flex;
  gap: 15px;
}

button {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: clamp(12px, 1.1vw, 14px);
  white-space: nowrap;
}

.login-btn {
  background-color: transparent;
  border: none;
  border-radius: 200px;
  color: white;
  position: relative;
  z-index: 1;
}

.login-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 200px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.0128) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.login-btn.hide-before::before {
  display: none !important;
}

.login-btn:hover {
  background-color: rgba(100, 255, 218, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(100, 255, 218, 0.3);
}

.get-started-btn {
  width: 103px;
  height: 48px;
  opacity: 1;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  gap: 8px;
  border-radius: 200px;
  border: none;
  background: linear-gradient(181.39deg, rgba(255, 255, 255, 0.032) 1.18%, rgba(255, 255, 255, 0) 98.81%),
  linear-gradient(63.31deg, rgba(75, 63, 185, 0.8) -46.98%, rgba(19, 164, 128, 0.64) 99.08%);
  color: white;
  position: relative;
  z-index: 1;
}

.get-started-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 200px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.0128) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.get-started-btn:hover {
  background-color: #4fd3b0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(100, 255, 218, 0.3);
}

/* Hamburger Menu - Aligned with logo */
.mobile-header {
  display: none;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu with different background */
.mobile-menu {
  display: none;
  position: absolute;
  top: 8%;
  left: 0;
  width: 100%;
  background: #0a192f; /* Solid background color */
  z-index: 999;
  padding: 20px 5%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(100, 255, 218, 0.2); /* Optional: add a border */
}

.mobile-menu.active {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
  width: 100%;
}

.mobile-nav ul li {
  margin: 15px 0;
  width: 100%;
  text-align: center;
}

.mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  width: 100%;
  text-decoration: none;
  color: #ccd6f6;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 18px);
  transition: all 0.3s ease;
  border-bottom: none !important;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  color: #64ffda;
  background-color: rgba(100, 255, 218, 0.1);
  border-radius: 5px;
  text-decoration: none;
}

.mobile-nav ul li a::after {
  display: none;
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(100, 255, 218, 0.2);
  width: 100%;
}

.mobile-buttons button {
  width: 100%;
  max-width: 200px;
}

/* Main Content */
.main-content {
  margin-top: 0; /* Changed from 100px since header is no longer fixed */
  padding: 20px 5%;
  width: 100%;
  max-width: 100%;
  flex: 1;
}

/* ...existing code... */
.main-title {
  font-family: Poppins, sans-serif !important;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-size: clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.first-video{
  width: 100%;
}
/* Apply gradient ONLY to the text span */
.gradient-text {
  background: radial-gradient(
    40.17% 148.7% at 50% 16.18%,
    #ffffff 0%,
    rgba(255, 255, 255, 0.64) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  /* Optional subtle glow */
  text-shadow: 0 6px 24px rgba(255, 255, 255, 0.06);
}

/* ...existing code... */
.main-title .subtitle {
  font-size: clamp(64px, 10vw, 128px);
}

.main-text {
  font-family: Roboto;
  font-weight: 300;
  font-style: Regular;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: clamp(22px, 2.5vw, 28px);
  letter-spacing: 0%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 70%;
  margin: 0 auto;
}
.book-demo-button {
  width: 133px;
  height: 48px;
  opacity: 1;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  gap: 8px;
  border-radius: 200px;
  border: none;
  position: relative;
  background: linear-gradient(
      181.39deg,
      rgba(255, 255, 255, 0.032) 1.18%,
      rgba(255, 255, 255, 0) 98.81%
    ),
    linear-gradient(
      63.31deg,
      rgba(75, 63, 185, 0.8) -46.98%,
      rgba(19, 164, 128, 0.64) 99.08%
    );
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.book-demo-button::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 200px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.0128) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.main-video {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 272px; */
  position: relative;
}

.main-video1 {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 24px;
  border-width: 4px;
  justify-content: center;
  opacity: 1;
  margin-top: 48px;
}
.main-video .magical-button {
  position: absolute;
  left: calc(50% + 550px);
  transform: translateY(-50%);
  width: auto;
  height: auto;
  max-width: 200px;
}
.hero-section {
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px 20px;
  border-radius: 10px;
  margin-top: 100px !important;
  padding-bottom: 56px;
  width: 100%;
  max-width: 100%;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #64ffda;
  word-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  max-width: 100%;
  margin: 0 auto 30px;
  color: #ccd6f6;
  line-height: 1.6;
  padding: 0 10px;
}
.solution-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}

.feature-card {
  background-color: rgba(17, 34, 64, 0.7);
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #64ffda;
  margin-bottom: 20px;
}

.feature-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 15px;
  color: #e6f1ff;
}

.feature-description {
  color: #8892b0;
  line-height: 1.6;
  font-size: clamp(14px, 1.2vw, 16px);
}

/* Footer */
footer {
  padding: 30px 5%;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

.footer-content {
  max-width: 100%;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.footer-links a {
  color: #ccd6f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #64ffda;
}

.copyright {
  color: #8892b0;
  font-size: clamp(12px, 1.2vw, 14px);
  margin-top: 20px;
}

footer .col-2:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* Space between icons */
}

footer .col-2:last-child img {
  width: 24px; /* Adjust size as needed */
  height: 24px;
  object-fit: contain;
}
/* Background image container */
.background-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Ensure content stays above background */
/* header, */
.section-container:nth-of-type(1),
.section-container:nth-of-type(2) {
  position: relative;
  z-index: 1;
}

/* Optional: Add overlay for better text readability */
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
  z-index: 0;
}
/*Header*/
header {
  width: calc(100% - 128px); /* Subtract the margin from width */
  padding: 10px 16px;
  position: fixed;
  z-index: 1000;
  margin-top: 24px !important;
   margin-right: 64px !important;
  margin-left: 64px !important;
  justify-content: center;
  margin-bottom: 60px;
  border-radius: 16px; /* Optional: makes the margin more visible */
  border: 1px solid #cccccc63; /* Light gray */
  background-color: rgba(255, 255, 255, 0.15); /* Light glassy white */
  backdrop-filter: blur(16px);
  box-shadow: 0 0 5px rgb(96 125 125 / 30%), 0 0 5px rgba(0, 255, 255, 0.3),
    0 0 60px rgba(0, 255, 255, 0.3);
}

header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 150px;
}

.logo i {
  margin-right: 10px;
  color: #fff;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center; /* Add this line */
  height: 100%; /* Ensure it takes full height */
  margin: 0;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #e9eef1;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
  font-family: "Roboto";
}

/* nav ul li a:hover {
            color: #3498db;
        } */

nav ul li a.active {
  /* color: #3498db; */
  font-weight: 600;
}

nav ul li a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #3498db;
  border-radius: 2px;
}

.buttons {
  display: flex;
  gap: 15px;
}

button {
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  font-family: "Roboto";
}


/*Sections*/
.section-container {
  width: 100%;
  height: auto;
  padding-top: 56px;
  padding-bottom: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.section-title{
  margin-top: 4px;
}
.section3-container{
  padding-bottom: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.green-bubles-container{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.greenbubbles{
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-body {
  width: 100%;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.next-level-title {
  opacity: 0.8;
  font-family: Poppins;
  font-weight: 300;
  font-size: clamp(3rem, 15vw, 160px); /* Responsive font size */
  line-height: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e9eef1;
  margin-bottom: 40px;
  text-align: center;
  word-break: break-word;
}

/* Improved Image Layout */
.image-container {
  position: relative;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 400px; /* Ensure container has minimum height */
}

.welcome-image {
  position: relative;
  z-index: 2;
  width: 60%;
  max-width: 600px;
  margin: 0 auto;
  transform: translateY(25%);
}

.welcome-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.bottom-image {
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  margin-left: 0;
  width: 100%;
}

.upper-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 3;
  margin-top: -150px; /* Reduced negative margin */
  width: 100%;
}

.left-image,
.right-image {
  width: 40%;
  max-width: 300px;
}

.left-image img,
.right-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.bottom-curved-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto 0;
  text-align: center;
  width: 100%;
}

.bottom-curved-line img {
  max-width: 100%;
  height: auto;
}

.section2-text {
  font-family: Roboto;
  font-weight: 400;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.4;
  color: #a8b3bb;
  margin-top: 15px;
  text-align: center;
  max-width: 90%;
}
.faq-questions-container{
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.faq-body-container{
  display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 48px;
}
/*Section 3*/

.section3-right-title {
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
}

/* Updated Circle Section */
.circle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Added to stack elements vertically */
  position: relative; /* For positioning the text below the circle */
}

.circle {
  width: 650px;
  height: 650px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribute content between top and bottom */
  align-items: center;
  text-align: center;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 214, 214, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 120px 0 60px; /* Top padding for icon, bottom padding for text */
  position: relative;
}

.circle:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.circle img {
  margin-bottom: 20px;
}

.circle-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 0 10px;
}
.circle h3 {
  margin-top: 15px;
  font-family: "Poppins", sans-serif;
}
/* Style for the text at the bottom of the circle */
.circle-bottom-text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500px;
  margin-top: auto; /* Push to bottom */
  padding-bottom: 40px; /* Position in bottom area */
  opacity: 1;
  color: #fff;
}

/* Style for the text below the circle */
.about-btn-container{
  display: flex;
  justify-content: center;
}
.about-btn {
  background: linear-gradient(
    83.04deg,
    rgba(19, 164, 128, 0.16) -5.84%,
    rgba(141, 235, 208, 0.04) 78.01%
  );
  display: flex;
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 8px;
  align-items: center;
  justify-content: space-between;
  border-radius: 200px;
  border: none;
  opacity: 1;
  gap: 6px;
  color: #ffffff;
  margin-top: 60px;
  font-size: 14px;
  line-height: 20px;
  position: relative;
  z-index: 1;
}

.about-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 200px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.0128) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.green-star{
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.about-text {
  font-family: Roboto;
  display: inline-block;
  width: 60%;
  font-weight: 300;
  font-style: Light;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: clamp(22px, 2.5vw, 28px);
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}
.section3-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.section3-image-container img {
  margin-top: 50px;
  display: block;
  width: 70%;
  height: auto;
}

.section3-mobile-image {
  display: none !important;
}

.section3-desktop-image {
  display: block;
}
.built-world-text {
  display: inline-block;
  width: 60%;
  font-family: Poppins !important;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(32px, 5vw, 64px);
  line-height: clamp(40px, 6vw, 80px);
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}

/* Color only "Built World" in green */
.built-world-green {
  color: rgb(19, 164, 128); /* Green color */
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500px;
  margin-top: 20px;
}

.section3-desc {
  color: #fff;
  font-weight: 300px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-family: "Roboto";
}
/*Evolving*/

.meet-chat-aec-container {
  width: calc(100% - 128px);
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 0px;
  margin:0 auto;
  background-color: #fff;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.problem-btn {
  width: 122;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 200px;
  border: none;
  opacity: 1;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 4px;
  gap: 2px;
  font-size: 14px;
  color: #13a480;
 background: linear-gradient(181.39deg, rgba(255, 255, 255, 0.032) 1.18%, rgba(255, 255, 255, 0) 98.81%),
  linear-gradient(127.57deg, rgba(19, 164, 128, 0.1024) -42.9%, rgba(141, 235, 208, 0.0256) 64.66%);
  position: relative;
  z-index: 1;
}

.problem-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 200px;
  padding: 1px;
  background: linear-gradient(136.33deg, rgba(19, 164, 128, 0.88) -3.17%, rgba(19, 164, 128, 0.0704) 124.17%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.evolving-title {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: 0%;
  text-align: center;
  color: #123c4a;
}

.evolving-title-span {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: 0%;
  text-align: center;
  color: #13a480;
  margin-bottom: 30px;
}

.evolving-img {
  width: 100%;
  height: auto;
}

.evolving-container {
  margin-bottom: 20px;
}

.evolving-spec-title {
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  color: #123c4a;
}

.evolving-text {
  font-family: Roboto;
  font-weight: 200;
  font-style: Light;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  color: #123c4a;
  width: 50%;
}
.evolving-text span {
  font-weight: 500;
}
.evolving-border-left {
  padding-right: 15px;
}

.evolving-spec-background {
  padding-left: 15px;
  background-color: #66d1b23d;
  border-radius: 0 24px 24px 0;
}

.evolving-spec-container {
  padding-top: 50px;
  padding-left: 50px;
}

/* Remove gap between columns */
.meet-chat-aec-container .row {
  margin-left: 0;
  margin-right: 0;
}

.meet-chat-aec-container .row > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.evolving-spec {
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #123c4a;
}

.view-solution-btn {
  width: 163px;
  height: 48px;
  border-radius: 200px;
  border-width: 1px;
  opacity: 1;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  gap: 8px;
  background: var(--Brand-Primary-500, #13a480);
  color: #fff;
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
}

/*Section 4*/
.section4-background {
  position: relative;
  width: 100%;
  min-height: 200vh;
  overflow: hidden;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  background-image: url("../Images/section4-background.png");
  background-repeat: no-repeat;
  background-size: cover; /* Ensures image covers container */
  background-position: center; /* Centers the image */
  background-attachment: scroll;
}

/* Ensure content stays above background */
.section4-background > * {
  position: relative;
  z-index: 1;
}

/* Make sure container doesn't constrain width */
.section4-background .container {
  width: 100%;
}

.section4-top,
.section4-bottom {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%; /* Add horizontal padding */
  position: relative;
  z-index: 1;
}

.section4-top .container,
.section4-bottom .container {
  width: 100%;
  max-width: 100%;
  padding: 0 5%;
}

/* Ensure content stays above background */
.section4-background > * {
  position: relative;
  z-index: 1;
}

/* Make sure container doesn't constrain width */
.section4-background .container {
  max-width: 100%;
}

.solution-btn-container{
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.sectors-btn-container img{
  width: 24px;
  height: 24px;
}
.sectors-btn-container{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 32px;
  background: linear-gradient(181.39deg, rgba(255, 255, 255, 0.032) 1.18%, rgba(255, 255, 255, 0) 98.81%),
  linear-gradient(127.57deg, rgba(19, 164, 128, 0.1024) -42.9%, rgba(141, 235, 208, 0.0256) 64.66%);
  border: none;
  border-radius: 200px;
  opacity: 1;
  gap: 6px;
  color: #13a480;
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: clamp(18px, 1.8vw, 20px);
  letter-spacing: 0%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sectors-btn-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 200px;
  padding: 1px;
  background: linear-gradient(136.33deg, rgba(19, 164, 128, 0.88) -3.17%, rgba(19, 164, 128, 0.0704) 124.17%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.solution-main-title-container,
.sectors-main-title-container {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;

}

.solution-main-title,
.sectors-main-title {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(36px, 6vw, 72px);
  line-height: clamp(44px, 7vw, 80px);
  letter-spacing: 0%;
  text-align: center;
  color:  rgba(233, 238, 241, 1);

}
.sectors-main-title{
  color: var(--Text-Dark-Primary, rgba(233, 238, 241, 1));
}
.solution-main-title{
  color: var(--Brand-Secondary-Navy, rgba(18, 60, 74, 1));
  margin-bottom: 40px;

}


.solution-main-title-span,
.sectors-main-title-span {
  font-family: Poppins;
  font-weight: 600;
  font-style: Medium;
  font-size: clamp(44px, 7vw, 88px);
  line-height: clamp(52px, 8vw, 104px);
  letter-spacing: 0%;
  text-align: center;
  color: #13a480;
}

.solution-items-container {
  text-align: center;
}
.solution-dropdown-items-container {
  text-align: center;
}
.solution-dropdown-sub-title {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  width: 80%;
  font-size: 16px;
  margin: 0 auto;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  color:rgba(18, 60, 74, 0.40);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.solution-sub-title {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  width: 80%;
  min-width: 300px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  color:rgba(18, 60, 74, 0.40);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.semi-bold-text{
  font-weight: 600;
}
.solution-name{
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  color:rgba(18, 60, 74, 1);
}
.section4-title span {
  color: #27ae60; /* Green color */
}

.solution-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.solution-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.solution-text {
  flex: 1;
}

.solution-label {
  font-family: "Roboto", sans-serif;
  color: #13a480;
  margin-bottom: 8px;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: clamp(20px, 2vw, 24px);
  letter-spacing: 0%;
}

.solution-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #123c4a;
  line-height: 1.4;
  font-style: Regular;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: clamp(20px, 2vw, 24px);
  letter-spacing: 0%;
}

/* Sectors section */
#mainVideo {
  height: 464px;
}

.sectors-container {
  /* padding-top: 100px; */
  padding-bottom: 100px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

/* Create two rows */
.sectors-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin-bottom: 20px;
}

/* Ensure exactly 4 items per row */
.sector-item {
  display: flex;
  background-color: #66D1B214;
  align-items: center;
  font-weight: 500;
  border-radius: 8px;
  justify-content: center;
  width: 100%;
  max-width: 100% !important;
  gap: 16px;
  padding: 16px;
}

.sector-text-left {
  order: 1;
  text-align: right;
  flex: 1;
}

.sector-text-right {
  order: 3;
  text-align: left;
  flex: 1;
}


.sectors-container-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 24px;
  justify-items: center;
  align-items: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.sector-icon {
  order: 2;
  width: 40px;
  height: 40px;
  /* border-radius: 50%; */
  /* background: rgba(255, 255, 255, 0.1); */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* When grid has 2 columns: First column has text-icon, second column has icon-text */
/* First column (odd items): text first, icon second */
.sectors-container-grid .sector-item:nth-child(odd) .sector-text-left,
.sectors-container-grid .sector-item:nth-child(odd) .sector-text-right {
  order: 1;
  text-align: right;
}

.sectors-container-grid .sector-item:nth-child(odd) .sector-icon {
  order: 2;
}

/* Second column (even items): icon first, text second */
.sectors-container-grid .sector-item:nth-child(even) .sector-icon {
  order: 1;
}

.sectors-container-grid .sector-item:nth-child(even) .sector-text-left,
.sectors-container-grid .sector-item:nth-child(even) .sector-text-right {
  order: 2;
  text-align: left;
}

.sector-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.sector-label {
  font-family: "Roboto", sans-serif;
 color:var(--Text-Dark-Primary, #E9EEF1);

  font-size: clamp(14px, 1.2vw, 14px);
  line-height: 1.3;
  word-wrap: break-word;
  max-width: 100%;
  font-weight: 400;
}

.section4-title {
  font-family: Poppins;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 4rem); /* Responsive font size */
  line-height: 1.2;
  letter-spacing: 0%;
  text-align: center;
  white-space: normal;
  color: black;
  padding: 0 5%;
  margin: 20px 0;

  color: black;
}

.section4-title span {
  color: #27ae60; /* Green color */
}

.solution-item {
  text-align: left;
  padding: 15px;
  height: 100%;
  margin-bottom: 20px;
}

.solution-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.solution-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.solution-text {
  flex: 1;
}

.solution-label {
  font-family: "Roboto", sans-serif;
  color: #13a480;
  margin-bottom: 8px;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: clamp(20px, 2vw, 24px);
  letter-spacing: 0%;
}

.solution-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #123c4a;
  line-height: 1.4;
  font-style: Regular;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: clamp(20px, 2vw, 24px);
  letter-spacing: 0%;
}

/*Section 5 - MODIFIED*/
.section5-container {
  margin: 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.section5-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  text-align: center;
}
.section5-title-span{
  color: #13a480;
}
.section5-question {
  text-align: center;
    font-family: Roboto;
  font-weight: 300;
  font-style: Light;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  max-width: 70%;
  margin: 0 auto;
}
.section5-feature-content {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

.feature-label {
  display: inline-block;
  color: #666;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.section5-feature-title {
  color: #123C4A;
  margin-bottom: 5px;
  margin-top: 0;
  font-family: "Roboto", sans-serif;
  text-align: left;
  align-items: start;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;

}

.section5-feature-body {
  color: var(--Text-Light-Secondary, #4A5560);
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22px;
}

.examples-label {
  font-family: Roboto;
  font-weight: 400;
  font-style: Italic;
  font-size: 16px;
  line-height: 22px;
  color: #13A480 !important;
  margin-bottom: 8px;
  font-style: italic;
}

.example-list {
  list-style: none;
  margin-bottom: 16px;
  padding: 0;
}

.example-list li {
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
  padding-left: 16px;
  position: relative;
  color: var(--Text-Light-Secondary, #4A5560);

}

.example-list li:before {
  content: "•";
  color: #10b981;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.example-list li.example-sublabel {
  color: #13A480;
  font-style: italic;
  padding-left: 0;
  margin-top: 8px;
}

.example-list li.example-sublabel:before {
  content: none;
}

.feature-footer {
  color: var(--Text-Light-Secondary, #4A5560);
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;

}

.video-player-container {
  flex: 1;
  max-width: 50%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

/* Make the intermediate wrapper flex and grow so the image can stretch */
.section5-video-container .video-player-container > div {
  display: flex;
  flex: 1;
}

.video-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  flex: 1;
 
}

.img-feature-size {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.video-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.video-title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.video-nav {
  display: flex;
  gap: 10px;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}



.progress-container {
  width: 100%;
  margin: 30px auto 50px;
}

.progress-line {
  width: 100%;
  height: 2px;
  background-color: #2c3e50;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-segments {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 10px; /* Increased gap for better visual separation */
}

.progress-segment {
  flex: 1;
  height: 100%;
  background-color: #34495e;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.segment-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #27ae60;
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 0%;
}
.pro-card-container .blog-container{
  background-image: url("../Images/Vector.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pro-card-container .blog-Description,.pro-card-container .blog-feature-title,.pro-card-container .bolg-feature-description{
  color: #fff !important;
}
.pro-card-container .blog-price{
  color:#A8B3BB !important;
}
.pro-card-container .blog-title{
  color: var(--Neutral-White, rgba(255, 255, 255, 1));
}
/* Different colors for each segment if desired */
.segment-fill {
  background-color: #27ae60; /* Green */
}

/* #segment2 .segment-fill {
  background-color: #3498db; 
}

#segment3 .segment-fill {
  background-color: #e74c3c; 
}

#segment4 .segment-fill {
  background-color: #e7e43c;
} */
/* Active segment highlighting */
.progress-segment.active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.progress-markers {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.progress-marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.progress-marker.active {
  background-color: #27ae60;
  transform: scale(1.1);
}

.progress-marker.completed {
  background-color: #2ecc71;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}

.progress-label {
  font-family: Roboto;
  font-size: 14px;
  text-align: center;
  width: 30%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.progress-label.active {
  opacity: 1;
  font-weight: 500;
}

/* Feature content */
.section5-feature-content {
  width: 100%;
  padding: 40px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: left;
  position: relative;
  background-color: white;
  color: black;
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section5-video {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.section5-feature-content {
  width: 100%;
  text-align: left;
}

.section5-title {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  max-width: 550px;
}

.preview-button {
  background: linear-gradient(181.39deg, rgba(255, 255, 255, 0.032) 1.18%, rgba(255, 255, 255, 0) 98.81%),
linear-gradient(63.31deg, rgba(75, 63, 185, 0.8) -46.98%, rgba(19, 164, 128, 0.64) 99.08%);
  color: white;
  border: none;
  border-radius: 25px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 12 px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  float: right;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
    width: 121px;
    height: 48px;
    opacity: 1;
    border-radius: 200px;
    padding-top: 12px;
    padding-right: 16px;
    padding-bottom: 12px;
    padding-left: 16px;
    gap: 8px;
    border-width: 1px;
    
}

.preview-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}
/*Section 6*/
.section6-title {
  display: inline-block;
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  max-width: 70%;
}

.section6-title-span {
  font-family: Poppins;
  font-weight: 500px;
  font-style: Medium;
  font-size: clamp(32px, 5vw, 64px);
  line-height: clamp(40px, 6vw, 80px);
  letter-spacing: 0%;
  text-align: center;
  color: #13a480;
}

.section6-description {
  font-family: Roboto;
  font-weight: 400;
  font-style: Light;
  font-size: clamp(16px, 1.8vw, 20px);
  display: inline-block;
  width: 70%;
  line-height: clamp(22px, 2.5vw, 28px);
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.section6-description-span {
  font-family: Roboto;
  font-weight: 500;
  font-style: Light;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: clamp(22px, 2.5vw, 28px);
  letter-spacing: 0%;
  text-align: center;
  color: #66d1b2;
}
.icons-text {
  width: 50%;
  margin: 50px auto !important;
  position: relative;
  z-index: 2;
}
.leaders-circle-text {
  font-family: Roboto;
  font-weight: 300;
  width: 50%;
  font-style: Regular;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: clamp(18px, 1.8vw, 20px);
  letter-spacing: 0%;
  text-align: center;
  margin-top: 46px;
}

/* Section 6 Circle Styles */
.circle-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.circle-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.circle-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Position the icons */

.icon-mid {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 10;
}

.icon-mid img {
  width: 150px;
  height: auto;
}

.icon-head-top {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.icon-head-top img {
  width: 120px;
  height: auto;
}

.icon-top-left {
  position: absolute;
  top: 10%;
  left: 10%;
}

.icon-lower-center {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

.icon-low-mid {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translateX(-50%);
}

.icon-top-right {
  position: absolute;
  top: 10%;
  right: 10%;
}

.icon-lower-right {
  position: absolute;
  bottom: 10%;
  right: 10%;
}

.icon-lower-left {
  position: absolute;
  bottom: 10%;
  left: 10%;
}

.icon-center-left {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}

.icon-center-right {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}

.icon-center-bottom {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}

.icon-center-bottom img {
  width: 218px;
  height: auto;
}

.fluid-img {
  max-width: 100%;
  height: auto;
  display: block; /* (Optional but recommended) */
}

.circle-title-bottom h3 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.section6-circle-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: min(40%, 480px);
  margin-bottom: 0;
}

.section6-circle-container img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1200px;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

.section6-circle {
  position: relative;
  width: min(1200px, 90vw);
  height: min(1200px, 90vw);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-icon {
  position: absolute;
  width: 80px; /* Increased from 60px */
  height: 80px; /* Increased from 60px */
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.circle-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Icon positioning handled by individual classes above */

.circle-title-bottom {
  position: absolute;
  bottom: 10%;
  text-align: center;
  width: 100%;
}

/*Section 7*/

.pricing-section {
  background-image: url("../Images/background-pricing.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Remove fixed positioning if needed */
}
.pricing-container {
  display: none;
  width: 100%;
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #fff;
  border-radius: 40px 40px 0px 0px;
  /* Remove the background-image from here if it's duplicated */
  /* background-image: url("../Images/background-pricing.svg"); */
}
.price-mian-btn-container {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-main-btn {
  border-radius: 200px;
  border-width: 1px;
  opacity: 1;
  gap: 6px;
  margin-bottom: 20px;
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--Brand-Primary-500, #13a480);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
      181.39deg,
      rgba(255, 255, 255, 0.032) 1.18%,
      rgba(255, 255, 255, 0) 98.81%
    ),
    linear-gradient(
      127.57deg,
      rgba(19, 164, 128, 0.1024) -42.9%,
      rgba(141, 235, 208, 0.0256) 64.66%
    );
  display: flex;
  align-items: center;
  justify-content: center;
}
.star{
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.price-title {
  width: 100%;
    display: inline-block;
  text-align: center;
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: 0%;
  color: #123c4a;
  margin-bottom: 20px;
}

.price-header-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  min-height: auto;
  width: 100%;
}
.faq-main-btn{
  margin: 0 !important;
  color: white;
  background: linear-gradient(83.04deg, rgba(19, 164, 128, 0.16) -5.84%, rgba(141, 235, 208, 0.04) 78.01%);

}
.faq-title {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: 0%;
  color:var(--Text-Dark-Primary, rgba(233, 238, 241, 1));
  display: flex;
  justify-content: center;
}

.price-title-span {
  font-family: Poppins;
  font-weight: 500px;
  font-style: Medium;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: 0%;
  color: #13a480;
}

.blog-section-container {
  width: 100%;
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 88px;
}

.blog-container {
  width: 100%; /* Make blog containers take full width of their column */
  min-height: 650px;
  height: auto;
  border-radius: 24px;
  border-width: 1.5px;
  opacity: 1;
  padding: 32px;
  gap: 24px;
  margin: 10px 0; /* Remove horizontal margin */
  background: linear-gradient(
    197.8deg,
    rgba(19, 164, 128, 0.096) 8.03%,
    rgba(75, 63, 185, 0.0192) 95.81%
  );
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: none;
  z-index: 1;
}

.blog-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(191.57deg, rgba(19, 164, 128, 0.24) 7.02%, rgba(75, 63, 185, 0.48) 99.99%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.blog-container > div:first-child {
  flex: 0 0 auto;
  min-height: auto;
}
.price-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left !important;
  gap: 24px;
  
}
/* Ensure the row takes full width */
.blog-row{
  display: grid !important;
    grid-template-columns: repeat(4, minmax(100px, 1fr));
        gap: 24px;

 }
.blog-section-container .blog-row .blog-col {
  margin-bottom: 30px;
  width: 100%;
}

/* Adjust column padding to maintain spacing */
.blog-col {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.launch-notification {
  min-height: 28px;
  height: auto;
  font-family: Roboto;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0%;
  background-color: #13a480cc;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  background: linear-gradient(
      181.39deg,
      rgba(255, 255, 255, 0.032) 1.18%,
      rgba(255, 255, 255, 0) 98.81%
    ),
    linear-gradient(
      265.23deg,
      rgba(19, 164, 128, 0.8) 6.43%,
      rgba(75, 63, 185, 0.8) 113.68%
    );
  flex-shrink: 0; /* Prevent notification from shrinking */
  padding: 6px 12px;
  white-space: nowrap;
}

.launch-notification-label {
  width: 115px;
}

.comingsoon-notification-label {
  width: 115px;
}

.GetStarted-notification-label {
  width: 145px;
}
.Pain-Points-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #66D1B214;
  padding: 50px;
  gap: 20px;
  border-radius: 10px;
}

.pain-points-title {
  color: black;
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-family: Poppins;
  font-weight: 500;
}

/* Desktop View - 3 columns */
.pain-points-desktop {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: flex-start;
}

.pain-point-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 320px;
  text-align: center;
  margin-bottom: 20px !important;
}

.pain-point-icon {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pain-point-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.pain-point-text {
  text-align: center;
  font-size: clamp(14px, 1.2vw, 16px);
  color: #374151;
  line-height: 1.6;
  font-family: Poppins;
}

/* Mobile Carousel - Hidden by default */
.pain-points-mobile {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Solutions Desktop/Mobile Views */
.solutions-desktop {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 80px;
}

.solutions-mobile {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-wrapper {
  overflow: hidden;
  cursor: grab;
  width: 100%;
  position: relative;
}

.carousel-wrapper:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap !important;
  width: 100%;
  transition: transform 300ms ease-out;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide .pain-point-item {
  max-width: 400px;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

.carousel-slide .solution-items-container {
  max-width: 400px;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

.carousel-slide img {
  pointer-events: none;
}

/* Dots Indicator */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 200ms;
  padding: 0;
}

.carousel-dot.active {
  background: #13a480;
  width: 32px;
  border-radius: 4px;
}

/* Solutions Carousel Dots */
.carousel-dot-solutions {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 200ms;
  padding: 0;
}

.carousel-dot-solutions.active {
  background: #13a480;
  width: 32px;
  border-radius: 4px;
}

.impact-section{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.impact-section img{
  width: 16px;
  height: 16px;
  align-self: center;
}

.impact-section h3 {
  font-family: Poppins;
  font-weight: 500;
  color: black;
  margin-bottom: 10px;
  text-align: center;
}
.impact-section span {
color: #13A480;  
font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 16px;
line-height: 22px;
letter-spacing: 0%;
text-align: center;
margin-top: 10px;

}
.pain-points-icons {
  display: flex;
  justify-content: center;
}

.blog-title {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.08px;
  color: #13a480;
  display: flex;
  align-items: left;
  margin-top: 60px;
  margin-bottom: 20px;
  text-align: left;
}
.blog-title-container{
  text-align: left !important;
}
.blog-Description {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.08px;
  color: #4a5560;
  text-align: left !important;
  margin-bottom: 20px;
  height: auto !important;
  min-height: 150px;
  overflow: visible;
}

.blog-price {
  position: relative;
  right: 0%;
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.08px;
  color: #123c4a;
  text-align: right;
  margin-bottom: 0; /* Remove bottom margin since container handles spacing */
  flex-shrink: 0; /* Prevent price from shrinking */
  margin-left: 10px;
  height: auto;
  padding: 4px 0;
  white-space: nowrap;
}
.blog-price span{
  font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 14px;
line-height: 100%;
display: block;
letter-spacing: -0.08px;
text-align: right;

}
.blog-container > div:last-child {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-container > div:last-child > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.blog-feature-title {
  font-family: Roboto;
  color: #123C4A;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
  margin-bottom: 20px;
}

.bolg-feature-description {
  font-family: Poppins;
  color: #123C4A;
  align-items: center;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 2%;
  text-transform: capitalize;
  display: flex;
  text-align: left;
  margin-bottom: 8px; /* Reduced from 20px to 8px */
  padding: 0;
  margin-bottom: 12px;
  min-height: auto;
  height: auto;
}
.bolg-feature-description img{
  margin-right: 5px;
 width: 14px;
 height: 14px;
}
.blog-container
  > div:last-child
  > div:nth-child(2)
  .bolg-feature-description:first-child {
  margin-top: 0; /* Ensure no top margin on first feature */
}

.blog-feature-title + div .bolg-feature-description:first-child {
  margin-top: 0;
  margin-bottom: 8px; /* Consistent spacing */
}

/* Ensure consistent spacing between all feature items */
.blog-container > div:last-child > div:nth-child(2) > div {
  margin-bottom: 8px; /* Consistent 8px gap between features */
}

.blog-container > div:last-child > div:nth-child(2) > div:last-child {
  margin-bottom: 0; /* No bottom margin on last feature */
}

.blog-get-started-container {
  margin-top: auto;
  padding-top: 20px;
  flex-shrink: 0;
}

.blog-section-container .blog-row .blog-col {
  margin-bottom: 30px;
  width: 100%;

}

.blog-get-started {
  width: 100%;
  max-width: 246px;
  height: auto;
  min-height: 48px;
  border-radius: 200px;
  border-width: 1px;
  opacity: 1;
  padding: 12px 24px;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  background: linear-gradient(
      181.39deg,
      rgba(255, 255, 255, 0.032) 1.18%,
      rgba(255, 255, 255, 0) 98.81%
    ),
    linear-gradient(
      265.23deg,
      rgba(19, 164, 128, 0.8) 6.43%,
      rgba(75, 63, 185, 0.8) 113.68%
    );
}
.testimonials-section-container{
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 64px;
  height: 737.25px;
  position: relative;
  padding-top: 112px;
  padding-bottom: 112px;
  width: 100%;
  background-color: #fff;
  border-radius: 40px 40px 0px 0px;
}
.testimonial-title{
  justify-content: center;
  text-align: center;
  color: black;
  font-family: Poppins;
font-weight: 500;
font-style: Medium;
font-size: 64px;
line-height: 80px;
letter-spacing: 0%;
text-align: center;
}
.testimonial-rating{
  justify-content: center;
  text-align: center;
  color: rgba(255, 197, 0, 1);
}
.testimonial-description{
  font-family: Poppins;
  justify-content: center;
  color: var(--Brand-Secondary-Navy, rgba(18, 60, 74, 1));
font-weight: 400;
font-style: Regular;
font-size: 24px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;

}
.testimonial-description p{
  width: 50%;
  margin:0 auto;
  justify-content: center;
}
.testimonial-sub-description{
  text-align: center;
  font-family: Poppins;
font-weight: 500;
font-style: Medium;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
color: var(--Brand-Secondary-Navy, rgba(18, 60, 74, 1));
}
.testimonial-sub-description .green-span{
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--Brand-Primary-500, #13A480);
}
.testimonial-sub-description .light-green-span{
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--Brand-Primary-500, rgba(19, 164, 128, 1));
}
#left-quote{
  position: absolute;
  width: clamp(300px, 35vw, 500px);
  left: calc(-1 * clamp(150px, 17.5vw, 250px));
  top: 35%;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7vw, 70px);
  align-items: center;
}

#left-quote img{
  width: clamp(48px, 5vw, 68px);
  margin-right: clamp(30px, 4vw, 50px);
  justify-self: end;
  align-self: flex-end;
}

#right-quote{
  position: absolute;
  right: calc(-1 * clamp(150px, 17.5vw, 250px));
  width: clamp(300px, 35vw, 500px);
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 10vw, 110px);
  bottom: 20%;
  align-items: center;
}

#right-quote img{
  width: clamp(48px, 5vw, 68px);
  justify-self: end;
  margin-left: clamp(30px, 4vw, 50px);
  align-self: flex-start;
}

#left-quote p, #right-quote p{
  color: rgb(187, 196, 206);
  font-family: Poppins;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
}

/* Medium screens - circle adjustments */
@media (max-width: 1300px) {
  .section6-circle {
    width: min(900px, 85vw);
    height: min(900px, 85vw);
  }

  .icon-mid img {
    width: 120px;
  }

  .icon-head-top img {
    width: 100px;
  }

  .icon-center-bottom img {
    width: 180px;
  }

  .icon-center-left img,
  .icon-center-right img {
    width: 100px;
  }

  .icons-text {
    width: 70%;
  }

  .leaders-circle-text {
    font-size: 15px;
  }
}

@media (max-width: 1100px) {
  .section6-circle {
    width: min(700px, 85vw);
    height: min(700px, 85vw);
  }

  .icon-mid img {
    width: 100px;
  }

  .icon-head-top img {
    width: 80px;
  }

  .icon-center-bottom img {
    width: 150px;
  }

  .icon-center-left img,
  .icon-center-right img,
  .icon-top-left img,
  .icon-top-right img,
  .icon-lower-left img,
  .icon-lower-right img {
    width: 80px;
  }

  .icons-text {
    width: 80%;
  }

  .leaders-circle-text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Tablet and smaller adjustments */
@media (max-width: 1024px) {
  #left-quote{
    left: calc(-1 * clamp(100px, 15vw, 180px));
    width: clamp(250px, 30vw, 400px);
  }
  
  #right-quote{
    right: calc(-1 * clamp(100px, 15vw, 180px));
    width: clamp(250px, 30vw, 400px);
  }
  
  /* .section5-video-container{
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    min-height: auto;
  } */
  
  /* .video-player-container {
    max-width: 100%;
    min-width: 100%;
  } */
  
  .video-container {
    border-top-left-radius: 10px; 
    border-bottom-left-radius: 10px;
    min-height: 350px;
  }
  
  .section5-feature-content {
    max-width: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 30px;
  }
  
  /* Remove all top and bottom margins for medium devices */
  * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
.section6-circle-container {
  padding-bottom: 50%;
  margin-bottom: 0;
}

.section6-circle-container img {
  width: 125%;
}
  #left-quote{
    display: none;
  }
    #left-quote {
    top: 40%;
  }
  #left-quote img{
    width: clamp(36px, 6vw, 48px);
  }
  .testimonial-description p{
    width: 100%;
  }
  .section5-video-container{
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    width: 100%;
    padding: 0;
    min-height: auto;
  }

  .video-player-container {
    max-width: 100%;
    min-width: 100%;
  }
  
  .video-container {
    border-radius: 16px 16px 0 0;
    min-height: 300px;
  }
  
  .section5-feature-content {
    max-width: 100%;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    overflow-y: auto;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 30px 20px;
    box-sizing: border-box;
  }
  #right-quote{
    display: none;
  }
  #right-quote {
    bottom: 12%;
  }
  #right-quote img{
    width: clamp(36px, 6vw, 48px);
  }
}
.faq-container {
  width: 100%;
  padding:64px;
  background: rgba(3, 31, 24, 0.72);
  
border-radius: 0px 0px 40px 40px;
}

.faq-body-container {
  width: 100%;
  height: auto;
  border-radius: 16px;
  gap: 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); /* Safari support */

  margin-bottom: 10px;
}

.faq-body {
  border: 1px solid;
  border-image-source: linear-gradient(
    191.57deg,
    rgba(19, 164, 128, 0.24) 7.02%,
    rgba(75, 63, 185, 0.48) 99.99%
  );
  background: linear-gradient(67.64deg, rgba(255, 255, 255, 0.16) 29.14%, rgba(255, 255, 255, 0.032) 70.86%);
  width: 100%;
  height: auto;
 
  gap: 10px;
  border-radius: 16px;
  border-width: 1px;
  opacity: 1;
  padding: 24px;
}
.faq-body summary {
  list-style: none;
  cursor: pointer;
  position: relative;
}

.faq-body summary::-webkit-details-marker {
  display: none;
}

.faq-body summary::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../Images/white-down-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.faq-body[open] summary::after {
  background-image: url("../Images/up-arrow.png");
}

.faq-body[open] summary .faq-main-question,
.faq-body[open] summary .faq-sub-question {
  color: var(--Brand-Support-Seafoam, rgba(102, 209, 178, 1));
}

.faq-main-button {
  border-radius: 200px;
  border-width: 1px;
  gap: 6px;
  opacity: 1;
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 8px;
  background: linear-gradient(
    83.04deg,
    rgba(19, 164, 128, 0.16) -5.84%,
    rgba(141, 235, 208, 0.04) 78.01%
  );
  color: #fff;
}

.faq-question-container {
  text-align: left;
}

.faq-main-question {
  font-family: Roboto;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: clamp(16px, 1.6vw, 18px);
  letter-spacing: 0%;
  text-align: left;
  color: var(--Brand-Support-Seafoam, #66d1b2);
}

.faq-sub-question {
  font-family: Roboto;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: clamp(16px, 1.6vw, 18px);
  letter-spacing: 0%;
  text-align: left;
  color: var(--Text-Dark-Primary, #e9eef1);
}
.faq-answer-container{
  max-width: 93%;
  text-align: justify;
  margin-top: 12px;
}
.faq-answer {
  font-family: Roboto;
  font-weight: 300;
  font-style: Regular;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: left;
  color: #e9eef1;
  margin-top: 20px;
}

.have-question-body {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 170px;
  padding-bottom: 100px;
}
.have-question-body {
 text-align: center;
}
.have-question-logo {
  width: 137px;
  height: 136px;
  opacity: 1;
}

.have-question-title {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: 0%;
  text-align: center;
  color: radial-gradient(40.17% 148.7% at 50% 16.18%, #FFFFFF 0%, rgba(255, 255, 255, 0.64) 100%);
  margin-bottom: 25px;
}

.have-question-text{
  width: 50%;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}
.have-question {
  font-family: Roboto;
  font-weight: 300;
  font-style: Light;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--Text-Dark-Primary, #e9eef1);
  margin-bottom: 25px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 866px;
  height: 84px;
  opacity: 1;
}

.contact-box {
  width: 533px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px;
  gap: 8px;
  opacity: 1;
  color: var(--Text-Dark-Secondary, rgba(168, 179, 187, 1));
  background: linear-gradient(91.49deg, rgba(255, 255, 255, 0.192) 40.17%, rgba(255, 255, 255, 0.0768) 59.25%);
  text-align: left;
}

.contact-box::placeholder {
  color: var(--Text-Dark-Secondary, rgba(168, 179, 187, 1));
  opacity: 1;
}

/* Custom CSS classes to replace Bootstrap and inline styles */

/* Hero section */

/* Bold text */
.bold-text {
  font-weight: bold;
}

/* Pain points title */
.pain-points-title {
  color: black;
}
.features-btn-container{
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Features button */
.features-btn {
  width: 107px;
  height: 32px;
  opacity: 1;
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 8px;
  gap: 6px;
  border-radius: 200px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}
.instant-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 20px;
  padding-bottom: 20px;

}
.instant-btn label{
  width: 80px;
  height: 32px;
  opacity: 1;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  gap: 4px;
  border-radius: 200px;
  border: none;
  background: linear-gradient(181.39deg, rgba(255, 255, 255, 0.032) 1.18%, rgba(255, 255, 255, 0) 98.81%),
  linear-gradient(78.46deg, rgba(19, 164, 128, 0.64) 1.68%, rgba(19, 164, 128, 0.16) 93.38%),
  linear-gradient(80.94deg, rgba(19, 164, 128, 0.64) 0%, rgba(75, 63, 185, 0.8) 203.6%);
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.big-green-star{
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.instant-btn label::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 200px;
  padding: 1px;
  background: linear-gradient(136.33deg, rgba(19, 164, 128, 0.88) -3.17%, rgba(19, 164, 128, 0.0704) 124.17%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.features-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 200px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.0128) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Chatbot logo */
.chatbot-logo {
  height: 24px;
  margin-right: 10px;
}

/* Bootstrap container replacement */
.bootstrap-container { 
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  gap: 64px;
}
.bootstrap-container div{ 
  display: flex;
  flex-wrap: wrap;
  justify-content:  center;
}

/* Solution items container - replaces col-3 */
.solution-items-container {
  flex: 0 0 25%;
  max-width: 25%;
  padding-right: 15px;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px !important;
}
.solution-dropdown-items-container {
  flex: 0 0 25%;
  max-width: 25%;
  padding-right: 15px;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Blog column - replaces col-3 for blog items */
.blog-col {
  flex: 0 0 25%;
  margin-bottom: 1rem;
}

/* Contact form field - replaces col-12 */
.contact-form-field {
  flex: 0 0 100%;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Footer columns */
.footer-col {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
  padding-right: 15px;
  padding-left: 15px;
}

.footer-col-main {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Full width */
.full-width {
  width: 100%;
}

/* Parent containers for flexbox layout */
.pain-points-icons {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}


/* Contact form container */
.contact-form-container .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: auto;
  width: 100%;
}

/* Footer row */
footer .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.justify-content-center{
  justify-content: center;
}

/* View Features Button - Hidden on desktop by default */
.view-features-toggle {
  display: none;
}

/* Show features content on desktop */
.features-content {
  display: block;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .have-question-logo {
    width: 100px;
    height: 100px;
    opacity: 1;
  }
  .faq-answer {
    font-size: 14px;
    line-height: 16px;
  }
  .faq-answer-container{
    max-width: 90%;
    margin-top: 8px !important;
    text-align: left !important;
  }
  .main-text {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
.have-question {
   font-size: 14px;
   line-height: 20px;
   width: 100%;
}
  /* Reduce section spacing on mobile */
  .section-container {
    padding: 40px 24px !important;
    padding-bottom: 60px;
    gap: 20px;
  }
  .section-desc{
    padding-bottom: 4px;
  }
  .green-bubles-container{
    display: none;
  }
  .section3-image-container img {
    margin-top: 20px !important;
    width: 100%;
  }
  
  .section3-desktop-image {
    display: none !important;
  }
  
  .section3-mobile-image {
    display: block !important;
  }
  .testimonial-description{
    font-size: clamp(20px, 4vw, 24px);
    line-height: clamp(24px, 5vw, 32px);
  }
  .solution-container{
    gap: 24px;
    width: 100%;
    padding: 0 !important;
  }
  .meet-chat-aec-container {
    padding-top: 60px;
    padding-bottom: 60px;
    border-radius: 24px;
  }
  
  .sectors-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .pricing-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .testimonials-section-container {
    padding-top: 60px;
    padding-bottom: 60px;
    height: auto;
  }
  
  .faq-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .have-question-body {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .faq-main-btn{
    margin-bottom: 0;
  }
  .have-question-text{
    width: 100%;
  }
  .meet-chat-aec-container{
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .built-world-text{
    width: 100%;
    font-size: 32px;
  }
  .about-text{
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
  .blog-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Set fixed height for blog-container on mobile since features are hidden */
  .blog-container {
    min-height: 355px !important;
    height: auto;
  }

  /* Allow card to expand when features are active */
  .blog-container:has(.features-content.active) {
    height: auto;
  }

  /* View Features Button Styles */
  .view-features-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    margin-top: 16px;
    position: relative;
    background: linear-gradient(181.39deg, rgba(255, 255, 255, 0.032) 1.18%, rgba(255, 255, 255, 0) 98.81%),
      linear-gradient(265.23deg, rgba(19, 164, 128, 0.032) 6.43%, rgba(75, 63, 185, 0.032) 113.68%);
    border-radius: 200px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    z-index: 1;
  }
 .pro-card-container .view-features-toggle{
  background: linear-gradient(91.36deg, rgba(255, 255, 255, 0.704) -0.94%, rgba(255, 255, 255, 0) 136.72%),
  linear-gradient(265.23deg, rgba(19, 164, 128, 0.064) 6.43%, rgba(75, 63, 185, 0.064) 113.68%);
  border: 1px solid transparent;
border-image: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.032) 100%);
 color: #fff;

}
  .view-features-toggle span {
    background: linear-gradient(265.23deg, rgba(19, 164, 128, 0.8) 6.43%, rgba(75, 63, 185, 0.8) 113.68%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .pro-card-container .view-features-toggle span {
    color: #fff !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
  }

  .pro-card-container .view-features-toggle img.features-arrow {
    filter: brightness(0) invert(1);
  }
  .view-features-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 200px;
    padding: 1px;
    background: linear-gradient(270.39deg, rgba(75, 63, 185, 0.32) 0.18%, rgba(19, 164, 128, 0.32) 141.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
  }

  .view-features-toggle:hover {
    background: rgba(19, 164, 128, 0.05);
    border-color: #13A480;
  }

  .view-features-toggle img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }

  /* Hide features by default on mobile */
  .features-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  .features-content.active {
    max-height: 2000px;
    opacity: 1;
    margin-top: 16px;
  }

  .have-question-title{
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: clamp(2.5rem, 3vw, 3rem);
  }
  .testimonial-title{
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: clamp(2.5rem, 3vw, 3rem);
  }
  .section6-title{
    width: 100%;
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: clamp(2.5rem, 3vw, 3rem);
  }
  .section6-title-span{
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: clamp(2.5rem, 3vw, 3rem);
  }
  .section6-description{
    font-size: clamp(14px, 1.5vw, 1.8rem);
    width: 100%;
  }
  .footer-col,
  .footer-col-main {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-col img{
    margin-left: 35px;
  }
  /* Remove all top and bottom margins for small devices */
  * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 576px) {
  .bootstrap-container {
    padding-right: 10px;
    padding-left: 10px;
  }
  
}

.book-demo-btn {
  width: 154px;
  height: 48px;
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  background: linear-gradient(91.55deg, #13a480 3.86%, #8debd0 70.07%);
  color: #fff;
  border-radius: 200px;
}

.get-easily-access-btn {
  width: 153px;
  height: 48px;
  border-radius: 200px;
  border-width: 1px;
  border: 1px solid;
  border: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.0128) 100%);  
  opacity: 1;
  gap: 8px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  background: linear-gradient(233.31deg, rgba(255, 255, 255, 0.0256) 21.34%, rgba(255, 255, 255, 0) 71.54%);

  /* background: linear-gradient(91.55deg, #13a480 3.86%, #8debd0 70.07%); */
  color: #fff;
}

/* Center the contact form */
#contactForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form-container {
  width: 100%;
}

.contact-form-container .container {
  width: 100%;
}

.contact-form-container .row {
  width: 100%;
  justify-content: center;
  margin: 0 auto;
}

.contact-form-container .row.justify-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px !important;
}

.contact-form-container .contact-box {
  width: 100%;
  max-width: 533px;
  margin: 0 auto;
}

.contact-buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px !important;
  width: 100%;
}

.contact-buttons-container img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-buttons-container .book-demo-btn {
  margin: 0;
  white-space: nowrap;
}

.footer-text {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0px;
  text-align: center;
  color: #fff;
}

footer {
  width: 100%;
  padding: 20px 0;
}

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

footer .row {
  width: 100%;
  align-items: center;
}

/*Mobile*/

@media (min-width: 1400px) {
  .section4-top .container,
  .section4-bottom .container {
    max-width: 1400px;
    margin: 0 auto;
  }
  .icons-text{
    margin: 150px auto !important;

  }
}

@media (max-width: 1024px) {
  .sectors-container-grid {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 15px;
    max-width: 700px;
  }

  .sector-item {
    min-width: 100px;
    /* max-width: 130px; */
  }

  .sector-icon {
    width: 60px;
    height: 60px;
  }

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

  .next-level-title {
    font-size: clamp(2.5rem, 12vw, 120px);
    line-height: 0.9;
  }

  .image-container {
    min-height: 300px;
  }

  .welcome-image {
    width: 70%;
    transform: translateY(20%);
  }

  .upper-image {
    margin-top: -120px;
  }
}

@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .solution-item {
    padding: 15px;
  }

  .solution-label {
    font-size: 15px;
  }

  .solution-description {
    font-size: 13px;
  }
  .video-progress-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hamburger {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .desktop-buttons {
    display: none;
  }

  .desktop-nav,
  .desktop-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-container {
    padding: 0;
  }

  /* Ensure logo and hamburger are perfectly aligned */
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo,
  .hamburger {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 768px) {
  header > div {
    gap: 20px;
  }
  header{
    margin-left: 24px !important;
    margin-right: 24px !important;
    width: calc(100% - 48px);
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 10px;
  }
  .next-level-title {
    font-size: 80px;
    line-height: 64px;
  }

  .image-container {
    width: 95%;
  }

  .welcome-image {
    width: 80%;
    transform: translateY(15%);
  }

  .bottom-images {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .left-image,
  .right-image {
    width: 80%;
    margin: 20px 0;
  }
  .circle {
    width: 400px;
    height: 400px;
    padding: 80px 0 40px;
  }

  .circle img {
    width: 60px;
  }

  .circle-bottom-text,
  .below-circle-text {
    font-size: 18px;
  }

  .circle-bottom-text {
    padding-bottom: 30px;
  }

  .section4-title {
    font-size: 36px;
    line-height: 48px;
  }

  .solution-item {
    padding: 15px 10px;
    margin-bottom: 20px;
  }

  .solution-content {
    gap: 12px;
  }

  .solution-icon {
    width: 40px;
    height: 40px;
  }

  .solution-label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .solution-description {
    font-size: 12px;
  }

  /* Stack columns on mobile */
  .col-3,
  .col-sm-3,
  .col-xs-3,
  .col-md-3,
  .col-lg-3,
  .col-xl-3 {
    width: 100%;
    margin-bottom: 20px;
  }

  /* Section 5 mobile adjustments */
  .section5-container {
    width: 100%;
    padding: 0px;
    margin: 0px auto;
  }

  .section5-title {
    font-size: 32px;
    line-height: 40px;
  }

  .section5-question {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    max-width: 100%;
  }

  .section6-circle {
    width: min(500px, 85vw);
    height: min(500px, 85vw);
  }

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

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

  .icon-mid img {
    width: 80px;
  }

  .icon-head-top img {
    width: 70px;
  }

  .icon-center-bottom img {
    width: 120px;
  }

  .icon-center-left img,
  .icon-center-right img,
  .icon-top-left img,
  .icon-top-right img,
  .icon-lower-left img,
  .icon-lower-right img {
    width: 60px;
  }

  .icons-text {
    width: 90%;
  }

  .leaders-circle-text {
    font-size: 14px;
  }

  .icon-top-left {
    top: 15%;
    left: 15%;
  }

  .icon-center-left {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }

  .icon-lower-left {
    bottom: 15%;
    left: 15%;
  }

  .icon-top-right {
    top: 15%;
    right: 15%;
  }

  .icon-center-right {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
  }

  .icon-lower-right {
    bottom: 15%;
    right: 15%;
  }

  .icon-center-bottom {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }

  .icon-additional {
    top: 150px;
    left: 130px;
  }

  .circle-title-bottom h3 {
    font-size: 20px;
  }

  .video-progress-grid {
    grid-template-columns: 1fr;
  }

  footer .col-3,
  footer .col-6,
  footer .col-sm-3,
  footer .col-sm-6,
  footer .col-xs-3,
  footer .col-xs-6,
  footer .col-md-3,
  footer .col-md-6,
  footer .col-lg-3,
  footer .col-lg-6,
  footer .col-xl-3,
  footer .col-xl-6 {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  footer .row {
    flex-direction: column;
  }

  .footer-text {
    margin: 10px 0;
    line-height: 1.4;
  }

  footer .row {
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    gap: 20px;
  }

  footer .col-2:first-child,
  footer .col-8,
  footer .col-2:last-child {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  /* Center the logo */
  footer .col-2:first-child {
    order: 1;
  }

  /* Center the copyright text */
  footer .col-8 {
    order: 2;
  }

  /* Center the social media icons */
  footer .col-2:last-child {
    order: 3;
    justify-content: center;
  }

  .section6-circle {
    width: min(400px, 90vw); /* Adjusted for mobile */
    height: min(400px, 90vw); /* Adjusted for mobile */
  }

  .circle-icon {
    width: 60px; /* Adjusted for mobile */
    height: 60px; /* Adjusted for mobile */
  }

  .circle-icon img {
    width: 30px; /* Adjusted for mobile */
    height: 30px; /* Adjusted for mobile */
  }

  .icons-text {
    width: 90%;
  }

  .leaders-circle-text {
    font-size: 14px;
  }

  /* Adjusted positions for mobile */
  .icon-top-left {
    top: 15%;
    left: 15%;
  }

  .icon-center-left {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }

  .icon-lower-left {
    bottom: 15%;
    left: 15%;
  }

  .icon-top-right {
    top: 15%;
    right: 15%;
  }

  .icon-center-right {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
  }

  .icon-lower-right {
    bottom: 15%;
    right: 15%;
  }

  .icon-center-bottom {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }

  .icon-additional {
    top: 110px;
    left: 170px;
  }

  .icon-mid img {
    width: 100px;
  }

  .icon-center-bottom img {
    width: 80px;
  }
  .section4-background {
    background-attachment: scroll; /* Always scroll on mobile */
    background-size: cover; /* Still cover on mobile */
  }

  .sectors-container-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
    width: 100%;
  }

  .sector-item {
    width: 100%;
    max-width: 450px;
    gap: 16px;
    justify-content: flex-start;
  }
  
  /* When single column, all text aligns left and reset order */
  .sector-text-left,
  .sector-text-right {
    text-align: left !important;
    order: 2 !important;
  }
  
  .sector-icon {
    order: 1 !important;
  }

    .sector-label {
    font-size: 14px;
  }
  
  .sector-icon {
    width: 32px;
    height: 32px;
  }
  
  .sector-icon img {
    width: 32px;
    height: 32px;
  }

  .next-level-title {
    font-size: clamp(2rem, 10vw, 80px);
    line-height: 1;
    margin-bottom: 30px;
  }

  .image-container {
    width: 100%;
    min-height: 250px;
    padding: 0 10px;
  }

  .welcome-image {
    width: 80%;
    transform: translateY(15%);
  }

  .bottom-image {
    justify-content: center;
    margin-left: 0;
  }

  .upper-image {
    justify-content: center;
    margin-top: -100px;
  }

  .left-image,
  .right-image {
    width: 45%;
    max-width: 250px;
  }

  .bottom-curved-line {
    margin-top: 30px;
  }

  .section2-text {
    font-size: 14px;
    max-width: 95%;
  }

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

  .hero-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .price-header-container {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }

  .blog-price {
    text-align: left;
  }

  .price-title {
    font-size: 32px;
    line-height: 40px;
  }

  .price-title-span {
    font-size: 32px;
    line-height: 40px
  }

  .faq-title {
    font-size: 32px;
    line-height: 40px;
  }

  .faq-body {
    margin: 0px;
    padding: 15px;
    margin-bottom: 10px;
  }

  .main-video {
    flex-direction: column;
    padding-top: 20px; /* Reduced margin for mobile */
  }

  .main-video1 {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
  }

  .main-video .main-video1 {
    display: block;
    margin: 0 auto;
    height: auto;
  }
  .main-video {
    flex-direction: column;
    margin-top: 100px;
  }

  .main-video1 {
    width: 100%;
    height: auto;
  }

  .main-video .magical-button {
    position: static;
    transform: none;
    margin-top: 20px;
    max-width: 180px;
  }
  .evolving-border-left {
    border-right: none;
    padding-right: 0;
    padding-bottom: 15px;
    margin-bottom: 0;
  }

  .evolving-spec-background {
    border-left: none;
    padding-left: 0;
    padding-top: 15px;
    border-radius: 24px 24px 24px 24px;
  }

  .solution-main-title,
  .sectors-main-title {
    font-size: 32px;
    line-height:36px;
  }

  .solution-main-title-span,
  .sectors-main-title-span {
    font-size: 32px;
  }

  .evolving-title {
    font-size: 32px;
    line-height: clamp(2.5rem, 3vw, 3rem);
  }

  .evolving-title-span {
    font-size: 32px;  
    line-height: clamp(2.5rem, 3vw, 3rem);
  }

  .evolving-text {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 20px;
    margin-left: 0px;
  }

  .evolving-img {
    border-radius: 24px 24px 24px 24px;
  }

  .evolving-spec-container {
    margin-bottom: 20px;
  }
  .evolving-container {
    margin-bottom: 50px;
  }

  .faq-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-buttons-container {
    gap: 10px;
  }

  .contact-buttons-container img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 15px 0;
  }

  .footer-text {
    font-size: 12px;
    line-height: 1.3;
  }
  .section6-circle {
    width: min(320px, 90vw);
    height: min(320px, 90vw);
  }

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

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

  .icons-text {
    width: 95%;
  }

  .leaders-circle-text {
     font-size: 14px;
    line-height: 18px;
  }

  /* Further adjusted positions for very small screens */
  .icon-top-left {
    top: 15%;
    left: 15%;
  }

  .icon-center-left {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }

  .icon-lower-left {
    bottom: 15%;
    left: 15%;
  }

  .icon-top-right {
    top: 15%;
    right: 15%;
  }

  .icon-center-right {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
  }

  .icon-lower-right {
    bottom: 15%;
    right: 15%;
  }

  .icon-center-bottom {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }

  .icon-additional {
    top: 85px;
    left: 135px;
  }

  .icon-mid img {
    width: 80px;
  }

  .icon-center-bottom img {
    width: 60px;
  }

  .section4-background {
    min-height: 180vh;
  }

  .sectors-container {
    gap: 10px;
  }

  .sector-icon {
    width: 32px;
    height: 32px;
  }

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

  .solution-item {
    padding: 10px;
  }

.sectors-container-grid {
    gap: 8px;
    width: 100%;
  }

  .sector-item {
    width: 100%;
  }

    .sector-label {
    font-size: 14px;
  }


  .sector-label {
    font-size: 14px;
  }

  .next-level-title {
    font-size: clamp(1.5rem, 8vw, 60px);
    margin-bottom: 20px;
  }

  .image-container {
    min-height: 200px;
  }

  .welcome-image {
    width: 85%;
    transform: translateY(10%);
  }

  .upper-image {
    margin-top: -80px;
  }

  .left-image,
  .right-image {
    width: 50%;
    max-width: 200px;
  }

  .bottom-curved-line {
    margin-top: 20px;
  }

  .section2-text {
    font-size: 13px;
    line-height: 1.3;
  }

  header,
  .main-content,
  footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    /* height: 48px; */
    width: auto;
    /* width: 198px; */
    display: block;
  }
  
  .logo {
    min-width: 120px;
  }

  .mobile-menu {
    padding: 20px 15px;
  }

  .feature-card {
    padding: 20px;
  }
  .main-video {
    margin-top: 40px;
  }

  .main-video .magical-button {
    width: 180px;
  }
  .contact-buttons-container {
    gap: 8px;
  }

  .contact-buttons-container img {
    width: 18px;
    height: 18px;
  }

  .contact-buttons-container .book-demo-btn {
    padding: 10px 15px;
    font-size: 12px;
    max-width: 154px;
    width: auto;
  }
  .contact-buttons-container .get-easily-access-btn {
    padding: 10px 15px;
    font-size: 12px;
    max-width: 154px;
    width: auto;
  }
}

@media (max-width: 360px) {
  .sectors-container-grid {
    grid-template-columns: repeat(1, minmax(90px, 1fr));
    gap: 8px;
    width: 100%;
  }

  .sector-item {
    /* min-width: 90px;
    max-width: 110px; */
    width: 100%;
  }

  .sector-label {
    font-size: 14px;
  }
  .next-level-title {
    font-size: clamp(1.2rem, 7vw, 50px);
  }

  .welcome-image {
    width: 90%;
    transform: translateY(5%);
  }

  .upper-image {
    margin-top: -60px;
  }

  .left-image,
  .right-image {
    width: 55%;
    max-width: 180px;
  }
}

/* Prevent overlap at high zoom levels */
@media (max-width: 320px) {
  .sectors-container-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .sector-item {
    min-width: auto;
    max-width: none;
    width: 100%;
    justify-content: flex-start;
  }
  
  /* When single column, all text aligns left and reset order */
  .sector-text-left,
  .sector-text-right {
    text-align: left !important;
    order: 2 !important;
  }
  
  .sector-icon {
    order: 1 !important;
  }
}

/* Additional zoom protection */
.sectors-container-grid {
  overflow: hidden; /* Prevent content from overflowing */
}

.sector-item {
  position: relative;
  z-index: 1;
}

/* Ensure the section container can handle zoom */
.section4-bottom {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  position: relative;
  z-index: 1;
  overflow: hidden; /* Prevent any overflow */
}

/* iPhone 14 specific adjustments */
@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
  .mobile-menu {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
}

/* Prevent horizontal scrolling */
.no-scroll {
  overflow: auto; /* Changed from hidden */
}

@media (max-width: 1400px) {
  .blog-container {
    min-height: 700px;
  }
}

@media (max-width: 1200px) {
  .blog-container {
    min-height: 750px;
  }
  .blog-row {
    margin: 0 -15px; /* Counteract the container padding */
    display: grid !important;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }


  .blog-price {
    text-align: left !important;
    margin-left: 0 !important;
    margin-top: 10px;
  }
}

/* High zoom level specific fixes - only for desktop */
@media (min-resolution: 150dpi) and (min-width: 769px) {
  .blog-container {
    min-height: 800px;
  }

  .bolg-feature-description {
    margin-bottom: 16px;
  }

  .blog-get-started-container {
    padding-top: 30px;
  }
}

/* Chatbot Widget Styles */
.chatbot-widget {
  position: fixed;
  bottom: 100px;
  right: 50px;
  width: 380px;
  height: 500px;
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  z-index: 10000;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
}
.chatbot-conversation-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 25px;
  width: 100%;
}
.chatbot-conversation-header img{
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.chatbot-widget.active {
  display: flex;
  animation: slideInUp 0.3s ease-out;
}

.chatbot-content {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.chatbot-footer {
  flex-shrink: 0;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-header {
  background: linear-gradient(135deg, #13a480 0%, #4fd3b0 100%);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.chatbot-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chatbot-message {
  margin-bottom: 15px !important;
  display: flex;
  flex-direction: column;
}

.bot-message {
  align-items: flex-start;
}

.user-message {
  align-items: flex-end;
}

.message-content {
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 80%;
  word-wrap: break-word;
  line-height: 1.4;
}

.bot-message .message-content {
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.3);
  color: #ccd6f6;
  border-bottom-left-radius: 4px;
}

.user-message .message-content {
  background: rgba(19, 164, 128, 0.2);
  border: 1px solid rgba(19, 164, 128, 0.4);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.message-time {
  font-size: 11px;
  color: #8892b0;
  margin-top: 5px;
  padding: 0 5px;
}

.chatbot-input {
  padding: 15px 20px;
  background: rgba(17, 34, 64, 0.9);
  border-top: 1px solid rgba(100, 255, 218, 0.2);
  display: flex;
  gap: 10px;
}

.chatbot-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 25px;
  background: rgba(10, 25, 47, 0.8);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
  border-color: #64ffda;
}

.chatbot-input input::placeholder {
  color: #8892b0;
}

.chatbot-input button {
  background: linear-gradient(135deg, #13a480 0%, #4fd3b0 100%);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-input button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(19, 164, 128, 0.4);
}

/* Chatbot Toggle Button */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: transparent;
  /* box-shadow: 0 4px 20px rgba(19, 164, 128, 0.4); */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
  overflow: hidden;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  /* box-shadow: 0 6px 25px rgba(19, 164, 128, 0.6); */
}

.chatbot-toggle img {
  width: 88px;
  height: 88px;
  pointer-events: none;
}

/* Hide close circle container by default */
.close-circle-container {
  width: 88px !important;
  height: 88px !important;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(181.39deg, rgba(255, 255, 255, 0.032) 1.18%, rgba(255, 255, 255, 0) 98.81%),
linear-gradient(63.31deg, rgba(75, 63, 185, 0.8) -46.98%, rgba(19, 164, 128, 0.64) 99.08%);
border: 2px solid;
border-radius: 50%;
border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.0192) 100%);
padding: 10px;
}

.close-circle-icon {
  width: 24px !important;
  height: 24px !important;
  pointer-events: none;
}

.close-circle-text {
  color: #fff;
font-weight: 400;
font-style: Regular;
font-size: 10.6px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
}

/* When chatbot is active, hide icon and show close container */
.chatbot-toggle.chatbot-active .chatbot-toggle-icon {
  display: none;
}

.chatbot-toggle.chatbot-active .close-circle-container {
  display: flex;
}

/* Chatbot Welcome Screen */
.chatbot-welcome {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: rgba(17, 34, 64, 0.7);
  overflow-y: auto;
  overflow-x: hidden;
}

.welcome-content {
  text-align: center;
  width: 100%;
}

.welcome-icon {
  margin-bottom: 20px;
  margin-left: 25px;
}

.welcome-icon .chatbot-aec-logo{
  width: 120px;
  height: auto;
  margin-left: 20px;
}

.welcome-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.welcome-subtitle {
  font-size: 16px;
  color: #8892b0;
  margin-bottom: 30px;
}

.question-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.question-text {
  flex: 1;
  line-height: 1.4;
}

.yes-consent-button,
.no-consent-button {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.yes-consent-button {
  background: linear-gradient(135deg, #13a480 0%, #4fd3b0 100%);
  color: white;
}

.yes-consent-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(19, 164, 128, 0.4);
}

.no-consent-button {
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.3);
  color: #fff;
}

.no-consent-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(19, 164, 128, 0.4);
}

/* Message Separator */
.message-separator-line {
  height: 1px;
  background: rgba(100, 255, 218, 0.2);
  margin: 10px 20px;
}

.message-separator {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  color: #8892b0;
  line-height: 1.5;
  text-align: center;
}

.message-separator a {
  color: black;
  text-decoration: underline;
}

/* Hidden class */
.hidden {
  display: none !important;
}
/* 
@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(19, 164, 128, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(19, 164, 128, 0.7);
  }
  100% {
    box-shadow: 0 4px 20px rgba(19, 164, 128, 0.4);
  }
} */

/* Remove the magical button from main video section */
.main-video .magical-button {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .chatbot-widget {
    width: 90vw;
    min-height: 450px;
    right: 5vw;
    bottom: 80px;
  }

  .chatbot-toggle {
    height: 88px;
    bottom: 20px;
    right: 20px;
  }

  /* .chatbot-toggle img {
    width: 80px;
    height: 80px;
  } */

  .welcome-icon .chat-ace-logo{
    width: 60px;
  }

  .welcome-title {
    font-size: 20px;
  }

  .welcome-subtitle {
    font-size: 14px;
  }

  .question-button {
    font-size: 13px;
    padding: 12px 10px;
  }
  
  .question-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .chatbot-widget {
    width: 95vw;
    min-height: 450px;
    right: 2.5vw;
  }
  .blog-row {
    margin: 0 -15px; /* Counteract the container padding */
    display: grid !important;
    grid-template-columns: repeat(1, minmax(100px, 1fr));
    gap: 24px;
  }
  .message-content {
    max-width: 90%;
  }

  
  .chatbot-welcome {
    padding: 20px 15px;
  }
  
  .question-button {
    font-size: 12px;
    padding: 10px 8px;
  }
  
  .question-text {
    font-size: 12px;
  }
  
  .question-icon {
    width: 18px;
    height: 18px;
  }
}

/* Pain Points Responsive - Desktop: show grid, hide carousel */
@media (min-width: 1024px) {
  .pain-points-desktop {
    display: flex !important;
  }
  
  .pain-points-mobile {
    display: none !important;
  }
}

/* Pain Points Responsive - Tablet/Mobile: hide grid, show carousel */
@media (max-width: 1023px) {
  .pain-points-desktop {
    display: none !important;
  }
  
  .pain-points-mobile {
    display: block !important;
  }
}

/* Solutions Responsive - Desktop: hide carousel, show grid */
@media (min-width: 800px) {
  .solutions-desktop {
    display: flex !important;
  }
  
  .solutions-mobile {
    display: none !important;
  }
}

/* Medium devices - adjust solution items to prevent overlap */
@media (min-width: 800px) and (max-width: 1100px) {
  .solutions-desktop .solution-items-container {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding-right: 10px;
    padding-left: 10px;
  }
  
  .solutions-desktop {
    gap: 0.5rem;
  }
  
  .solution-sub-title {
    font-size: 14px;
    line-height: 18px;
    min-width: unset;
    width: 100%;
    max-width: 100%;
  }
  
  .solution-items-container img {
    width: 48px !important;
    height: 48px !important;
  }
}

/* Solutions Responsive - Tablet/Mobile: hide grid, show carousel */
@media (max-width: 799px) {
  .solutions-desktop {
    display: none !important;
  }
  
  .solutions-mobile {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .Pain-Points-section {
    padding: 2rem 0;
    margin-top: 3rem;
  }
}

@media (max-width: 640px) {
  .pain-points-title {
    font-size: 1.5rem;
  }
}

/* Preview button spacing on mobile */
@media (max-width: 768px) {
  .preview-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    margin-top: 20px;
    display: inline-flex;
  }
  
  .feature-footer {
    margin-bottom: 0;
  }
}

/* Solutions Dropdown Button Styles */
.toggle-solutions-container{
  background: #66D1B214;
}
.solutions-dropdown-toggle {
  display: none; /* Hidden by default */
  width: 100%;
  padding: 12px 24px;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-radius: 16px;
  color:var(--Brand-Primary-500, #13A480);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  gap: 12px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.solutions-dropdown-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background-color: transparent;
  padding: 1px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.solutions-dropdown-toggle:hover {
  transform: translateY(-2px);
}

.solutions-dropdown-toggle span {
  display: inline-block;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: 8px;
}

.dropdown-arrow.rotated {
  transform: rotate(180deg);
}

/* Solutions Grid */
.solutions-grid {
  width: 100%;
}

.solutions-grid .row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Responsive styles for devices less than 800px */
@media (max-width: 799px) {
  .bootstrap-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .solutions-dropdown-toggle {
    display: flex; /* Show on mobile */
    box-sizing: border-box;
    justify-content: center;
    padding: 21px;
  }
  .solutions-dropdown-container{
    background-color: #66D1B214;
    width: 100%;
    display: flex;
    border-radius: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .solutions-grid {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    gap:10px
  }
  
  .solutions-grid.active {
    max-height: 1000px;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .solutions-grid .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 20px;
  }
  
  .solution-items-container {
    flex: 1 1 100%;
    max-width: 100%;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .solution-dropdown-items-container {
    flex: 1 1 100%;
    max-width: 100%;
    display: flex;
    padding: 0;
    flex-direction: column;
    margin: 0 auto !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .solution-items-container img {
    width: 40px !important;
    height: 40px;
  }
  .solution-dropdown-items-container img {
    width: 32px !important;
    height: 32px;
  }
  .solutions-grid .solution-items-container img{
    width: 32px !important;
    height: 32px !important;
  }
  .solutions-grid .solution-items-container{
    margin: 0 !important;
  }
  .solution-dropdown-sub-title {
    text-align: center;
    min-width: 50%;
    max-width:90% !important;
    color: rgba(19, 164, 128, 1);

  }
  .solution-sub-title {
    text-align: center;
    max-width: 200px !important;
    ;
  }
}

/* Fix carousel centering for very small screens */
@media (max-width: 430px) {
  .carousel-slide .solution-items-container {
    max-width: 100%;
    width: 100%;
    padding: 0 0.5rem;
    margin: 0 auto;
  }
  
  .solution-items-container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }    
  .solution-dropdown-sub-title {
    min-width: unset !important;
    max-width: 90% !important;
    width: 100%;
  }
  .solution-sub-title {
    min-width: unset !important;
    max-width: 90% !important;
    width: 100%;
  }
  
  /* Fix feature image to take full height of video container */
  .section5-video-container {
    gap: 0 !important;
  }
  
  .video-player-container {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .video-player-container > div {
    display: flex !important;
    flex: 1 !important;
    height: 100% !important;
  }
  
  .video-container {
    min-height: 280px !important;
    height: auto !important;
    display: flex !important;
    align-items: stretch !important;
  }
  
  .img-feature-size {
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
    object-fit: cover !important;
    display: block !important;
    flex: 1 !important;
  }
  
  .section5-feature-content {
    gap: 8px !important;
    padding: 20px 15px !important;
  }
}

/* Fix FAQ dropdown arrow overlap on small devices */
@media (max-width: 576px) {
  .faq-sub-question {
    padding-right: 40px !important;
    display: block;
    max-width: calc(100% - 40px);
  }
  
  .faq-body summary::after {
    right: 15px;
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 370px) {
  .faq-sub-question {
    padding-right: 45px !important;
    font-size: 13px;
    line-height: 18px;
  }
  
  .faq-body summary::after {
    right: 10px;
  }
}

.chatbot-header {
  background: linear-gradient(135deg, #13a480 0%, #4fd3b0 100%);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.chatbot-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: scroll;
  width: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
linear-gradient(141.81deg, rgba(19, 164, 128, 0.16) 42.83%, rgba(75, 63, 185, 0.08) 79.71%);

}

.chatbot-message {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.bot-message {
  align-items: flex-start;
}

.user-message {
  align-items: flex-end;
}

.message-container {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.message-container img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.message-content {
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 80%;
  word-wrap: break-word;
  line-height: 1.4;
  margin: 0;
}

.bot-message .message-content {
  background: linear-gradient(208.45deg, rgba(19, 164, 128, 0.096) 2.31%, rgba(75, 63, 185, 0.0192) 119.16%);
  border: 1px solid rgba(100, 255, 218, 0.3);
  color: #383838;
  border-bottom-left-radius: 4px;
}

.user-message .message-content {
  background: linear-gradient(230.54deg, rgba(19, 164, 128, 0.704) -11.66%, rgba(75, 63, 185, 0.704) 180.06%);
  border: 1px solid rgba(19, 164, 128, 0.4);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.message-time {
  font-size: 11px;
  color: #8892b0;
  margin-top: 5px;
  padding: 0 5px;
}

/* Chatbot Welcome Screen */
.chatbot-welcome {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 20px;
  background: white;
  z-index: 1000;
  overflow-x: hidden;
}

.welcome-content {
  width: 100%;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.welcome-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}



.welcome-close-btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 35px;
  transform: translateY(-50%);
  border-radius: 0;
  z-index: 1001;
  pointer-events: auto;
}
.black-text{
  color: #123C4A;
}
.welcome-title {
  font-size: 28px;
  font-weight: 600;
  color: #13a480;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.welcome-subtitle {
  font-size: 16px;
  color: var(--Brand-Secondary-Navy, #123C4A);

  font-family: 'Poppins', sans-serif;
  margin: 0;
}
.buttons-container{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.yes-consent-button {
  background: linear-gradient(181.39deg, rgba(255, 255, 255, 0.032) 1.18%, rgba(255, 255, 255, 0) 98.81%),
              linear-gradient(105.73deg, rgba(19, 164, 128, 0.24) -11.54%, rgba(19, 164, 128, 0.8) 67.93%);
  width: 119px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 1;
  border-radius: 200px;
  border: 1px solid rgba(19, 164, 128, 0.4);
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;  
  color: #fff;
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;   
  cursor: pointer;
  text-wrap: nowrap;
}
.no-consent-button{
  background: linear-gradient(230.54deg, rgba(19, 164, 128, 0.704) -11.66%, rgba(75, 63, 185, 0.704) 180.06%);
  height: 46px;
  gap: 8px;
  opacity: 1;
  border-radius: 200px;
  border-width: 1px;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;   
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;   
  cursor: pointer;
  text-wrap: nowrap;           
}
.message-separator {
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #4A5560;
  opacity: 0.5;
  bottom: 30px;
  padding: 10px;
  line-height: 1.2;
}
.question-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.question-button {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px;
  background: linear-gradient(90deg, rgba(47, 47, 47, 0.01) 0%, rgba(47, 47, 47, 0.12) 100%);
  border: 1px solid #e4e9f0;
  border-radius: 8px;
  color: #2d3748;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  min-height: 48px;
}

.question-button:hover {
  background: #e8f5f1;
  border-color: #13a480;
}

.question-icon {
  font-size: 16px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.question-text {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0px;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* Feature Modal Styles */
.feature-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.feature-modal.show {
  display: flex;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.feature-modal-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
  margin: auto;
  overscroll-behavior: contain;
}

.feature-modal-content .logoImg {
  width: 120px;
  height: auto;
  display: block;
}
/* Custom scrollbar for modal content */
.feature-modal-content::-webkit-scrollbar {
  width: 8px;
}

.feature-modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.feature-modal-content::-webkit-scrollbar-thumb {
  background: #13A480;
  border-radius: 10px;
}

.feature-modal-content::-webkit-scrollbar-thumb:hover {
  background: #0f8a6a;
}

@keyframes slideIn {
  from { 
    transform: translateY(-50px);
    opacity: 0;
  }
  to { 
    transform: translateY(0);
    opacity: 1;
  }
}
.feature-modal-content-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feature-modal-close {
  color: #666;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.feature-modal-close:hover,
.feature-modal-close:focus {
  color: #13A480;
}

.feature-modal-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--Brand-Secondary-Navy, rgba(18, 60, 74, 1));
  margin-bottom: 20px !important;
  line-height: 1.2;
}

.feature-modal-body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #4A5560;
}
.feature-modal-body img{
  width: 100%;
}
.feature-modal-body h3 {
  font-family: Roboto;
font-weight: 500;
font-style: Medium;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
  color: var(--Brand-Primary-500, rgba(19, 164, 128, 1));
  margin-top: 24px !important;
  margin-bottom: 12px !important;
}

.feature-modal-body ul {
  margin-bottom: 24px !important;
  padding-left: 25px;
}
.feature-modal-body ol {
  margin: 15px 0 !important;
  padding-left: 25px;
}

.feature-modal-body li {
  margin-bottom: 10px !important;
  color: #4A5560;
}
.feature-modal-body li::marker{
  font-weight: bold;
}

.feature-modal-body p {
  margin-bottom: 24px !important;
}
.feature-modal-body div{
  padding: 24px;
  border-radius: 16px;
  background-color: #66D1B214;
}

@media (max-width: 768px) {
  .feature-modal {
    padding: 10px;
  }
  
  .feature-modal-content {
    padding: 30px 20px;
    width: 95%;
    max-height: 90vh;
  }
  .feature-modal-content .logoImg {
    width: 88px;
  }  
  .feature-modal-title {
    font-size: 24px;
    padding-right: 30px;
  }
  
  .feature-modal-body {
    font-size: 14px;
  }
  
  .feature-modal-close {
    width: 40px;
    height: 40px;
    font-size: 32px;
  }
}