@charset "UTF-8";
/* =========================================
   Mega Menu Styles
   ========================================= */
/* Header needs to be relative for mega menus to position correctly */
#navbar {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  /* Position directly below the header */
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(8, 18, 28, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  /* Remove any bottom border */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
  /* Below header content but above page content */
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mega-menu-content {
  padding: 32px 120px;
}

.mega-menu-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.mega-menu-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-menu-title {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 100%;
  font-weight: 500;
  color: #92969A;
  margin: 0;
  padding-bottom: 12px;
}

.mega-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-menu-list li {
  margin: 0;
  padding: 0;
}

.mega-menu-list li::marker {
  display: none;
}

.mega-menu-list > li > a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  max-width: fit-content;
  color: #ffffff;
  text-decoration: none;
  padding-block: 10.5px;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}

.mega-menu-list > li > a:hover {
  color: #00d2ff;
  padding-left: 8px;
}

/* Submenu styles */
.mega-menu-list li.has-submenu {
  position: relative;
}

.mega-menu-list li.has-submenu > a {
  display: flex;
  align-items: center;
  max-width: fit-content;
  gap: 8px;
  cursor: pointer;
}

.mega-menu-list li.has-submenu > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
}

.mega-menu-list li.has-submenu.open > a::after {
  transform: rotate(180deg);
  color: #92969A;
}

.mega-submenu {
  list-style: none;
  margin: 8px 0 0 12px;
  padding: 0;
  display: none;
  flex-direction: column;
  border-left: 2px solid #2C343C;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.has-submenu.open > a {
  color: #92969A;
}

.mega-menu-list li.has-submenu.open .mega-submenu {
  display: flex;
  max-height: 500px;
}

.mega-submenu li {
  margin: 0;
  padding: 0;
  margin-left: 16px;
  padding-block: 12px;
}

.mega-submenu li a {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  max-width: max-content;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}

.mega-submenu li a:hover {
  color: #00d2ff;
  padding-left: 8px;
}

/* Responsive */
@media (max-width: 1680px) {
  .mega-menu-content {
    padding: 40px 60px;
  }
  .mega-menu-columns {
    gap: 40px;
  }
  .mega-menu-title {
    font-size: 16px;
  }
  .mega-menu-list > li > a {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  /* Hide desktop mega menu */
  .mega-menu {
    display: none !important;
  }
  /* Mobile mega menu - ACCORDION STRUCTURE for "What We Build" */
  #mobileMegaMenu {
    display: block;
    background: transparent;
    border-left: none;
    margin-left: 0;
    padding: 0;
    padding-left: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  #mobileMegaMenu.active {
    max-height: 5000px;
    overflow: visible;
    padding: 0;
    border-left: 1px solid #2c343c;
    padding-left: 16px;
  }
  /* Accordion section styles */
  .mobile-mega-menu-section {
    margin-bottom: 0;
  }
  .mobile-mega-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    padding: 8px 0px;
    transition: background 0.2s ease;
  }
  .mobile-mega-menu-header:hover {
    background: rgba(255, 255, 255, 0.02);
  }
  .mobile-mega-menu-header h4 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding: 8px 0px;
    margin: 0;
    transition: color 0.3s ease;
  }
  .mobile-mega-menu-section.open .mobile-mega-menu-header h4 {
    color: #92969A;
  }
  .mobile-mega-menu-toggle {
    font-size: 24px;
    color: #ffffff;
    transition: transform 0.3s ease;
    line-height: 1;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-mega-menu-toggle svg {
    display: block;
    transform: rotate(180deg);
  }
  .mobile-mega-menu-section.open .mobile-mega-menu-toggle {
    /* No rotation - SVG will change via JS */
  }
  /* Submenu chevron styles */
  .submenu-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  .submenu-chevron svg {
    display: block;
  }
  .has-submenu.open .submenu-chevron {
    transform: rotate(180deg);
  }
  .mobile-mega-menu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease, padding 1s ease;
    padding-left: 20px;
    margin-left: 20px;
    border-left: none;
  }
}
@media (max-width: 1280px) and (max-width: 600px) {
  .mobile-contact-content {
    padding-left: 0px;
  }
}
@media (max-width: 1280px) {
  .mobile-mega-menu-section.open .mobile-mega-menu-content {
    max-height: 2000px;
    overflow: visible;
    padding: 12px 0 12px 20px;
    border-left: 2px solid #2c343c;
  }
  .mobile-mega-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mobile-mega-menu-list li {
    margin: 0;
    padding: 0;
  }
  .mobile-mega-menu-list li:last-child {
    border-bottom: none;
  }
  .mobile-mega-menu-list > li > a {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  .mobile-mega-menu-list > li > a:hover {
    color: #00d2ff;
    padding-left: 8px;
  }
}
@media (max-width: 1280px) {
  /* Mobile submenu styles */
  .mobile-mega-menu-list li.has-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  .mobile-mega-menu-list li.has-submenu > a::after {
    content: "›";
    font-size: 20px;
    transition: transform 0.3s ease;
  }
  .mobile-mega-menu-list li.has-submenu.open > a::after {
    transform: rotate(90deg);
  }
  .mobile-mega-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .mobile-mega-menu-list li.has-submenu.open .mobile-mega-submenu {
    max-height: 1000px;
    padding: 8px 0;
  }
  .mobile-mega-submenu li {
    border-bottom: none;
    padding-block: 10px;
  }
  .mobile-mega-submenu li a {
    font-size: 12px;
    padding: 10px 0 10px 20px;
    color: rgba(255, 255, 255, 0.7);
  }
  .mobile-mega-submenu li a:hover {
    color: #00d2ff;
    padding-left: 28px;
  }
  /* Other mobile mega menus - FLAT LIST */
  .mobile-mega-menu:not(#mobileMegaMenu) {
    display: block;
    background: rgba(8, 18, 28, 0.95);
    border-left: 2px solid #2C343C;
    padding: 0;
    max-height: 0;
    overflow: hidden;
  }
  .mobile-mega-menu:not(#mobileMegaMenu).active {
    max-height: 5000px;
    overflow: visible;
  }
  .mobile-mega-menu:not(#mobileMegaMenu) .mobile-mega-menu-content {
    margin-left: 0;
    border-left: none;
    max-height: none;
    overflow: visible;
  }
  .mobile-industries-mega-menu .mobile-mega-menu-list li a {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (min-width: 1281px) {
  .mobile-mega-menu {
    display: none;
  }
}
/* =========================================
   Industries Mega Menu Styles
   ========================================= */
.industries-mega-menu {
  /* Inherits base .mega-menu styles */
}

.industries-mega-menu-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.industries-mega-menu-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industries-mega-title {
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  padding-block: 5px;
  line-height: 1.2;
}

.industries-mega-description {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #92969A;
  margin: 0;
  line-height: 1.6;
  max-width: 215px;
}

.industries-view-all {
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding-block: 16px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 195px;
  margin-top: 12px;
  transition: gap 0.2s ease;
  border-bottom: 1px solid;
  border-image-source: linear-gradient(90deg, #1A76DB 0.78%, #9AC1EC 99.22%);
  border-image-slice: 1;
}

.industries-view-all .arrow-icon i {
  font-size: 16px;
}

.industries-view-all:hover {
  gap: 12px;
}

.industries-mega-menu-right {
  display: flex;
  gap: 40px;
  flex: 1;
}

.industries-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.industries-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.industries-list li {
  margin: 0;
  padding: 0;
  padding-block: 10.5px;
  color: #ffffff;
}

.industries-list li a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  max-width: fit-content;
  color: #ffffff;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.industries-list li a:hover {
  color: #00d2ff;
  padding-left: 8px;
}

/* Responsive Industries Mega Menu */
@media (max-width: 1680px) {
  .industries-mega-menu-grid {
    grid-template-columns: 350px 1fr;
    gap: 60px;
  }
  .industries-mega-title {
    font-size: 28px;
  }
  .industries-mega-description {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .industries-mega-menu {
    display: none;
  }
  /* Mobile Industries Mega Menu - FLAT LIST */
  #mobileIndustriesMegaMenu {
    display: block;
    background: rgba(8, 18, 28, 0.95);
    border-left: 2px solid #2C343C;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  /* Mobile Industries Mega Menu - Active state */
  #mobileIndustriesMegaMenu.active {
    max-height: 5000px;
    overflow: visible;
    padding: 12px 0;
  }
  /* Mobile Industries Content */
  #mobileIndustriesMegaMenu .mobile-mega-menu-content {
    padding: 0 20px;
  }
}
@media (min-width: 1281px) {
  .mobile-industries-mega-menu {
    display: none !important;
  }
}
/* =========================================
   Use Cases Mega Menu Styles
   ========================================= */
.use-cases-mega-menu-grid {
  display: grid;
  grid-template-columns: 384px 1fr;
  gap: 50px;
  align-items: start;
}

.use-cases-mega-menu-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.use-cases-section-link {
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease;
}

.use-cases-section-link:hover {
  transform: translateX(8px);
}

.use-cases-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.use-cases-section-title {
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.use-cases-section-desc {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #92969A;
  margin: 0;
  line-height: 150%;
}

.use-cases-mega-menu-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.use-case-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.5s ease, background 0.5s ease;
  display: flex;
  flex-direction: column;
}

.use-case-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.use-case-card-image {
  width: 100%;
  height: 362px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 1440px) {
  .use-case-card-image {
    height: 284px;
  }
}

.use-case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-case-card:hover .use-case-card-image img {
  transform: scale(1.05);
}

.use-case-card-content {
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.9019607843);
  margin-top: -75px;
  opacity: 0.9;
}
@media (max-width: 1440px) {
  .use-case-card-content {
    padding: 16px 16px;
  }
}

.use-case-card-title {
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.use-case-card-description {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Use Cases Mega Menu */
@media (max-width: 1680px) {
  .use-cases-mega-menu-grid {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }
}
@media (max-width: 1280px) {
  .use-cases-mega-menu {
    display: none;
  }
  /* Mobile Use Cases Mega Menu - FLAT LIST */
  #mobileUseCasesMegaMenu {
    display: block;
    background: rgba(8, 18, 28, 0.95);
    border-left: 2px solid #2C343C;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  #mobileUseCasesMegaMenu.active {
    max-height: 5000px;
    overflow: visible;
  }
  #mobileUseCasesMegaMenu .mobile-mega-menu-content {
    padding: 0 20px;
  }
  .mobile-use-cases-mega-menu .mobile-mega-menu-list li a {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (min-width: 1281px) {
  .mobile-use-cases-mega-menu {
    display: none !important;
  }
}
/* =========================================
   Insights Mega Menu Styles
   ========================================= */
.insights-mega-menu-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.insights-mega-menu-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insights-mega-title {
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  padding-block: 5px;
  line-height: 1.2;
}

.insights-mega-description {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #92969A;
  margin: 0;
  line-height: 150%;
}

.insights-mega-menu-right {
  display: flex;
  gap: 40px;
  flex: 1;
}

.insights-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.insights-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.insights-list li {
  margin: 0;
  padding: 0;
}

.insights-list li a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding-block: 10.5px;
  max-width: fit-content;
  color: #ffffff;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.insights-list li a:hover {
  color: #00d2ff;
  padding-left: 8px;
}

/* Responsive Insights Mega Menu */
@media (max-width: 1680px) {
  .insights-mega-menu-grid {
    grid-template-columns: 350px 1fr;
    gap: 60px;
  }
  .insights-mega-title {
    font-size: 28px;
  }
  .insights-mega-description {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .insights-mega-menu {
    display: none;
  }
  /* Mobile Insights Mega Menu - FLAT LIST */
  #mobileInsightsMegaMenu {
    display: block;
    background: rgba(8, 18, 28, 0.95);
    border-left: 2px solid #2c343c;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  #mobileInsightsMegaMenu.active {
    max-height: 5000px;
    overflow: visible;
  }
  #mobileInsightsMegaMenu .mobile-mega-menu-content {
    padding: 0 20px;
  }
  .mobile-insights-mega-menu .mobile-mega-menu-list li a {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (min-width: 1281px) {
  .mobile-insights-mega-menu {
    display: none !important;
  }
}
/* =========================================
   Company Mega Menu Styles (3-Column Layout)
   Left: Title + Description | Middle: Menu Items | Right: Map
   ========================================= */
#companyMegaMenu .company-mega-menu-grid {
  display: grid;
  grid-template-columns: 403px 200px 1fr;
  gap: 60px;
  align-items: start;
}

#companyMegaMenu .company-mega-menu-middle {
  display: flex;
  flex-direction: column;
}

/* =========================================
   Contact Mega Menu Styles (3-Column Layout)
   Left: Title + Menu Items | Middle: Newsletter + Social | Right: Map
   ========================================= */
#contactMegaMenu .company-mega-menu-grid {
  display: grid;
  grid-template-columns: 400px 288px 1fr;
  gap: 80px;
  align-items: start;
}

#contactMegaMenu .company-mega-menu-middle {
  display: flex;
  flex-direction: column;
}

.company-mega-menu-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-mega-title {
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  padding-block: 5px;
  margin: 0;
  line-height: 1.2;
}

.company-mega-description {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #92969A;
  margin: 0;
  line-height: 100%;
  line-height: 1.6;
}

.company-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company-menu-list li {
  margin: 0;
  padding: 0;
}

.company-menu-list a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  max-width: fit-content;
  padding-block: 10.5px;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}

.company-menu-list a:hover {
  color: #00d2ff;
  padding-left: 8px;
}

.company-mega-menu-middle {
  display: flex;
  flex-direction: column;
}

.company-subscribe-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.company-subscribe-title,
.company-social-title {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0px 0;
  background: linear-gradient(101deg, #fff 60.32%, rgba(255, 255, 255, 0.7) 129.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-subscribe-form {
  padding-bottom: 28px;
  position: relative;
  border-bottom: 1px solid #2C343C;
}

.company-subscribe-form input {
  width: 100%;
  background: linear-gradient(95deg, rgba(1, 203, 207, 0.1) -3.18%, rgba(0, 130, 235, 0.1) 98.57%);
  border-radius: 99999px;
  border: 1px solid #00d2ff;
  padding: 16px 20px;
  color: #fff;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  outline: none;
  opacity: 0.7;
}

.company-subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.company-subscribe-form input:focus {
  border-color: #00d2ff;
  opacity: 1;
}

.company-subscribe-form .submit-button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #00d2ff 0%, #017fbe 100%);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 60px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.company-subscribe-form .submit-button:hover {
  opacity: 0.9;
}

.company-subscribe-form .submit-button img {
  width: 14px;
  height: 14px;
}

.company-social-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.company-social-title {
  margin-bottom: 16px;
}

.company-social-links {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 0;
}

.company-social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-social-links a:hover {
  color: #00d2ff;
}

.company-social-links img {
  width: 20px;
  height: 20px;
}

.company-mega-menu-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-map-image {
  width: 100%;
  max-width: 600px;
}

.company-map-image img {
  width: 100%;
  height: auto;
  display: block;
}

.company-subscribe-form .input-wrapper .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 14px;
  font-weight: normal;
  margin-top: 20px;
  display: block;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0px;
  padding: 0px;
  color: #ffffff;
  font-size: 12px;
  margin-top: 10px;
  border: none;
}

/* Make input wrapper the positioning parent */
.company-subscribe-form .input-wrapper {
  position: relative;
}

/* Position button relative to input only */
.company-subscribe-form .submit-button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

/* Stop error message from pushing layout */
.company-subscribe-form .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -36px;
  left: 0;
}

/* Responsive Company Mega Menu */
@media (max-width: 1680px) {
  .company-mega-menu-grid {
    grid-template-columns: 280px 180px 1fr;
    gap: 40px;
  }
  .company-mega-title {
    font-size: 28px;
  }
  .company-mega-description {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .company-mega-menu {
    display: none;
  }
  /* Mobile Company Mega Menu - FLAT LIST */
  #mobileCompanyMegaMenu {
    display: block;
    background: rgba(8, 18, 28, 0.95);
    border-left: 2px solid rgba(0, 210, 255, 0.3);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  #mobileCompanyMegaMenu.active {
    max-height: 5000px;
    overflow: visible;
  }
  #mobileCompanyMegaMenu .mobile-mega-menu-content {
    padding: 0 20px;
  }
  /* Mobile Contact Mega Menu - Newsletter & Social */
  #mobileContactMegaMenu {
    display: block;
    background: transparent;
    border-left: 2px solid rgba(0, 210, 255, 0.4);
    padding: 0;
    max-height: 0;
    overflow: hidden;
  }
  #mobileContactMegaMenu.active {
    max-height: 5000px;
    overflow: visible;
    border-left: 1px solid #2c343c;
    padding-left: 16px;
    padding-bottom: 80px;
  }
  .mobile-contact-content {
    margin-left: 0 !important;
    border-left: none !important;
  }
  .mobile-contact-section {
    margin-bottom: 48px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .mobile-contact-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .mobile-contact-section:first-child::after {
    /* content: ''; */
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(0, 210, 255, 0.2);
    margin-top: 48px;
  }
  .mobile-contact-title {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px 0;
  }
  /* Mobile Newsletter Form */
  .mobile-subscribe-form {
    position: relative;
    width: 100%;
    max-width: 100%;
  }
  .mobile-subscribe-form input {
    width: 100%;
    background: transparent;
    border-radius: 99999px;
    border: 1px solid rgba(0, 210, 255, 0.6);
    padding: 20px 70px 20px 24px;
    color: #fff;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
  }
  .mobile-subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  .mobile-subscribe-form input:focus {
    border-color: #00d2ff;
  }
  .mobile-subscribe-form .submit-button {
    position: absolute;
    right: 8px;
    top: 33%;
    transform: translateY(-50%);
    background: #00d2ff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .mobile-subscribe-form .submit-button:hover {
    background: #00b8e6;
  }
  .mobile-subscribe-form .submit-button img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
  }
  /* Mobile Social Links - Force Horizontal Layout */
  .mobile-social-section {
    border-bottom: none !important;
  }
  .mobile-social-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 32px !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  .mobile-social-links > * {
    display: flex !important;
    flex-direction: row !important;
    gap: 32px !important;
  }
  .mobile-social-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 28px !important;
    transition: color 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
  }
  .mobile-social-links a:hover {
    color: #00d2ff !important;
  }
  .mobile-social-links a i {
    font-size: 26px !important;
  }
  .mobile-social-links img {
    width: 28px !important;
    height: 28px !important;
    filter: brightness(0) invert(1);
  }
  .mobile-social-links a:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(180deg);
  }
  .mobile-company-mega-menu .mobile-mega-menu-list li a {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (min-width: 1281px) {
  .mobile-company-mega-menu {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .mobile-subscribe-form input {
    width: 100%;
    background: transparent;
    border-radius: 99999px;
    border: 1px solid rgba(0, 210, 255, 0.6);
    padding: 12px 20px 12px 20px;
    color: #fff;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
  }
  .mobile-subscribe-form .submit-button {
    position: absolute;
    right: 8px;
    top: 31%;
    transform: translateY(-50%);
    background: #00d2ff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .mobile-subscribe-form .submit-button img {
    width: 8px;
    height: 8px;
    filter: brightness(0) invert(1);
  }
  .subscribe-form {
    padding-bottom: 24px;
    max-width: 311px;
  }
  .mobile-contact-section {
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .mobile-social-links {
    display: flex !important;
    flex-direction: row !important;
    /* gap: 32px !important; */
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 32px !important;
    margin-top: 0px !important;
  }
}
@media (max-width: 767px) {
  .industries-view-all {
    margin-top: 0px;
  }
}

/*# sourceMappingURL=mega-menu.css.map */
