:root {
  --white-color: #fff;
  --primary-color: #29a988;
  --text-color: #474646;
  --secondary-color: #105fae;
  --blue-dark: #105fae;
  --font-size: 16px;
  --border-color: #DDDDDD;
  --grey-bg-color: #F4F6FA;
  --heading-color: #1D2D5B;
  --footer-bg: #202430;
  --text-font: 'Google Sans';
  --heading-font: 'circular-std-medium';
  --button-color: #29a988;
  --secondary-button: #105fae;
  --radius-rounded: 20px;
  --rounded-radius-style: 100px;
  --dark-bg: #001F33;
  --light-border-grey: #f2f1f8;
}

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

@font-face {
  font-family: circular-std-medium;
  src: url(../fonts/circular-std-medium.ttf);
}

/*---------- CSS Styles ----------- */

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: var(--text-font);
  color: var(--text-color);
  font-size: 18px !important;
}

a,
object,
ol,
p,
ul {
  font-size: 100%;
  vertical-align: baseline;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 18px;
  text-decoration: none
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none;
  font-size: 16px;
}

figure {
  margin: 0;
}

:focus {
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
  max-width: 100%;
}

legend {
  white-space: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

button,
input {
  line-height: normal;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: button;
  border: none;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--heading-font);
  font-weight: normal;
  color: var(--heading-color);
  letter-spacing: -1.5px;
  line-height: 1.3;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-40 {
  margin-top: 40px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.space-70 {
  padding: 70px 0;
}

.space-80 {
  padding: 80px 0;
}

.space-100 {
  padding: 100px 0;
}

.border-radius {
  border-radius: var(--radius-rounded);
  width: 100%;
}

.btn.btn-primary {
  background-color: var(--primary-color);
  border-radius: var(--rounded-radius-style);
  padding: 12px 28px;
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
  font-family: var(--heading-font);
  border: none !important;
  transition: all 0.3s;
  letter-spacing: -0.2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn.btn-primary:hover {
  background-color: var(--secondary-button);
  color: #fff;
}

.btn.btn-primary i.fa-solid.fa-arrow-right {
  font-size: 12px;
  transform: rotate(321deg);
}

.wow {
  animation-duration: 1.2s;
}

/*preloader*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--footer-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--primary-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 61px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*Header*/
header.header.sticky-header {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    background: rgba(6, 22, 35, 0.90);
}
header.header.sticky-header nav.navbar {
    background: transparent;
    margin: 0 !important;
}

header.header {
  z-index: 99;
  position: relative;
}

header.header nav.navbar {
  margin: 12px 0 0 !important;
  box-shadow: none !important;
  padding: 10px;
  border-radius: var(--radius-rounded);
  background: rgba(255, 255, 255, 0.05);
}

a.navbar-brand {
  padding: 0;
  margin: 0;
  width: 230px;
}

/* Navbar */
.navbar {
  background: transparent;
}

.navbar-nav .nav-link {
  color: #fff;
  margin: 0 6px;
  letter-spacing: -0.1px;
  font-size: 17px;
  font-family: var(--text-font);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-item.dropdown .list-unstyled li:hover a,
.navbar-nav .nav-link:hover,
.dropdown-item:hover {
  color: var(--primary-color) !important;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.btn.btn-primary.btn-talk:hover {
  background: #fff;
  color: #000;
}

li.nav-item.dropdown.mega-menu {
  position: unset;
}

li.nav-item.active a.nav-link{
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 11% 0 0;
  display: flex;
  align-items: end;
  background-color: #061623;
  overflow: hidden;
  margin-top: -100px;
  background-image: url(../images/hero-apttern-bg.svg);
  background-size: cover;
}

.hero-content {
  max-width: 85%;
  margin: 0 auto;
}

.hero h1 {
  font-size: 95px;
  line-height: 95px;
  margin-bottom: 20px;
  letter-spacing: -7px;
}

.hero-content h2 {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 30px;
  font-family: var(--text-font);
  margin: 0 auto;
}

span.color-text {
  background: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
  background: -webkit-linear-gradient(left,
      var(--primary-color) 0%,
      var(--secondary-color) 50%,
      var(--primary-color) 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease-in-out;
  padding-right: 3px;
}

.top-ai-swiper {
  margin-top: 40px;
}

.top-ai-swiper .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.top-ai-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
}

.top-ai-swiper .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0;
}

@-webkit-keyframes line-slide {
  0% {
    background-position: -5% 0;
  }

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

@keyframes line-slide {
  0% {
    background-position: -5% 0;
  }

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

/*Client Logo*/
.logos-wrapper {
  background: var(--dark-bg);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.swiper-container {
  overflow: hidden;
}

/*About Us*/
.about-icon img {
    width: 200px;
}
h2.title-heading {
  font-size: 75px;
  letter-spacing: -4px;
  line-height: 1;
}

.Stratum-AI-About small {
  font-size: 18px;
  font-family: var(--heading-font);
}

.text-muted {
  color: #8F8F8F !important;
}

.stats-wrapper {
  padding: 0 10%;
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
}

.stats-wrapper h2 {
  margin: 0;
  font-size: 70px;
  line-height: 1;
  font-weight: bold;
}

.stats-wrapper .stats-text {
  color: #8F8F8F;
  font-size: 17px;
  display: block;
  font-weight: 500;
  letter-spacing: -0.3px;
}


/*Industry Challenges*/
.industry-challenges-inner {
  padding: 5%;
  border-radius: 30px;
  background: var(--grey-bg-color);
  border: 1px solid var(--light-border-grey);
}


.challenge-card {
  background: #fff;
  padding: 50px 30px 30px;
  border-radius: var(--radius-rounded);
  min-height: 370px;
  border: 1px solid #ebedee;
  transition: all 0.3s ease;
}

.challenge-card:hover {
  transform: scale(1.03) translateY(-5px);
}

.challenge-card .icon {
  opacity: 0.6;
  padding: 18px;
  width: 90px;
  background: #e8e8ec;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  line-height: 80px;
}

.challenge-card .icon img {
  height: 50px;
  object-fit: cover;
}

.challenge-card h5 {
  line-height: 1.1;
  font-size: 30px;
  letter-spacing: -1.3px;
}

/*capabilities*/
.capabilities-section .col-sm-4.col-md-4 {
    padding: 0;
}
.cap-card img {
    width: 205px;
    border-radius: 20px;
    border: 1px solid #edeff0;
}

/*Text Marquee*/
.scroll-text-swiper {
  transition-timing-function: linear !important;
  position: relative;
  margin-top: 0;
}

.scroll-text-swiper .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 00px;
}

.scroll-text-swiper strong {
  font-size: 100px;
  color: #D3D4DA;
  letter-spacing: -6px;
}

@-webkit-keyframes line-slide {
  0% {
    background-position: -5% 0;
  }

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

@keyframes line-slide {
  0% {
    background-position: -5% 0;
  }

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


/*benefits*/
.benefits-section {
  background-color: var(--grey-bg-color);
  background-image: url(../images/icon-logo-bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
}

.benefit-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-rounded);
  display: flex;
  gap: 15px;
  text-align: left;
}

.benefit-card h4 {
  margin-bottom: 12px;
  font-size: 30px;
  letter-spacing: -1.5px;
  line-height: 1;
  display: block;
}

.benefit-card p {
  margin: 0;
}

.icon .fa-circle-check {
  color: var(--primary-color);
  font-size: 30px;
}

/*Use Cases*/
.feature-card {
    border-radius: var(--radius-rounded);
    background: var(--grey-bg-color);
    border: 1px solid var(--light-border-grey);
}

.feature-card img.img-fluid.rounded-4 {
    border-radius: var(--bs-border-radius-xl) var(--bs-border-radius-xl) 0 0 !important;
}

.feature-card h4 {
  font-size: 30px;
  letter-spacing: -1.5px;
  line-height: 1;
  display: block;
}

.feature-card p{
  font-size: 17px;
}

.cta-box {
  border-radius: var(--radius-rounded);
  background: var(--grey-bg-color);
  border: 1px solid var(--light-border-grey);
}

.cta-box h3 {
  font-size: 35px;
  letter-spacing: -2px;
  line-height: 1;
  display: block;
}

/*Stratum AI Work*/
.how-it-works {
  background: linear-gradient(180deg, #031f33, #021522);
  color: var(--white-color);
}

.how-it-works p.text-muted.text-white {
  color: #fff !important;
}

.process-wrapper {
  position: relative;
}

.process-line {
  position: absolute;
  top: 72px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step strong {
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.3px;
  font-weight: 500;
  display: block;
  margin-top: 15px;
}

/*Why Choose Us*/
.bg-choose-us {
  background: var(--grey-bg-color);
  border-radius: 30px;
  border: 1px solid var(--light-border-grey);
}

.feature-list li {
  margin-bottom: 3px;
}

.feature-list li i.fa-circle-check {
  color: var(--primary-color);
}

/*User Review*/
.user-stories {
  background: linear-gradient(180deg, #031f33, #021522);
  color: #fff;
}


.story-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-rounded);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.story-card h5 {
  margin-top: 15px;
  color: #fff;
  letter-spacing: -1.2px;
  font-size: 30px;
}

.story-card p {
  color: #e8eff7;
  font-size: 19px;
  margin: 0;
}

.stars i {
  color: #facc15;
  font-size: 13px;
  margin-right: 2px;
}

/*FAQ*/
div#faqAccordion {
  max-width: 1130px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  background: var(--grey-bg-color);
  border: none;
  border-radius: var(--radius-rounded);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--light-border-grey);
  padding: 28px 35px;
}

.faq-accordion .accordion-button {
  background: transparent !important;
  box-shadow: none;
  font-size: 25px;
  padding: 0;
  font-family: var(--heading-color);
  letter-spacing: -1.1px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  margin-bottom: 18px;
}

.faq-accordion .accordion-body {
  padding: 0;
  font-size: 18px;
}

.accordion-button::after {
  background-size: 16px;
}

/*Footer*/
.site-footer {
  background: var(--footer-bg);
  color: #fff;
}

.site-footer h3.logo {
    width: 240px;
}

.logo-section strong {
  color: #fff;
  font-size: 18px;
}

.social-icons {
  gap: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
}

.footer-link h4 {
  color: #fff;
  font-size: 25px;
  letter-spacing: -1px;
  display: block;
}

.footer-link ul li {
  display: block;
  margin: 8px 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom a {
  margin-left: 20px;
  color: #fff;
}

.footer-bottom a:hover,
.footer-link ul li a:hover {
  color: var(--primary-color);
}
/* ================= COOKIE CONSENT ================= */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0b0f1a;
  color: #ffffff;
  z-index: 9999;
  padding: 18px 20px;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
}

.cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-content a {
  color: #6cf2c2;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
}

.cookie-actions button {
  margin-left: 10px;
  min-width: 90px;
}

/* Mobile */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions button {
    margin: 5px;
  }
}
/* intl-tel-input full width fix */
.iti {
  width: 100%;
}

.iti__tel-input {
  width: 100%;
}
.phone-field.phone-error-active .iti__selected-flag {
  height: 65% !important;
}
.form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px 20px;
    
}
/* Filter controls equal height */
.filter-control {
  height: 44px;
}

/* Buttons same height as inputs */
.filter-btn {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Better table spacing */
.table th,
.table td {
  padding: 12px 10px;
  white-space: nowrap;
}

/* Email wrap fix */
.table td:nth-child(4) {
  white-space: normal;
  max-width: 240px;
}

/* Type badge styling */
.badge {
  padding: 6px 12px;
  font-size: 0.85rem;
}

/* Card rounding for premium look */
.card {
  border-radius: 12px;
}
/* Toggle wrapper */
.report-toggle-wrapper {
  background: #f8f9fc;
}

/* Toggle buttons */
.report-toggle .toggle-btn {
  border: none;
  border-radius: 10px !important;
  padding: 10px 22px;
  font-weight: 500;
  color: #1c37a1;
  background: transparent;
  transition: all 0.25s ease;
}

/* Active toggle */
.report-toggle .toggle-btn.active {
  background: #13222e;
  color: #fff;
}

/* Hover effect */
.report-toggle .toggle-btn:hover {
  background: rgba(28, 55, 161, 0.08);
}

/* Mobile fix */
@media (max-width: 576px) {
  .report-toggle {
    flex-direction: column;
    width: 100%;
  }

  .report-toggle .toggle-btn {
    width: 100%;
    margin-bottom: 6px;
  }
}
.pagination .page-item .page-link {
  border-radius: 8px;
  margin: 0 2px;
  color: #1c37a1;
}

.pagination .page-item.active .page-link {
  background: #1c37a1;
  border-color: #1c37a1;
  color: #fff;
}

.pagination .page-link:hover {
  background: rgba(28, 55, 161, 0.08);
}

.pagination-info {
  font-size: 0.9rem;
}

/* ================================================== */
