/* =========================================================
   VEDANT TECHNOLOGIES
   Main stylesheet
   Organized section-by-section for easy editing
   ========================================================= */

/* =========================================================
   01. GLOBAL / VARIABLES
   ========================================================= */

* {
  box-sizing: border-box;
}

:root {
  --blue: #2874d2;
  --blue-hover: #4d9cff;
  --navy: #02245b;
  --deep: #001734;
  --ink: #10233e;
  --light: #f5f7fa;
  --muted: #667085;
  --border: #dfe5ee;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}



/* =========================================================
   02. HEADER / NAVIGATION
   ========================================================= */

.site-header {
  height: 90px;
  background: #fff;
  border-top: 10px solid #002b4e;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 20, 50, .08);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 16px;
  color: #142642;
}

.nav-link,
.dropdown-toggle {
  height: 68px;
  display: flex;
  align-items: center;
  border: 0;
  background: none;
  cursor: pointer;
}

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

.nav-dropdown {
  position: relative;
  height: 68px;
}

.dropdown-toggle {
  gap: 5px;
}

.chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.nav-dropdown.open .chevron {
  transform: rotate(225deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: 62px;
  left: -18px;
  min-width: 215px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 15px 35px rgba(0, 30, 70, .14);
  padding: 8px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .22s;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown-menu a {
  display: block;
  padding: 11px 13px;
  font-size: 12px;
  border-radius: 4px;
  transition: background .2s ease, color .2s ease;
}

.dropdown-menu a:hover {
  background: #eef5ff;
  color: var(--blue);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 42px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
}


/* =========================================================
   SOLUTIONS DROPDOWN — OLD SITE MENU STRUCTURE
   ========================================================= */
.solutions-menu {
  min-width: 360px;
  max-width: 410px;
  padding: 10px;
}
.solution-menu-group {
  padding: 4px 0 8px;
  border-bottom: 1px solid #edf1f6;
}
.solution-menu-group:last-child { border-bottom: 0; padding-bottom: 4px; }
.solution-menu-title {
  font-weight: 700 !important;
  color: #122946 !important;
}
.solution-menu-child {
  padding: 7px 13px 7px 25px !important;
  color: #687586 !important;
  font-size: 11px !important;
}
.solution-menu-child:hover { color: var(--blue) !important; background: #f4f8fd !important; }
.solution-menu-simple .solution-menu-title { margin: 2px 0; }
@media (max-width: 900px) {
  .solutions-menu { min-width: 100%; max-width: none; box-shadow: none; border: 0; border-radius: 0; }
  .solution-menu-child { padding-left: 28px !important; }
}

/* =========================================================
   03. HERO
   ========================================================= */

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: opacity .65s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 13, 29, .94) 0%,
    rgba(0, 20, 40, .83) 28%,
    rgba(0, 20, 40, .32) 62%,
    rgba(0, 20, 40, .10) 100%
  );
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-bottom: 15px;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.06;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -1.6px;
}

.hero h1 span {
  color: #0276cc;
}

.hero-text {
  max-width: 480px;
  font-size: 14px;
  line-height: 1.7;
  color: #dbe4f0;
  margin: 0 0 25px;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 45px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  transition: .25s;
}

.btn-primary {
  background: #0092ff;
  color: #fff;
  box-shadow: 0 8px 22px rgba(23, 111, 229, .22);
}

.btn-primary:hover {
  background: #016ebe;

}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .65);
  color: #fff;
}

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

.hero-controls {
  position: absolute;
  bottom: 23px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #8492a6;
  cursor: pointer;
}

.dot.active {
  width: 34px;
  border-radius: 8px;
  background: #2e8bff;
}

.hero-arrow {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 24px;
  opacity: .7;
  cursor: pointer;
  line-height: 1;
}

.hero-arrow:hover {
  opacity: 1;
}

/* =========================================================
   04. ABOUT / EMPOWERING CUSTOMERS
   ========================================================= */

.about {
  padding: 60px 0 40px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 447px;
}

.about-img {
  width: 90%;
  height: 90%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-one {
  background-image: url("../img/about_01.jpg");
}

.img-two {
  background-image: url("../img/about_02.jpg");
}

.about-copy h2 {
  font-size: 35px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  margin: 0 0 22px;
}

.about-copy .muted {
  font-size: 14px;
  line-height: 1.6;
  color: #697386;
  margin: 0 0 25px;
}

/* Capability grid */
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 14px;
  background: #f5f8fc;
  border: 1px solid #e7edf5;
  border-radius: 4px;
  color: #5f6d80;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.check-list li:hover {
  background: #f0f6ff;
  border-color: #cfe0f5;
  transform: translateY(-2px);
}

.check-list li::before {
  content: "✓";
  width: 23px;
  height: 23px;
  min-width: 23px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f2ff;
  color: #2879d5;
  font-size: 13px;
  font-weight: 800;
}

/* Contact details inside About */
.contact-mini {
  display: flex;
  gap: 55px;
  margin-top: 32px;
  font-size: 16px;
  color: #017dd9;
}

.contact-mini > div {
  display: flex;
  gap: 15px;
  align-items: center;
}

.mini-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  background: #007fdd;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.contact-mini small {
  display: block;
  color: #08336f;
  font-size: 16px;
  font-weight: 700;
  margin-top: 6px;
  white-space: nowrap;
}

/* Legacy experience block is no longer used */
.about-flex,
.experience {
  display: none !important;
}

/* =========================================================
   05. TECHNOLOGY BAND
   ========================================================= */

.tech-band {
  height: 250px;
  background-color: #001c35;
  background-image: url("../img/automation_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 250px;
  position: relative;
  overflow: hidden;
}

.tech-content {
  height: 100%;
  display: flex;
  align-items: center;
}

/* =========================================================
   06. SOLUTIONS
   ========================================================= */

.solutions {
  background: #f5f8fc;
  padding: 62px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}

.solutions-intro {
  min-width: 0;
}

.solutions-intro h2 {
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 16px;
}

.solutions .section-kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #2781e8;
  text-transform: uppercase;
}

.solutions-intro > p:not(.section-kicker) {
  font-size: 14px;
  line-height: 1.65;
  color: #7b8594;
}

.text-link {
  font-size: 14px;
  color: #0795ff;
  font-weight: 700;
  display: inline-flex;
  gap: 9px;
  margin-top: 10px;
  transition: color .2s ease, transform .2s ease;
}

.text-link:hover {
  color: #005fc9;
  transform: translateX(3px);
}

.text-link span {
  font-size: 14px;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.solution-card {
  background: #fff;
  border: 1px solid #e2e8f1;
  min-height: 102px;
  padding: 14px 13px;
  display: grid;
  grid-template-columns: 23px 1fr 10px;
  gap: 8px;
  position: relative;
  box-shadow: 0 3px 12px rgba(20, 45, 80, .03);
  transition: .28s;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: #77aef1;
  box-shadow: 0 14px 28px rgba(20, 70, 130, .12);
}

.card-icon {
  color: #2b83ed;
  font-size: 22px;
}

.solution-card h3 {
  font-size: 18px;
  margin: 1px 0 7px;
}

.solution-card p {
  font-size: 12px;
  line-height: 1.45;
  color: #7a8491;
  margin: 0;
}

.solution-card b {
  align-self: end;
  color: #2682ec;
  font-size: 16px;
}

/* =========================================================
   07. INDUSTRIES
   ========================================================= */

.industries {
  background: #052c4b;
  padding: 60px 0 50px;
}

.industries-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 35px;
  align-items: center;
  min-width: 0;
}

.industries-intro {
  min-width: 0;
}

.section-kicker,
.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #0276cc;
  margin: 0 0 13px;
}


.industries-intro h2 {
  font-size: 26px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
}

.industries-intro .section-kicker {
  color: #4aa0ff;
}

.industry-wrap {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.industry-card {
  width: 100%;
  height: 235px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #101722;
  display: block;
  isolation: isolate;
  min-width: 0;
}

.industry-card img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  filter: none !important;
  transition: transform .55s ease;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
  transition: .4s;
}

.industry-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 7px;
  text-align: center;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  transition: .35s;
}

.industry-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 17px;
  color: #fff;
  z-index: 3;
  opacity: 0;
  transform: translateY(28px);
  transition: .4s;
}

.industry-hover h3,
.industry-hover h4 {
  font-size: 19px;
  margin: 0 0 8px;
}

.industry-hover p {
  font-size: 9px;
  line-height: 1.5;
  color: #e1e7ef;
  margin: 0 0 13px;
}

.industry-hover span {
  font-size: 9px;
  font-weight: 700;
  color: #6eb1ff;
}

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

.industry-card:hover .industry-overlay {
  background: rgba(0, 15, 35, .72);
}

.industry-card:hover .industry-title {
  opacity: 0;
  transform: translateY(15px);
}

.industry-card:hover .industry-hover {
  opacity: 1;
  transform: none;
}

.industry-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 17px;
}

.industry-dots i {
  width: 18px;
  height: 3px;
  border-radius: 4px;
  background: #cbd2dc;
}

.industry-dots i.active {
  background: #2781e8;
  width: 30px;
}

/* =========================================================
   08. BRAND PARTNERS
   ========================================================= */

.partners {
  padding: 36px 0 34px;
  background: #fff;
  border-top: 1px solid #d8dee7;
  overflow: hidden;
  clear: both;
}

.container-rc {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  margin: 0 auto;
}

.partners-title {
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 24px;
}

.partners .row {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}

/* RCBrand layout fix: prevent its floated wrapper from pushing the CTA sideways */
.partners .rc-rcbrand-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  clear: both;
}

.partners .rc-rcbrand-inner {
  position: relative;
  float: none;
  width: 100%;
  height: 122px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7dce3;
  border-radius: 5px;
  box-sizing: border-box;
}

.partners .rc-rcbrand-ul {
  position: relative;
  width: 99999px;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  overflow: hidden;
}

.partners .rc-rcbrand-item {
  float: left;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: default;
  position: relative;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners .rc-rcbrand-item img {
  display: block;
  width: auto;
  max-width: 72%;
  max-height: 76px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.partners .rc-rcbrand-nav-left,
.partners .rc-rcbrand-nav-right {
  display: none;
}

/* =========================================================
   09. READY TO AUTOMATE / CTA
   ========================================================= */

.cta {
  position: relative;
  display: block;
  width: 100%;
  min-height: 170px;
  height: 170px;
  padding: 42px 0;
  box-sizing: border-box;
  overflow: hidden;
  clear: both;
  color: #fff;
  background-color: #001c35;
  background-image: url("../img/cta_automation.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 22, 50, .62), rgba(0, 22, 50, .12));
  pointer-events: none;
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 45px;
  align-items: center;
}

.cta h2 {
  font-size: 29px;
  line-height: 1.15;
  margin: 0;
  color: #fff;
}

.cta p {
  font-size: 12px;
  line-height: 1.6;
  color: #dbe7f5;
  max-width: 320px;
  margin: 0;
}

.cta .btn {
  position: relative;
  z-index: 3;
}

/* =========================================================
   10. FOOTER
   ========================================================= */

.footer {
  background: #011627;
  color: #e5edf7;
  padding: 40px 0 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.footer-grid > div:last-child {
  justify-self: end;
  text-align: left;
}

.footer-grid h4 {
  font-size: 12px;
  margin: 5px 0 16px;
  color: #fff;
  font-weight: 700;
}

.footer-grid > div a,
.footer-grid > div p {
  font-size: 14px;
  line-height: 1.65;
  color: #aebbc9;
}

.footer-grid > div a {
  display: block;
  margin: 0 0 7px;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-grid > div a:hover {
  color: var(--blue-hover);

}

.footer-contact p {
  margin: 0 0 7px;
}

/* Social media buttons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
}

.footer-socials a {
  width: 35px !important;
  height: 35px;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #2879d5;
  color: #fff !important;
  font-size: 15px !important;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.footer-socials a:hover {
  background: #4d9cff;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 7px 16px rgba(40, 121, 213, .30);
}

.footer-bottom {
  border-top: 1px solid #23364d;
  margin-top: 28px;
  padding-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #748398;
}

.footer-bottom span {
  white-space: nowrap;
}

.footer-bottom span:last-child {
  transition: color .2s ease;
}

.footer-bottom span:last-child:hover {
  color: var(--blue-hover);
}

/* =========================================================
   11. REVEAL / ANIMATION UTILITIES
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.solution-card:nth-child(2),
.industry-card:nth-child(2) {
  transition-delay: .06s;
}

.solution-card:nth-child(3),
.industry-card:nth-child(3) {
  transition-delay: .12s;
}

.solution-card:nth-child(4),
.industry-card:nth-child(4) {
  transition-delay: .18s;
}

.solution-card:nth-child(5),
.industry-card:nth-child(5) {
  transition-delay: .24s;
}

/* =========================================================
   12. RESPONSIVE - TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1000px) {

  .container {
    width: min(calc(100% - 34px), 760px);
  }

  .main-nav {
    gap: 15px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .about-images {
    height: 380px;
  }

  .about-copy h2 {
    font-size: 36px;
  }

  /* Solutions */
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solutions-intro {
    max-width: 520px;
  }

  /* Industries */
  .industries {
    padding: 52px 0 45px;
  }

  .industries-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .industries-intro {
    width: 100%;
  }

  .industries-intro h2 {
    font-size: 30px;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .industry-card,
  .industry-card:nth-child(n) {
    display: block !important;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1.05;
  }

  .industry-title {
    font-size: 12px;
    padding: 13px 8px;
  }

  .industry-hover {
    padding: 20px 16px;
  }

  /* CTA */
  .cta-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner .btn {
    justify-self: end;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 45px;
  }

  .footer-grid > div:last-child {
    justify-self: start;
  }
}

/* =========================================================
   13. RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 991px) {

  .container {
    width: calc(100% - 30px);
  }

  /* Header */
  .site-header {
    height: 68px;
    border-top-width: 7px;
  }

  .header-inner {
    height: 61px;
  }

  .navbar-brand img {
    height: 70px;
    width: auto;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 7px;
    margin-left: auto;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }

  .main-nav {
    position: absolute;
    top: 61px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 15px 16px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .12);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link,
  .dropdown-toggle {
    height: 44px;
    width: 100%;
    justify-content: space-between;
    padding: 0 8px;
  }

  .nav-dropdown {
    height: auto;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 9px;
  }

  /* Hero */
  .hero {
    height: 600px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 13px;
    max-width: 390px;
  }

  .hero-content {
    justify-content: center;
    padding-top: 40px;
  }

  .hero-controls {
    bottom: 18px;
  }

  /* About */
  .about {
    padding: 45px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-images {
    height: 330px;
    gap: 10px;
  }

  .about-copy h2 {
    font-size: 32px;
    letter-spacing: -.6px;
  }

  .about-copy .muted {
    font-size: 14px;
  }

  .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-mini {
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
  }

  /* Technology band */
  .tech-band {
    height: 130px;
    background-size: auto 130px;
  }

  .tech-content {
    gap: 10px;
    flex-wrap: wrap;
    font-size: 10px;
  }

  /* Solutions */
  .solution-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Industries */
  .industries {
    padding: 44px 0 40px;
  }

  .industries-layout {
    gap: 24px;
  }

  .industries-intro h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .industry-card,
  .industry-card:nth-child(n) {
    height: auto;
    min-height: 0;
    aspect-ratio: .86 / 1;
  }

  .industry-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  /* Touch-friendly industry cards */
  .industry-title {
    opacity: 1;
    transform: none;
    font-size: 11px;
    line-height: 1.25;
    padding: 11px 6px;
  }

  .industry-hover {
    display: none;
  }

  .industry-card:hover img {
    transform: none;
  }

  .industry-card:hover .industry-overlay {
    background: transparent;
  }

  .industry-card:hover .industry-title {
    opacity: 1;
    transform: none;
  }

  /* Partners */
  .partner-row {
    gap: 10px;
  }

  /* CTA */
  .cta {
    min-height: auto;
    padding: 45px 0;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cta-inner .btn {
    justify-self: start;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta p {
    max-width: 420px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid > div:last-child {
    justify-self: start;
  }

  .footer-socials {
    margin-top: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom span {
    white-space: normal;
  }
}

/* =========================================================
   14. RESPONSIVE - SMALL PHONES
   ========================================================= */

@media (max-width: 450px) {

  .container {
    width: calc(100% - 28px);
  }

  .hero {
    height: 570px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    min-height: 43px;
  }

  .about-images {
    height: 280px;
  }

  .about-copy h2 {
    font-size: 29px;
  }

  .check-list {
    grid-template-columns: 1fr;
    font-size: 13px;
    gap: 10px;
  }

  .contact-mini small {
    font-size: 14px;
  }

  .solution-cards {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .industry-card,
  .industry-card:nth-child(n) {
    display: block !important;
    aspect-ratio: 1.55 / 1;
  }

  .industry-title {
    font-size: 12px;
    padding: 12px 8px;
  }

  .industry-hover {
    padding: 15px;
  }

  .industry-hover h3,
  .industry-hover h4 {
    font-size: 16px;
  }

  .partner-logo {
    width: 90px;
    height: 60px;
  }

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

/* =========================================================
   15. VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {
  .industry-grid {
    gap: 10px;
  }

  .industry-card,
  .industry-card:nth-child(n) {
    aspect-ratio: 1.4 / 1;
  }
}


/* =========================================================
   16. BRAND PARTNERS + CTA FINAL RESPONSIVE FIXES
   ========================================================= */

@media (max-width: 700px) {
  .container-rc {
    width: calc(100% - 30px);
  }

  .partners .rc-rcbrand-inner {
    height: 100px;
  }

  .partners .rc-rcbrand-item img {
    max-height: 60px;
  }

  .cta {
    height: auto;
    min-height: 260px;
  }
}

@media (max-width: 450px) {
  .container-rc {
    width: calc(100% - 28px);
  }

  .partners .rc-rcbrand-inner {
    height: 90px;
  }
}

/* HERO CAROUSEL — button safety */
.hero-arrow,
.hero-dots .dot {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}


/* =========================================================
   FINAL HERO FIX
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  background: #001b32;
}

.hero-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity .65s ease, visibility .65s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-shade,
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-shade {
  position: absolute;
}

.hero-controls {
  z-index: 5;
}

@media (max-width: 991px) {
  .hero { height: 520px; }
}

@media (max-width: 575px) {
  .hero { height: 570px; }
}


/* =========================================================
   HERO CAROUSEL — IMAGE VISIBILITY / FINAL
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  background: #001b32;
}

.hero-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transition: opacity .65s ease, visibility .65s ease;
}

.hero-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 2 !important;
}

.hero-slide .hero-shade {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 13, 29, .72) 0%,
    rgba(0, 20, 40, .58) 30%,
    rgba(0, 20, 40, .18) 65%,
    rgba(0, 20, 40, .05) 100%
  );
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
}

.hero-controls {
  z-index: 10;
}

@media (max-width: 991px) {
  .hero { height: 520px; }
}

@media (max-width: 575px) {
  .hero { height: 570px; }
}


/* =========================================================
   FINAL MOBILE HEADER / HAMBURGER FIX
   ========================================================= */

@media screen and (max-width: 1000px) {

  .site-header {
    position: sticky;
    top: 0;
    z-index: 10000;
  }

  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100%;
  }

  .navbar-brand {
    display: flex !important;
    align-items: center !important;
    margin-right: auto !important;
  }

  .navbar-brand img {
    display: block !important;
    width: auto;
    height: 70px;
  }

  .menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;

    position: relative;
    z-index: 10001;

    width: 42px !important;
    height: 42px !important;
    min-width: 42px;

    padding: 7px !important;
    margin: 0 0 0 auto !important;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    border: 0 !important;
    background: transparent !important;
    cursor: pointer;
    flex-shrink: 0;
  }

  .menu-toggle span {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 24px !important;
    height: 2px !important;
    min-height: 2px;

    margin: 0 !important;

    background: #02245b !important;
    border-radius: 2px;
  }

  .main-nav {
    position: absolute !important;
    top: 61px;
    left: 0;
    right: 0;

    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;

    width: 100%;
    padding: 8px 15px 16px !important;
    margin: 0;

    background: #fff !important;
    box-shadow: 0 15px 25px rgba(0,0,0,.12);

    z-index: 9999;
  }

  .main-nav.open {
    display: flex !important;
  }

  .main-nav .nav-link,
  .main-nav .dropdown-toggle {
    width: 100%;
    height: 44px;
  }
}


/* =========================================================
   OFFLINE CONTACT ICONS
   ========================================================= */
.mini-icon .contact-symbol {
  display: block;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

/* =========================================================
   NATIVE CLIENT CAROUSEL
   Replaces the jQuery RCBrand dependency so it works offline.
   ========================================================= */
.partners .row {
  overflow: hidden;
}

#rcbrand2 {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  width: 100% !important;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  overflow: visible !important;
  transform: translate3d(0,0,0);
  transition: transform .5s ease;
}

#rcbrand2 > li {
  flex: 0 0 20% !important;
  width: 20% !important;
  max-width: 20% !important;
  height: 120px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  float: none !important;
}

#rcbrand2 > li::before {
  content: none !important;
}

#rcbrand2 > li img {
  display: block;
  width: auto;
  max-width: 72%;
  max-height: 76px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

@media (max-width: 900px) {
  #rcbrand2 > li {
    flex-basis: 25% !important;
    width: 25% !important;
    max-width: 25% !important;
  }
}

@media (max-width: 640px) {
  #rcbrand2 > li {
    flex-basis: 33.333333% !important;
    width: 33.333333% !important;
    max-width: 33.333333% !important;
  }

  .partners .rc-rcbrand-inner {
    height: 100px;
  }

  #rcbrand2 > li img {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  #rcbrand2 > li {
    flex-basis: 50% !important;
    width: 50% !important;
    max-width: 50% !important;
  }

  .partners .rc-rcbrand-inner {
    height: 90px;
  }
}


/* =========================================================
   OFFLINE CONTACT ICONS — Font Awesome style, no CDN needed
   ========================================================= */
.mini-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-icon .contact-svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
  color: #fff;
}

.mini-icon .contact-svg path {
  fill: currentColor;
}
