/*!
Theme Name: Aurora360
Theme URI: #
Author: #
Author URI: #
Description: Custom WP theme for Aurora360.ai
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: aurora360
Tags: Custom build WP Theme
*/

/* ============================================================
   FONTS
============================================================ */
@font-face {
  font-family: "Satoshi";
  src:
    url("fonts/Satoshi-Regular.woff2") format("woff2"),
    url("fonts/Satoshi-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src:
    url("fonts/Satoshi-Medium.woff2") format("woff2"),
    url("fonts/Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family:
    "Satoshi",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background-color: #010117;
  color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* ============================================================
   NAVIGATION
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    transform 0.35s ease,
    background 0.3s ease;
  padding: 20px 0;
}

.site-header.headroom--unpinned {
  transform: translateY(-100%);
}

.site-header.headroom--pinned {
  transform: translateY(0);
}

.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(27, 230, 209, 0.11) 0%, rgba(27, 230, 209, 0) 94.23%);
  backdrop-filter: blur(13.75px);
  -webkit-backdrop-filter: blur(13.75px);
  pointer-events: none;
  z-index: -1;
}

.brand-teal {
  color: #00d4d8;
}

header a {
  color: #fff;
  font-family: Satoshi;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* ---- Submenu ---- */
.menu-item {
  position: relative;
}

.menu-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-item > a,
.footer-heading {
  transition: 0.3s;
}

.menu-item > a:hover,
.footer-heading:hover {
  color: #1be6d1;
}

.menu-item > a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 5px;
  background: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L4 4L7 1' stroke='white' stroke-opacity='0.7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.menu-item:hover > a::after,
.menu-item.is-open > a::after {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  padding: 35px 0 10px; /* top padding = visual gap; hover stays continuous */
  min-width: 160px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  pointer-events: none;
  z-index: 200;
}

.submenu-inner {
  background: rgba(5, 8, 28, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px 0;
}

.menu-item:hover .submenu,
.menu-item.is-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.submenu-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu-inner ul li a {
  display: block;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.18s ease;
}

.submenu-inner ul li a:hover {
  color: #1be6d1;
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Mobile nav drawer ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(1, 1, 23, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 95px 9px 40px 27px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-item > a,
.mobile-item-head a {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  padding: 16px 0;
  text-decoration: none;
}

.mobile-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-sub-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  line-height: 0;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.mobile-item.is-open .mobile-sub-toggle {
  transform: rotate(180deg);
}

.mobile-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 10px 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-item.is-open .mobile-sub {
  max-height: 300px;
}

.mobile-sub li a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.18s ease;
}

.mobile-sub li a:hover {
  color: #1be6d1;
}

@media (max-width: 991px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: #1be6d1;
  color: #05060f;
  padding: 8px 16px;
  z-index: 9999;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 0;
}
.container {
  max-width: 1145px;
}
.o8 {
  opacity: 0.8;
}
.libre {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: #1be6d1;
  font-size: 24px;
  letter-spacing: 1.3px;
}

h1,
.h1 {
  font-size: 60px;
  font-weight: 500;
}

h2,
.h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
}

h3,
.h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.6px;
}

.accordion {
  border-bottom: 0.5px solid #38334d;
  cursor: pointer;
  padding: 15px 0 5px;
}

.accordion .title {
  cursor: pointer;
  user-select: none;
  margin: 0 0 10px;
}

.accordion.active .title,
.accordion.active .title svg path {
  color: #1be6d1;
  fill: #1be6d1;
}

.accordion .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

@media screen and (min-width: 992px) {
  .accordions {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
  }
}

.accordion.active .content {
  max-height: 400px;
}

.accordion-icon {
  display: inline-flex;
  flex-shrink: 0;
  position: relative;
  width: 12px;
  height: 14px;
}

.accordion-icon .icon-plus,
.accordion-icon .icon-minus {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.15s ease;
}

.accordion-icon .icon-minus {
  opacity: 0;
}

.accordion.active .accordion-icon .icon-plus {
  opacity: 0;
  transition-delay: 0s;
}

.accordion.active .accordion-icon .icon-minus {
  opacity: 1;
  transition-delay: 0s;
}

.fw-500 {
  font-weight: 500;
}

h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.4px;
}

.min-h-100 {
  height: 80vh;
  max-height: 700px;
}

.min-h-85 {
  height: 85vh;
}

/* Hero video background */
.hero-section {
  position: relative;
  overflow: hidden;
}

a {
  color: inherit;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 71%;
  height: 85%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(1, 1, 23, 0.75) 0%, rgba(1, 1, 23, 0.4) 60%, rgba(1, 1, 23, 0.1) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-120 {
  margin-bottom: 120px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-200 {
  margin-bottom: 200px;
}
.cards .text {
  padding: 30px 20px;
  color: #fff;
  font-family: Satoshi;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

span.cat {
  border-radius: 28px;
  background: #1be6d1;
  color: #010117;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px; /* 100% */
  letter-spacing: -0.24px;
  padding: 8px 16px;
  border: none;
  display: inline-block;
}
.card-item .link {
  position: absolute;
  left: 15px;
  bottom: 20px;
}

.card-item {
  position: relative;
}

.search {
  border-radius: 40px;
  border: 0.5px solid #5d5580;
  display: flex;
  width: 347px;
  padding: 12px 24px 14px 24px;
  align-items: center;
  gap: 131px;
  margin-bottom: 25px;
}
.search input {
  background: transparent;

  -webkit-appearance: none;
  appearance: none;
  border: 0;
  box-shadow: 0;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.search input:focus,
.search input:focus-visible {
  border: 0;
  box-shadow: 0;
  outline: none;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.button:hover svg {
  transform: translateX(5px);
}
.button svg,
.footer-social svg path,
.footer-links a {
  transition: 0.3s;
}
.fs-20 {
  font-size: 20px;
}

.footer-social svg:hover path {
  fill: #00d4d8;
}

.fs-18 {
  font-size: 18px;
}

.fs-30 {
  font-size: 30px !important;
}
.page-template-page-insights .col-lg-4 {
  padding: 0 10px;
}

.text h3 {
  padding: 6px 0 26px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 150% */
  letter-spacing: -0.6px;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.card-item .text {
  padding: 20px 15px 70px;
}

.checkbox {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #8277b3;
}

span.name {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 100% */
}

.card-item .text p {
  opacity: 0.8;
}
.card-item {
  border-radius: 26px;
  border: 1px solid #38334d;
  background: linear-gradient(180deg, #020317 0%, #0b0823 100%);
  overflow: hidden;
  text-align: left;
  height: 100%;
}

.delivery-card .text {
  padding: 16px 25px;
}
.delivery-card {
  border-radius: 15px;
}

.delivery-icon {
  line-height: 1;
}

.delivery-photo {
  min-height: 420px;
  background-image: url("/wp-content/uploads/2026/05/Rectangle-760.png");
  background-size: cover;
  background-position: center;
  border-radius: 15px;
}

/* ============================================================
   CONTACT FORM 7
============================================================ */
.contact-wrap .wpcf7-form {
  max-width: 800px;
  margin: 0 auto;
}

.contact-wrap .wpcf7-form p {
  margin-bottom: 16px;
}

/* All inputs & textarea */
.contact-wrap .wpcf7-form input[type="text"],
.contact-wrap .wpcf7-form input[type="email"],
.contact-wrap .wpcf7-form input[type="tel"],
.contact-wrap .wpcf7-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #38334d;
  border-radius: 15px;
  padding: 10px 20px;
  color: #ffffff;
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  min-height: 60px;
}

.contact-wrap .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-wrap .wpcf7-form input[type="text"]::placeholder,
.contact-wrap .wpcf7-form input[type="email"]::placeholder,
.contact-wrap .wpcf7-form input[type="tel"]::placeholder,
.contact-wrap .wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-wrap .wpcf7-form input[type="text"]:focus,
.contact-wrap .wpcf7-form input[type="email"]:focus,
.contact-wrap .wpcf7-form input[type="tel"]:focus,
.contact-wrap .wpcf7-form textarea:focus {
  border-color: rgba(27, 230, 209, 0.45);
}

.contact-wrap .wpcf7-form textarea {
  min-height: 240px;
  resize: vertical;
}

/* Remove inner span padding from CF7 */
.contact-wrap .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}

/* Checkbox */
.contact-wrap .wpcf7-form .wpcf7-acceptance {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 32px;
}

.contact-wrap .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.contact-wrap .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-wrap .wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked {
  background: #1be6d1;
  border-color: #1be6d1;
}

.contact-wrap .wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: 2px solid #010117;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.contact-wrap .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

/* Submit button */
.contact-wrap .wpcf7-form .wpcf7-submit,
.button {
  display: block;
  margin: 0 auto;
  background: transparent;
  border: 1.5px solid #1be6d1;
  border-radius: 100px;
  color: #ffffff;
  font-family: "Satoshi", sans-serif;
  font-size: 17px;
  font-weight: 400;
  padding: 12px 24px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  letter-spacing: 0.2px;
}

.open-video {
  cursor: pointer;
}

.contact-wrap .wpcf7-form .wpcf7-submit:hover {
  background: #1be6d1;
  color: #38334d;
}

.button:hover {
  background: #1be6d1;
  color: #38334d;
}
.button:hover svg path {
  fill: #38334d;
}

/* Validation messages */
.contact-wrap .wpcf7-not-valid-tip {
  color: #1be6d1;
  opacity: 0.8;
  font-size: 12px;
  margin-top: 6px;
  display: block;
}

.contact-wrap .wpcf7-response-output {
  border: 1px solid rgba(27, 230, 209, 0.3);
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.contact-wrap .wpcf7-mail-sent-ok {
  border-color: rgba(27, 230, 209, 0.4);
  color: #1be6d1;
}

.contact-wrap .wpcf7-mail-sent-ng,
.contact-wrap .wpcf7-spam-blocked {
  border-color: rgba(255, 107, 107, 0.4);
  color: #ff6b6b;
}

.card-item img {
  display: block;
  width: 100%;
}

/* ============================================================
   BODY BOTTOM VIDEO BACKGROUND
============================================================ */
.body-bottom-video {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 49vh;
  z-index: -1;
  pointer-events: none;
}

.body-bottom-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.body-bottom-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #010117 0%, rgba(1, 1, 23, 0.29) 30%);
  backdrop-filter: blur(50.65px);
  -webkit-backdrop-filter: blur(50.65px);
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 24px 0 0;
  background: transparent;
}

.fs-60 {
  font-size: 60px;
}
#footer > div:nth-child(1) > div > div.col-lg-6.d-none.d-lg-block > div > div:nth-child(2) {
  max-width: 96px;
}
#footer > div:nth-child(1) > div > div.col-lg-6.d-none.d-lg-block > div > div:nth-child(2) > ul {
  position: absolute;
}
.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.single-page.hero {
  padding: 250px 0 100px;
}
.single-content * {
  opacity: 0.8;
}
.cky-btn, .cky-btn-revisit-wrapper {
  background: #8800FF!important;
  border-color: #8800FF!important;
color: #fff!important;
}
.footer-copy a {
  margin: 0 10px;
}
.single-content {
  padding-bottom: 120px;
}
.single-content a {
  color: #1be6d1;
  text-decoration: underline;
}
.single-content strong {
 font-weight: bold;
}
.single-content h3 {
  font-size: 20px !important;
  margin: 30px 0 30px !important;
  font-weight: bold;
}
.footer-tagline {
  font-size: 0.75rem;
  color: #1be6d1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.footer-desc {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 60px;
}

.footer-heading {
  color: #fff;
  font-family: "Satoshi";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 32px;
  display: inline-block;
}

footer .mailto {
  color: #15e8d3;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: #fff;
  font-family: Satoshi;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 191.667% */
}

.footer-links a:hover {
  color: #1be6d1;
}

.footer-bottom {
  padding: 15px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  color: #fff;

  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.28px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  text-decoration: none;
}

@media screen and (max-width: 992px) {
  h1,
  .h1 {
    font-size: 40px;
  }

  .hero-section .col-lg-8 {
    max-width: 400px;
  }

  .libre {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .hero-title {
    margin-bottom: 24px;
  }
  .hero-video {
    height: 69%;
    left: 29%;
    width: 100%;
  }
  .min-h-85 {
    height: 500px;
    margin-bottom: 0;
  }

  .fs-18 {
    font-size: 15px;
  }

  h2,
  .h2,
  .fs-60 {
    font-size: 28px;
  }

  .mb-15 {
    margin-bottom: 5px;
  }
  .mb-120 {
    margin-bottom: 70px;
  }
  .text h3 {
    padding: 6px 0 10px;
  }
  .card-item .text {
    padding: 20px 15px 16px;
  }

  .card-item {
    margin-bottom: 24px;
    height: auto;
  }
  .mb-200 {
    margin-bottom: 40px;
  }
  #how-we-work .row {
    flex-direction: column-reverse;
  }
  #how-we-work .card-item {
    margin-bottom: 12px;
  }

  .delivery-photo {
    margin-bottom: 6px !important;
  }
  .mb-70 {
    margin-bottom: 35px;
  }
  .footer-heading {
    font-size: 14px;
    margin-bottom: 11px;
    margin-left: 11px;
  }
  .footer-desc {
    padding-left: 11px;
    margin-top: 31px;
  }

  .page-template-page-insights .hero-section {
    height: 366px !important;
  }
  .min-h-100 {
    height: auto !important;
  }
  h3,
  .h3 {
    font-size: 24px;
  }
  #reqflow .row,
  #featureflow .row {
    flex-direction: column-reverse;
  }
  .mb-90 {
    margin-bottom: 35px;
  }
  .accordions {
    margin-top: 20px;
  }
  header .container {
    max-width: 100%;
  }
  .page-template-page-insights .hero-video {
    left: 0;
  }
  .page-template-page-solutions .hero-title {
    margin-bottom: 4px;
  }
  .page-template-page-solutions .hero-section {
    background: url("/wp-content/uploads/2026/05/Group-230.png") !important;
    background-repeat: no-repea !important;
    background-size: cover !important;
  }

  #pos-abs {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 0px;
  }

  .page-template-page-solutions .hero-section .col-lg-8 {
    padding-top: 45px;
  }
  .mb-20 {
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 450px) {
  .container {
    max-width: 360px;
  }
}
