/* === GLOBAL === */
body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

section {
  overflow: hidden;
  padding: 50px 0;
}

/* === COLORS & UTILITIES === */
.yellow-bg {
  background-color: #fdba00;
}

.yellow-text {
  color: #fdba00;
}

.green-text {
  color: #00918e;
}

.black-text {
  color: #3a3a3a;
}

.grey-bg {
  background-color: #e4e6ed;
}

.white-bg {
  background-color: #ffffff;
}

.green-bg {
  background-color: #00918e;
}

/* === PRELOADER === */
.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.preloader__image {
  width: 200px;
  animation: flipInY 1.5s infinite both;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

/* === NAVBAR === */
#get-header-section {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.nav-logo {
  width: 150px;
  transition: height 0.3s ease;
}

.navbar {
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
}

.navbar.shrink {
  padding: 0.4rem 1.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar.shrink .nav-logo {
  height: 30px;
}

/* === HERO SECTION === */
.hero-section {
  overflow: hidden;
}

.highlight-text {
  background-color: #fcb900;
  border-radius: 4px;
  padding: 2px 9px;
}
.hero-title {
    font-size: 2.5rem;
}

.hero-subtitle {
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 300;
}

.hero-images-container {
  position: relative;
}

.hero-form .email-input {
  padding: 11px 12px;
  border: #fff;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
}

.hero-form .email-input::placeholder {
  color: #a6a6a6;
}

.hero-btn {
  color: #3a3a3a;
  padding: 11px 12px;
  border: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  border-radius: 5px;
  background-color: #fdba00;
}

.login-btn {
  background-color: #212529;
  color: #fff;
  font-weight: 400;
  padding: 8px 20px;
  font-size: 0.95rem;
}

.login-btn:hover {
  background-color: #e4e6ed;
  color: #212529;
  text-decoration: none;
}

/* === DASHBOARD SECTION === */
.dashboard-card {
  position: relative;
  transform-style: preserve-3d;
}

.d-1,
.d-2,
.d-3 {
  border: 1px solid #fdba00;
  border-radius: 3px;
}

.d-2 {
  position: absolute;
  left: -10%;
  top: 10%;
  width: 60%;
  transform: translateZ(50px);
}

.d-3 {
  position: absolute;
  bottom: 20%;
  right: -10%;
  width: 30%;
  transform: translateZ(20px);
}

.box-shadow {
  box-shadow: 0 5px 15px rgb(0 0 0 / 15%);
}

/* === DATA-DRIVEN SECTION === */
.section-title {
  color: #00918f;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo-text {
  color: #00918f;
  font-size: 1.4rem;
  font-weight: 700;
}

.description-text {
  line-height: 1.4;
  font-size: 1.1rem;
  font-weight: 400;
}

.question-text {
  font-size: 1.1rem;
  font-weight: 700;
}

/* === FEATURES SECTION === */
.features-section {
  background-color: #ebecf2;
}

.feature-card {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border: none;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-body {
  padding: 0.9rem;
}

.icon-square {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background-color: #ebecf2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.features-section h3 {
  color: #00918e;
}

.features-section p {
  line-height: 1.6;
  font-size: 0.95rem;
}

/* === SOLUTION SECTION === */
.solution-heading {
  font-size: 2rem;
  font-weight: 300;
}

.solution-headingp {
  font-size: 1.5rem;
  font-weight: 300;
}

.solution-content {
  max-width: 700px;
  font-weight: 500;
}

/* === MARQUEE === */
.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  width: fit-content;
}

.marquee-content .platform-icon {
  flex-shrink: 0;
  max-width: 70px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.marquee-content .platform-icon:hover {
  transform: scale(1.2);
  z-index: 10;
}

/* === INSIGHTS SECTION === */
.role-title {
  color: #00918f;
  font-weight: 500;
}

.card-role {
  background-color: #ebecf2;
  border: none;
  border-radius: 10px;
  padding: 20px;
  transition: all 500ms;
  cursor: pointer;
}

.card-role:hover {
  background-color: #f7f8fa;
  box-shadow: 0 4px 24px rgba(0, 169, 157, 0.1),
    0 1.5px 6px rgba(0, 139, 130, 0.1);
}

/* === FOOTER === */
#get-footer-section{
margin-bottom: 0;
padding: 0;
}
.metrics-footer-area {
  padding: 50px 0;
}

.demo-request-btn {
  background-color: #ffc107;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
}

.demo-request-btn:hover {
  background-color: #ffb300;
  color: #000;
}

.email-input-field {
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
}

.email-input-field:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.25);
}

.footer-brand-logo {
  max-width: 200px;
  height: auto;
}

.footer-section .form-control,
.footer-section .btn {
  border-radius: 0;
}

.bottom-footer {
  padding: 15px 0;
}

/* === PRIVACY POLICY === */
.policy-header-section {
  padding: 0px !important;
}

.policy-header {
  padding-bottom: 30px;
  padding-top: 10px;
}

.policy-section-padding {
  padding-bottom: 0;
}

.policy-list {
  list-style-type: decimal;
  margin-left: -5px;
  overflow: visible;
  font-size: 18px;
  color: #3a3a3a;
}

.policy-link {
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.policy-items:hover {
  color: #fdba00;
}


.policy-items {
  padding-bottom: 10px;
}

.space-1 {
  width: 100%;
  padding-bottom: 30px;
}

.policy-container-rdfad {
  padding: 50px 0;
}

.policy-container-rdfad p {
  font-size: 14px;
  color: #3a3a3a;
  margin-bottom: 15px;
  line-height: 1.6;
}

.policy-container-rdfad h2 {
  color: #00918e;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.policy-container-rdfad h3 {
  color: #00918e;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.policy-container-rdfad h5 {
  color: #3a3a3a;
  font-weight: 400;
  margin-bottom: 25px;
  font-size: 1rem;
}

.overview-section,
.datacollect-section,
.acceptance-term-section,
.user-responsibilities-section,
.legalBasis-section,
.use-of-services-section,
.consent-section,
.data-privacy-section,
.sharing-disclosure-section,
.Limitation-of-liability-section,
.data-retention-section,
.governing-law-section,
.rights-section,
.data-protection-section,
.contact-info-section {
  width: 100%;
}

.overview-list,
.scope-list,
.info-list,
.personal-data-list,
.security-list {
  list-style-type: disc;
  padding-left: 50px;
  margin-bottom: 20px;
}

.overview-list p {
  color: #3a3a3a;
  margin-bottom: 10px;
}

.overview-item {
  color: #3a3a3a;
  padding-bottom: 10px;
}

.overview-head {
  font-weight: bolder;
  color: #fdba00;
}

.scope-item,
.info-item,
.p-data-item,
.s-list-item {
  font-size: 14px;
  color: #3a3a3a;
  padding-bottom: 10px;
  line-height: 1.6;
}

.scope-link {
  text-decoration: none;
  color: #00918e;
  font-size: 14px;
  transition: all 300ms;
}

.scope-link:hover {
  color: #fdba00;
}

.mail-link {
  display: inline;
  text-decoration: none;
  font-weight: bolder;
  color: #00918e;
  font-size: 14px;
  transition: all 300ms;
}

.mail-link:hover {
  color: #fdba00;
}

[id] {
  scroll-margin-top: 120px;
}

/* === COOKIE POLICY PAGE === */
.cookie-container {
  padding: 120px 0 80px 0;
  background-color: #ffffff;
}

.cookie-container h2 {
  color: #00918e;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cookie-container h3 {
  color: #00918e;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.cookie-container h5 {
  color: #00918e;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cookie-container p {
  color: #3a3a3a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 20px;
}

.cookie-container .cookie-link {
  color: #3a3a3a;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.cookie-container .cookie-link:hover {
  color: #fdba00;
  border-bottom: 1px solid #fdba00;
  text-decoration: none;
}

.cookie-list {
  list-style: disc;
  padding-left: 40px;
  margin-bottom: 25px;
}

.cookie-list li {
  color: #3a3a3a;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 10px;
}

.cookie-list li a {
  color: #00918e;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-list li a:hover {
  color: #fdba00;
}

/* === COOKIE BANNER === */
#get-cookie-section {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9990;
  margin: 0;
  padding: 0;
  background: transparent;
}

.cookie-block {
  display: none;
  width: 100%;
  min-height: 70px;
  background: #ffffff;
  margin: 0;
  padding: 20px 0;
  border-top: 2px solid #fdba00;
}

.cookie-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.cookie-para-block {
  width: 75%;
  padding-right: 40px;
}

.cookie-button-block {
  width: 25%;
  text-align: center;
}

.cookie-para {
  margin: 0;
  color: #3a3a3a; 
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.cookie-para .cookie-link {
  color: #3a3a3a;
  text-decoration: none;
  font-weight: 500;
  border-bottom: none;
}

.cookie-para .cookie-link:hover {
  color: #3a3a3a;
  text-decoration: underline;
}

.cookie-block .demo-request-btn {
  background: #fdba00;
  color: #3a3a3a;
  border-radius: 25px;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(253, 186, 0, 0.3);
  height: auto;
}

.cookie-block .demo-request-btn:hover {
  color: #3a3a3a;
  transform: translateY(-2px);
  text-decoration: none;
}
