/* ==========================================================================
   Dynalog Landing Page — source stylesheet
   Bootstrap 5.3 supplies the grid/utilities; this file holds brand styling,
   the parallax system, and component look-and-feel. See style.min.css for
   the minified file actually linked from index.html.
   ========================================================================== */

:root {
  --dyn-blue-dark: #0a1636;
  --dyn-blue: #178acb;
  --dyn-blue-deep: #1475ad;
  --dyn-blue-light: #4da8dc;
  --dyn-sky: #e8f4fd;
  --dyn-text: #1c2530;
  --dyn-text-muted: #5a6472;
  --dyn-border: #e3e8ef;
  --font-body: 'Manrope', Arial, sans-serif;
  --container-max: 1320px;

  /* Spec-named aliases used by the glassmorphism hero/quote-card system */
  --primary: #178acb;
  --white: #fff;
  --glass: rgba(255, 255, 255, 0.12);

  /* Spec-named aliases used by the Products card system */
  --dark: #17375e;
  --border: #e6eef5;
  --light: #f6f7f9;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  /* Kept in sync with the fixed navbar's real rendered height by main.js */
  --navbar-h: 0px;
}

/* -------------------------------------------------------------------------
   Base
   ------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  /* Offsets every anchor jump (native #hash links and our JS scrollIntoView
     calls alike) so section headings land below the fixed navbar instead
     of underneath it. */
  scroll-padding-top: var(--navbar-h);
}

body {
  font-family: var(--font-body);
  color: var(--dyn-text);
  font-weight: 400;
  overflow-x: hidden;
  padding-top: var(--navbar-h);
}

h1, h3, h4, h5 {
  font-family: var(--font-body);
  font-weight: 700;
}

/* All section H2s share one consistent, light-weight brand style,
   regardless of the section's background. */
h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  color: var(--dyn-blue);
  line-height: 1.3;
}

p {line-height: 1.625rem; font-size: 1rem;margin-bottom: 1.5rem;}

.text-brand {
  color: var(--dyn-blue);
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width:94%;
    }

a {
  color: var(--dyn-blue);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dyn-blue-deep);
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.btn-brand {
  background-color: var(--dyn-blue);
  border-color: var(--dyn-blue);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  box-shadow: 0 4px 14px rgba(23, 138, 203, 0.28);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--dyn-blue-deep);
  border-color: var(--dyn-blue-deep);
  color: #fff;
  box-shadow: 0 8px 22px rgba(23, 138, 203, 0.38);
  transform: translateY(-2px);
}

.btn-brand:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(23, 138, 203, 0.28);
}

.icon-svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   Navbar
   ------------------------------------------------------------------------- */
.dyn-navbar {
  /* position: sticky (Bootstrap's .sticky-top) breaks in several browsers
     once any ancestor has non-visible overflow on either axis — which
     .body's overflow-x: hidden below triggers. position: fixed sidesteps
     that ambiguity entirely; body's padding-top (kept in sync with the
     navbar's real height by main.js) reserves the space it no longer
     occupies in normal flow. */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  height: 90px;
}

/* Applied by main.js once the page has scrolled past the top, so the
   sticky header reads as "docked" rather than just floating in place. */
.dyn-navbar.navbar-scrolled {
  box-shadow: 0 4px 18px rgba(10, 22, 54, 0.14);
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.dyn-navbar .navbar-brand small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--dyn-text-muted);
  font-weight: 600;
}

.dyn-navbar .nav-link {
  color: var(--dyn-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.dyn-navbar .nav-link.active,
.dyn-navbar .nav-link:hover {
  color: var(--dyn-blue);
}

.dyn-navbar .navbar-toggler {
  border: 0;
  padding:0;
  color: var(--dyn-blue);
  box-shadow: none !important;
}

.dyn-navbar .navbar-toggler svg {
  width:2rem;
  height:2rem;
}

/* Offcanvas mobile menu (right side). At lg+ Bootstrap's own
   `.navbar-expand-lg .offcanvas` rules force this back to a normal
   static, always-visible block, so this styling only applies below lg. */
.dyn-offcanvas {
  width: 280px;
}

.dyn-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--dyn-border);
}

.dyn-offcanvas .navbar-nav .nav-link {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  font-size: 1rem;
}

.dyn-offcanvas .btn-brand {
    margin-top: 0;
    display: inline-block;
    font-size: 14px;
    margin-left: 4.375rem !important;
}

/* -------------------------------------------------------------------------
   Parallax system
   Desktop: background-attachment: fixed. Mobile: disabled (scroll normally).
   JS fallback (main.js) manually translates the layer when the browser
   reports no support for fixed attachment.
   ------------------------------------------------------------------------- */
.parallax {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.navbar-expand-lg .offcanvas .offcanvas-body {justify-content: flex-end;padding-top: 50px;}

@media (min-width: 992px) {
  .parallax {
    background-attachment: fixed;
  }
  /* Applied by JS only when the browser can't do fixed attachment well */
  .parallax.js-parallax {
    background-attachment: scroll;
    will-change: background-position;
  }
}

.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.parallax > .container,
.parallax > .container-fluid {
  position: relative;
  z-index: 1;
}

.h2, h2 {font-size: 2.625rem;}
/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  color: #fff;
  padding-top:5rem;
  padding-bottom:0;
}

.hero::before {
  background: var(--overlay);
}

/* Heading + paragraph typography (56px / 22px at desktop, per spec) */
.hero-heading {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 2.75rem;
  }
}

@media (min-width: 992px) {
  .hero-heading {
    font-size: 2.625rem; /* 56px */
  }
}

.hero-lead {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--white);
  font-size: 1.125rem;
  line-height: 1.5;
  max-width: 550px;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .hero-lead {
    font-size:1.125rem; /* 22px */
  }
}

/* -------------------------------------------------------------------------
   Hero product images: large device left, smaller device overlapping right,
   subtle drop shadow and continuous floating animation.
   ------------------------------------------------------------------------- */
/* Bootstrap columns are flex items with the default min-width:auto, so the
   fixed-width images below could otherwise force this column (and the whole
   row/container) wider than the viewport on narrow screens. min-width:0 lets
   the column shrink normally; flex-wrap:wrap on .hero-devices is a fallback
   that stacks the images instead of overflowing if they still don't fit. */
.hero-col {
    min-width: 0;
    margin-top: 140px;
}

.hero-devices {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  min-width: 0;
  margin-bottom:3.75rem;
  margin-top: 2.75rem;
}

.hero-device-wrap {
  position: relative;
  min-width: 0;
}

.hero-device-wrap--lg {
    z-index: 1;
    width: 67%;
}
.hero-device-wrap--sm {
  z-index: 2;
  margin-left: -12%;
  margin-bottom: -0.5rem;
}

.hero-device {
  display: block;
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.45));
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-device--lg {
  width: clamp(220px, 30vw, 420px);
}

.hero-device--sm {
  width: clamp(160px, 22vw, 300px);
  animation-duration: 5s;
  animation-delay: 0.4s;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* -------------------------------------------------------------------------
   Quote form card (glassmorphism), reused in hero + contact CTA
   ------------------------------------------------------------------------- */
.quote-card {
    background:var(--dyn-blue-deep);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius:0px;
    padding: 30px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(2, 10, 24, 0.35);
    margin-bottom: 5rem;
}

#contact .quote-card {margin-bottom:0}

.quote-card h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.hero-quote-card h3 {
  font-size:1.4rem /* 38px */
}

.quote-card .form-control,
.quote-card .form-select {
  height:45px;
  background-color: rgba(255, 255, 255, 0.18);
  border: none;
  border-radius: 12px;
  color: var(--white);
  font-size: 0.95rem;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.quote-card textarea.form-control {
  height: 130px;
  padding-top: 0.9rem;
  resize: vertical;
}

.quote-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.quote-card .form-select {
  color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}

.quote-card .form-select option {
  color: var(--dyn-text);
}

.quote-card .form-control:focus,
.quote-card .form-select:focus {
  background-color: rgba(255, 255, 255, 0.24);
  outline: none;
  box-shadow: 0 0 0 4px rgba(23, 138, 203, 0.45);
}

.quote-card .btn-brand {
    border-radius: 40px;
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
	font-family: var(--font-body);
    border: 1px solid rgba(255, 255, 255, 0.28);
    width: 121px !important;
	float: left;
}


.modal-body .quote-card .btn-brand {background:#fff;color: var(--primary);}

/* -------------------------------------------------------------------------
   Products
   ------------------------------------------------------------------------- */
.products-section {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-color: #fff;
}

.products-section .section-heading {
  color: var(--primary);
  text-align: center;
  margin-bottom: 60px;
}

.product-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  padding: 20px 20px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(10, 22, 54, 0.14);
}

.product-card .card-img-wrap {
  background-color: var(--light);
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  overflow: hidden;
}

.product-card .product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 0;
}

span.icon1 {
    width: 22px;
    text-align: center;
}

section#products .cards .product-actions .btn-brand {
	height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 0.875rem;
    padding: 10px 0 !important;
    line-height: 1.25rem;}

.product-card .card-title {
  font-size:1.25rem; /* 28px */
  font-weight: 600;
  color: var(--dark);
  margin-top: 25px;
  margin-bottom: 0.5rem;
}

.product-card .card-text {
    font-size: 0.75rem;
    color: #000;
    line-height: 1.6;
    height: 15px;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.25rem;
  font-size: 0.9rem;
  color: var(--dark);
}

.product-specs li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.8125rem;
    color: #000 !important;
    font-weight: 500;
}

.product-specs li:last-child {
  margin-bottom: 0;
}

.product-specs .bi {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.product-actions {
  margin-top: auto;
}

.product-actions .btn-brand {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}

.products-section .product-actions .btn-brand {
    height: 42px;
}

.secondary-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.625rem;
}

.btn-outline-card {
  flex: 1 1 0;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid #d8e2ea;
  border-radius: 40px;
  background-color: #fff;
  color: #4f5b67;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

a.btn-outline-card:hover svg path {
	stroke: #fff !important;
}

.btn-outline-card:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-outline-card .bi {
  font-size: 0.95rem;
}

/* -------------------------------------------------------------------------
   Device server info (parallax)
   ------------------------------------------------------------------------- */
.device-info {
  color: #fff;
  padding-top: 4.5rem;
	height: 655px;
  padding-bottom: 4.5rem;
	display: flex;
}

.device-info h2 {
 color: #fff;
}

.device-info p {
  color: #d7e2f5;
}

.device-info img {
  max-width: 100%;
  height: auto;
  animation: heroFloat 6s ease-in-out infinite;
}

/* -------------------------------------------------------------------------
   Industries
   ------------------------------------------------------------------------- */
.industries-section {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.industry-card {
    text-align: center;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 11px 11px 11px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
}

.industry-img {
    height: auto;
    overflow: hidden;
    border-radius: 24px;
}

.industry-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.industry-card:hover img {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.industry-card .industry-title {
    color: var(--dyn-blue);
    font-weight: 400;
    margin-top: 0.75rem;
    font-size: 1.5rem;
    text-align: left;
    padding-left: 1.875rem;
    line-height: 1.5rem;
    height: 54px;
}

.industry-card .industry-sub {
    color: #000;
    font-size: 1rem;
    padding-left: 1.875rem;
    text-align: left;
}

/* -------------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------------- */
.faq-section {
  background-color: #D5EAF6;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

section#faq h2 {
    color: #178ACB;
}

.faq-section .accordion-item {
  border: none;
  border-radius: 0.4rem !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
	background: none;
}

.faq-section .accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
    background: #fff;
    margin-top: 10px;
    border-radius: 12px;
}

.faq-section .accordion-button {
    background-color: #E1F1FA;
    font-weight: 600;
    color:#000;
    font-size: 1rem;
    box-shadow: none;
    border: 1px solid #ACD4EA;
    border-radius: 12px !important;
}

.faq-section .accordion-button .faq-toggle-icon {
    color:#178ACB;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: var(--dyn-blue);
  color: #fff;
}

.faq-section .accordion-button::after {
  display: none;
}

.faq-toggle-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.faq-section .accordion-button .icon-minus {
  display: none;
}

.faq-section .accordion-button:not(.collapsed) .icon-plus {
  display: none;
}

.faq-section .accordion-button:not(.collapsed) .icon-minus {
  display: inline-block;
  color:#fff;
}

/* -------------------------------------------------------------------------
   Journey / stats (parallax)
   ------------------------------------------------------------------------- */
.journey {
  --overlay: rgba(4, 8, 24, 0.8);
  color: #fff;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.journey h2 {
    color: #fff;
    font-weight: 300;
    margin-bottom: 26px;
}

.journey p {
  color: #c9d4e8;
}

.stat {
  text-align: left;
}

.stat .counter-value {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: #fff;
  line-height: 1;
}

.stat .counter-label {
    font-size: 1rem;
	font-weight: 300;
    color: #fff;
}

.value-item {
    margin-bottom:2.5rem;
    border-left: 3px solid #178ACB;
    padding-left: 10px;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item h4 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom:0;
    font-weight: 400;
    line-height: 1.375rem;
}

.value-item p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #fff;
    font-weight: 300;
}

.journey .col-lg-6.pr-50 {
    padding-right: 50px;
}

.journey .col-lg-6.pl-50 {
    padding-left: 50px;
}
 
 
 .thank-you-header {
    height: 400px;
}

.thank-yuo p.hero-lead, .thank-yuo h1 {
    max-width: 100%;
    text-align: center;
    color: #000;
}

.hero.thank-yuo {
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
}
/* -------------------------------------------------------------------------
   Contact CTA (parallax)
   ------------------------------------------------------------------------- */
.contact-cta {
    color: #fff;
    padding-top: 6.25rem;
    padding-bottom: 5.25rem;
}

.contact-cta::before {
    background: url(../images/contact-img.webp) no-repeat left bottom;
    content: '';
    width: 412px;
    height: 625px;
    top: 76px;
    position: absolute;
    left: 3%;
}


.contact-cta img.contact-person {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 0.5rem;
    margin-top: 90px;
}

.contact-cta h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-cta p {
  color:#ffffff;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.contact-info-item .icon-svg {
  color: var(--dyn-blue-light);
}

.contact-info-item a {
  color:#fff;
}

.contact-info-item a:hover {
  color: #fff;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.dyn-footer {
    background-color: #178ACB;
    color: #fff;
    font-size: 0.8125rem;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
}

.dyn-footer p{
	font-size: 0.8125rem;
}

.dyn-footer a {
    color: #fff;
}

.dyn-footer a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap:0.4375rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.social-icons a:hover {
  background-color: var(--dyn-blue);
}

.social-icons svg {
  width: 1rem;
  height: 1rem;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0;
    background: transparent;
    border-radius: 84px !important;
    border-radius: 24px !important;
}

.modal-body .quote-card {
    margin-bottom: 0;
}

.modal-content button.btn-close {
    position: absolute;
    right: 0;
    top: -40px;
    background-color: #ffffff;
    opacity: 1;
    border-radius: 0;
    color: #fff;
    padding: 0;
    width: 40px;
    height: 40px;
}

.quote-card .form-control, .quote-card .form-select {background-color:
    background-color: rgb(0 0 0 / 18%);}

.offcanvas.offcanvas-end button.btn-close {
    display: none;
}	
.navbar-expand-lg .offcanvas .offcanvas-body {
    justify-content: flex-end;
    padding-top: 0;
}
.col-lg-3.text-center.mob {
    display: none;
}
.footer-btn {
    display: none;
}
/* -------------------------------------------------------------------------
   Responsive tweaks
   ------------------------------------------------------------------------- */
   
@media (max-width:1600px) {  
   
.contact-cta h2 {
color: #fff;
font-size: 1.90rem;
margin-bottom: 1.5rem;
}
.col-lg-4.middle-box {
padding: 0 70px;
}
   
   
}  
   
   
@media (max-width:1440px) {  
.h2, h2 {
    font-size: 2.605rem;
}
.col-lg-4.middle-box {
padding:0 40px 0 70px;
}
}     
   
   
@media (max-width:1400px) {
.contact-cta::before {background-size: 80%;top: 105px;}	
.stat .counter-label {
    font-size: 0.90rem;
}
.journey h2 br {
    display: none;
}
.h2, h2 {
font-size: 2.4rem;
}
.col-lg-4.middle-box {
        padding:0 40px 0 40px;
    }
.stat .counter-label {
        font-size: 0.90rem;
        padding-right: 40px;
    }	
}  
  
@media (max-width:1024px) { 
 
a.navbar-brand {
    width: 20%;
}
a.navbar-brand img {
    width: 100%;
}
.offcanvas.offcanvas-end button.btn-close {
    display: none;
}
.dyn-offcanvas .navbar-nav .nav-link {
    font-size: 0.9rem;
}
.dyn-offcanvas .btn-brand {
    margin-left: 0 !important;
} 
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 98%;
}   
}   
   
@media (max-width: 991.98px) {
.thank-you-header {
    height: 150px;
}	
.footer-link {
    position: relative;
    top: -50px;
}	
footer.dyn-footer {
        margin-bottom: 43px;
    }	
.footer-btn {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        background: var(--glass);
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 0;
        padding: 0;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 25px 60px rgba(2, 10, 24, 0.35);
        margin-bottom: 0;
    }
.footer-btn a.btn.btn-brand {
        background: #274e68;
        border-radius: 0;
        width: 100%;
        border: 0;
        text-transform: uppercase;
        transform: translateY(0);
        color: #fff !important;
        border-left: 0;
        border-right: 0;
    }
.col-lg-3.text-center.mob {
    display: block;
}	
.contact-cta {
    padding-bottom: 0 !important;
}
.contact-cta img.contact-person {
    margin-top: 0;
}
.contact-cta .col-lg-3.text-center {
    padding: 0 !important;
    margin: 0 !important;
}
.stat .counter-label {
        font-size: 0.90rem;
        padding-right: 0;
    }	
.offcanvas.offcanvas-end button.btn-close {
    display: block;
}		
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 95%;
    }
.journey .col-lg-6.pl-50 {
    padding-left: calc(var(--bs-gutter-x) * .5);
}
.col-lg-4.middle-box {
        padding: 0 calc(var(--bs-gutter-x) * .5);
    }
.contact-cta::before {
     display:none
    }	
.industries-section .col {
    width: 50%;
}	
section {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
}	
 .navbar-expand-lg .offcanvas .offcanvas-body {
    justify-content: flex-end;
    padding-top: 50px;
}	

.offcanvas.offcanvas-end button.btn-close {
        position: absolute;
        right: 0;
        background: var(--primary);
        border-radius: 0;
        opacity: 1;
        padding: 0;
        width: 30px;
        height: 30px;
    }
.offcanvas.offcanvas-end button.btn-close svg {
    width: 30px;
}	
.offcanvas.offcanvas-end button.btn-close svg path {
    fill: #fff;
}

.dyn-offcanvas .navbar-nav .nav-link {
    border-bottom: 1px solid #318acb40;
}	
  .parallax {
    background-attachment: scroll !important;
  }

  .quote-card {
    margin-top: 2rem;
  }

  .stat {
    text-align: left;
  }
.device-info {height:auto} 
 
}

@media (max-width: 575.98px) {
/* .dyn-offcanvas .btn-brand {
        margin-left: 0 !important;
        color: #000;
        background: no-repeat;
        padding: 0;
        border: 0;
        box-shadow: none;
        font-weight: normal;
        font-size: 0.9rem;
    }	 */
a.navbar-brand {
        width: auto;
        text-align: left;
    }	
footer.dyn-footer {
    text-align: center;
}
.social-icons {

    justify-content: center;
    width: 100%;
}	
.section-heading br {display:none}	
.industries-section .col {
        width: 100%;
    }
.industry-card .industry-title {height:auto;}	
.quote-card {padding: 14px;}	
.hero-col {
    min-width: 0;
    margin-top: 40px;
}
.quote-card {
        margin-top: 0;
    }
.hero-device--lg {
    width: clamp(184px, 30vw, 420px);
}
.quote-card {
        margin-top: 0;
        margin-bottom: 0;
    }	
.section-heading {
        font-size: 1.9rem;
        margin-bottom: 30px !important;
    }

  .hero {
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-devices {
    justify-content: center;
  }
}

/* -------------------------------------------------------------------------
   Hero entrance animations (fade up / fade right)
   Pure CSS, run once on page load — the hero is always above the fold so no
   scroll-triggered JS is needed.
   ------------------------------------------------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.anim-fade-right {
  opacity: 0;
  animation: fadeRight 0.9s ease-out 0.2s forwards;
}

.anim-delay-1 {
  animation-delay: 0.15s;
}

.anim-delay-2 {
  animation-delay: 0.3s;
}

/* 100ms stagger utilities for the Products cards (delay-0 = no delay) */
.delay-0 {
  animation-delay: 0s;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.delay-6 {
  animation-delay: 0.6s;
}

.delay-7 {
  animation-delay: 0.7s;
}

/* -------------------------------------------------------------------------
   Accessibility
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .product-card,
  .social-icons a,
  .btn-brand,
  .industry-card,
  .industry-card img,
  a {
    transition: none;
  }

  .anim-fade-up,
  .anim-fade-right,
  .hero-device {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
