
/*
Theme Global Styles
Font: Open Sans (body), Poppins (headings)
Responsive, readable, and includes dark mode support.
*/
/* Adjusts height of pages Start */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: block;
  /*flex-direction: column;*/
  /*padding-left: 1rem;
  padding-right: 1rem;*/
}
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* this sets the full viewport height */
}
.content-area { 
  flex: 1 0 auto; 
}
.site-footer { 
  flex-shrink: 0; 
}
main {
  flex: 1 0 auto; /* grow if needed, but don’t force it */
  padding: 1.5rem 0 0 0; /* top/bottom padding */
}
footer {
  flex-shrink: 0;
}
/* Adjusts height of pages End */



:root {
    /* page margins */
    @media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
}

  /* Font Families */
  --font-body: 'Open Sans', sans-serif;
  --font-heading: 'Poppins', sans-serif;

  /* Font Sizes */
  --font-size-base: 20px;
  --line-height-base: 30px;

  /* Heading Sizes */
  --h1-size: 45px;
  --h1-line-height: 48px;
  --h2-size: 42px;
  --h2-line-height: 44px;
  --h3-size: 35px;
  --h3-line-height: 36px;
  --h4-size: 26px;
  --h4-line-height: 28px;
  --h5-size: 21px;
  --h5-line-height: 24px;
  --h6-size: 20px;
  --h6-line-height: 23px;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* Fonts Start */
/*body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin: 0;
  padding: 0;
  /*background: #fff;$$
}*/

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  /*color: var(--color-heading);*/
  margin-top: 0;
}

h1 {
  font-weight: 500;
  font-size: var(--h1-size);
  line-height: var(--h1-line-height);
  margin-top: 1.5rem; /* breathing room */
}

h2 {
  font-size: var(--h2-size);
  line-height: var(--h2-line-height);
    margin-top: 1.5rem; /* breathing room */
}
.h2-inline { /* for SEO */
  display: inline;
  font-size: 1rem;     /* Match body font size */
  font-weight: 600;    /* Slightly bolder than body text */
  line-height: inherit;
  margin: 0;
  padding: 0;
}

h3 {
  font-size: var(--h3-size);
  line-height: var(--h3-line-height);
}

h4 {
  font-size: var(--h4-size);
  line-height: var(--h4-line-height);
}

h5 {
  font-size: var(--h5-size);
  line-height: var(--h5-line-height);
}

h6 {
  font-size: var(--h6-size);
  line-height: var(--h6-line-height);
}

p {
  font-size: 1.25rem;
  text-align: justify; /* This justifies the paragraph */
}

a {
  /*color: var(--color-link);*/
  text-decoration: none;
  font-weight: 600;
}

.mobile-menu a {
  padding: 0.75rem 1.25rem;
  font-size: 18px;
}
/*================================================
Intellectual Property
=================================================*/
/* Intellectual Property Home Page ::
 For archive post see ip-card-style.css 
 ------------------------------------------------*/
 
.ip-archive .ip-entry {
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.ip-thumbnail, .ip-thumb {
  margin-bottom: 1rem;
  max-width: 100%;
}
/* Intellectual Property Single */
.responsive-video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
}

.responsive-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-fallback {
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* above may not be necessary */
.ip-post-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.ip-post-container .lead-text {
  margin-top: 0 !important;
}
.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.ip-split-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.ip-carousel-wrapper, .ip-description-box {
  flex: 1 1 48%;
}

.callout-box {
  background: var(--accent-light);
  padding: 2rem;
  margin-top: 2rem;
  border-left: 5px solid var(--primary);
}

.cta-box {
  margin-top: 2rem;
  text-align: center;
}

.box-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}


/* Intellectual Property End */

/*============================================
Light and Dark Mode Theme Start
============================================*/
/* Light Mode */
.theme-light body {
  background-color: #ffffff;
  color: #555555;
}
.theme-light a {
  color: #53b0d7;
}
.theme-light a:hover {
  color: #0c2632;
}
.theme-light a:active {
  color: #0c2632;
}
.theme-light a:visited {
  color: #2c90b7;
}
.theme-light strong,
.theme-light b {
  color: #222222;
}
.theme-light h1, .theme-light h2, .theme-light h3, .theme-light h4, .theme-light h5, .theme-light h6 {
  color: #0c2632;
}

/* Dark Mode */
.theme-dark body {
  background-color: #121212;
  color: #dddddd;
}
.theme-dark a {
  color: #53b0d7;
}
.theme-dark a:hover {
  color: #ACD9EC;
}
.theme-dark a:active {
  color: #ACD9EC;
}
.theme-dark a:visited {
  color: #ACD9EC;
}

.theme-dark strong,
.theme-dark b {
  color: #f0f4f8;
}
.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark h4, .theme-dark h5, .theme-dark h6 {
  color: #dfeffc;
}
/* === Light and Dark Mode Theme End === */

/* Main Navigation on the Header.css file */

/*============================================
Body CSS
============================================*/
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #222;
  background-color: #fff;
}

.section {
  padding: 4rem 1rem;
  width: 100%;
  box-sizing: border-box;
}
.section-short {
  padding: 1.8rem 1rem 1rem 1rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.section-text {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 800px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 1.5rem;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 0;
}
/* highlight effect */
::selection {
  background: #53b0d7;
  color: white;
}

::-moz-selection {
  background: #53b0d7;
  color: white;
}

.centered {
  text-align: center;
}
.sub-italic {
  font-style: italic;
  font-size: 1rem;
}
.sub-italic a:hover {
  font-weight: 700;
}
/* Body css END */
/*============================================
Homepage Intro Start
============================================*/
.section--tight {
  padding-top: 1rem !important;
  padding-bottom: 2rem !important;
}
/* Home Intro Headline */
.section-text-tight p:first-child {
  margin-top: 0;
}
.section-title {
  text-align: center;
}
.section-text,
.section-text-tight {
  margin-left: auto;
  margin-right: auto;
}

.section-text-tight {
  text-align: center;
}
@media (max-width: 640px) {
  .section-text,
  .section-text-tight {
    max-width: 95%;
  }
}

.section-text.lead {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-text a {
  color: #53b0d7;
  font-weight: 600;
  text-decoration: none;
}
.section-text a:hover {
  color: #2c90b7;
  text-decoration: underline;
}
.section-text a strong {
  color: #53b0d7;
  font-weight: 600;
  text-decoration: none;
}
.section-text a:hover strong {
  color: #2c90b7;
  text-decoration: underline;
}

.section-text {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 800px;
}

.section-text p {
  margin-bottom: 1rem;
}

.section-text strong {
  font-weight: 600;
}

.section-text a:hover {
  color: #2c90b7;
  text-decoration: underline;
}
/* Homepage Intro END */

/*============================================
Viemo Video section Start
============================================*/
/* home page start */

.video-wrapper.center {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent !important
}

.lazy-vimeo-wrapper-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.lazy-vimeo-wrapper-home iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  background: transparent !important
}
.lazy-vimeo-thumbnail-home {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
/* hom epage end */

/* Single ip post video */
.video-wrapper.center {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent !important;
}

.lazy-vimeo-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent !important;
  display: block;
}

.lazy-vimeo-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: contain; 
  background-position: center;
  display: block;
  z-index: 1;
}

.lazy-vimeo-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
/* Single ip post video end */

/* Viemo Video Section END */

/*============================================
Sections Start
============================================*/
/* === Section Dark Reusable Style === */
.section-dark {
  background-color: #f5f5f5;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.theme-dark .section-dark {
  background-color: #1f1f1f;
}

/*============================================
Products and Services Grid and Card Styling Start
============================================*/
.ps-grid {
  display: grid;
  /*flex-direction: column;
  justify-content: space-between;
  align-items: stretch; /* All cards stretch to same height */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));/* 4 max across */
  gap: 2rem;
  padding: 2rem 0;
  margin-top: 2rem;
}

/* === Products and Services Card Styling === */
.ps-card,
.ip2-card {
  background-color: #fff;
  box-shadow: 0 2px 57px 0px rgba(210, 210, 210, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  cursor: pointer;
  max-width: 280px; /* restrict total card width */
  width: 100%;
  margin: 0 auto;
  display: flex;
}

.theme-dark .ps-card,
.theme-dark .ip2-card,
.theme-dark .news-card {
  background-color: #1f1f1f;
  box-shadow: 0 2px 57px 0px rgba(20, 20, 20, 0.6);
}
.ps-card:hover,
.ip2-card:hover,
.news-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 80px 0 rgba(150, 150, 150, 0.5);
}
.theme-dark .ps-card:hover,
.theme-dark .ip2-card:hover,
.theme-dark .news-card:hover {
  box-shadow: 0 4px 80px 0 rgba(5, 5, 5, 0.9);
}

.ps-card-inner,
.ip2-card-inner,
.news-card-inner {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem; /* Consistent spacing */
  box-sizing: border-box;
  align-items: center;
  width: 100%;
  /*height: 100%;*/
}

.ps-card-img,
.ip2-card-img,
.news-card-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 1rem auto;
  display: block;
}
@media (max-width: 768px) {
  .ps-card-img,
  .ip2-card-img,
  .news-card-img {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 480px) {
  .ps-card-img,
  .ip2-card-img,
  .news-card-img {
    width: 140px;
    height: 140px;
  }
}

.ps-card-content,
.ip2-card-content,
.news-card-content  {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*flex-grow: 1;
  box-sizing: border-box;*/
  height: 100%;
}

/* === Title === */
h6.ps-card-title {
  margin-bottom: 1rem; /* forces the 1rem space above readmore */
}
.ps-card-title {
  font-weight: 500;
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 1rem;
  transition: color 0.2s ease, font-weight 0.2s ease;
}
.ps-card-excerpt,
.ip2-card-excerpt,
.news-card-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.9rem;
  color: #222;
  text-align: left;
  margin: 0.1rem 0;
  text-overflow: ellipsis;
  max-height: 3em;
  line-height: 1.5em;
}

.theme-dark .ps-card-excerpt,
.theme-dark .ip2-card-excerpt,
.theme-dark .news-card-excerpt {
  color: #dddddd;
}

/* Fade in more cards */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*============================================
Global Call TO Action Blue Button START
============================================*/
.text-center {
  text-align: center;
}
.box-button,
.box-button a {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 1rem;
  background-color: #53b0d7;
  color: #121212 !important;
  border: none;
  /*border-radius: 6px;*/
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  margin-top: 1.5rem;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.box-button:hover {
  background-color: #7CC8DF;
  color: #242424 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: scale(1.02);
}
.box-button a {
color: #ffffff;
}
.theme-dark .box-button {
  box-shadow: 0 2px 57px rgba(100, 100, 100, 0.8);
  color: #121212 !important;
}
.theme-dark .box-button:hover {
  box-shadow: 0 2px 80px rgba(80, 80, 80, 0.2);
  color: #242424 !important;
  background-color: #ACD9EC;
}
.box-button-inverse {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 1.5rem;
  background-color: #ffffff;
  color: #53b0d7 !important;
  border: 1px solid #53b0d7 !important;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  margin-top: 1.5rem;
  display: inline-block;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
}

.box-button-inverse:hover {
  background-color: #7CC8DF;
  color: #121212 !important;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);*/
  transform: scale(1.02);
}
.box-button-inverse a {
color: #53b0d7;
background-color: #ffffff;
}
.theme-dark .box-button-inverse {
  /*box-shadow: 0 2px 57px rgba(100, 100, 100, 0.8);*/
  background-color: #121212 !important;
}
.theme-dark .box-button-inverse:hover {
  /*box-shadow: 0 2px 80px rgba(80, 80, 80, 0.2);*/
  color: #242424 !important;
  background-color: #53b0d7 !important;
}
/* Global Call to Action BLue Button END */

/*============================================
Intellectual Propery Rectangle START
============================================*/
.ip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .ip-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/*============================================
Intellectual Propery 2 Square START
============================================*/
.ip2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .ip2-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.ps-card-bottom,
.ip2-card-bottom,
.news-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /*
  flex-grow: 1;
  justify-content: space-between;*/
}

/* === Title === */
h6.ip2-card-title {
  margin-bottom: 1rem; /* forces the 1rem space above readmore */
}
.ip2-card-title {
  font-weight: 500;
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 1rem;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.ip2-readmore {
  /*margin-top: auto;*/
  margin-bottom: 0;
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: 400;
  align-self: flex-start;
  text-align: left;
}

a.ps-card.group .ps-card-title,
a.ps-card.group .ps-readmore,
a.ip2-card.group .ip2-card-title,
a.ip2-card.group .ip2-readmore,
a.news-card-inner .news-card-title,
a.news-card-inner .news-readmore {
  color: #53b0d7;
  text-align: left;
  /*justify-content: center;*/
  align-items: center;
}

/* ~~~~~~~KEEP incase reverting ever ~~~~~~~~~~~*/
/* Targeted Home page Cards ip, ps, news HOVER Light Mode 222 $$
a.ps-card.group:hover .ps-card-title,
a.ps-card.group:hover .ps-readmore,
a.ip2-card.group:hover .ip2-card-title,
a.ip2-card.group:hover .ip2-readmore,
a.news-card-inner:hover .news-card-title,
a.news-card-inner:hover .news-readmore {
  color: #1D5F7C;
  /*font-weight: 700;$$
}*/
/* Targeted Home page Cards ip, ps, news VISITED Light & Dark Mode 222*/
a.ps-card.group:visited .ps-card-title,
a.ps-card.group:visited .ps-readmore,
a.ip2-card.group:visited .ip2-card-title,
a.ip2-card.group:visited .ip2-readmore,
a.news-card-inner:visited .news-card-title,
a.news-card-inner:visited .news-readmore {
  color: #2c90b7;
}

/* Dark mode products and services card elements hover color */
.theme-dark a.ps-card.group:hover .ps-card-title,
.theme-dark a.ps-card.group:hover .ps-readmore,
.theme-dark a.ip2-card.group:hover .ip2-card-title,
.theme-dark a.ip2-card.group:hover .ip2-readmore,
.theme-dark a.news-card-inner:hover .news-card-title,
.theme-dark a.news-card-inner:hover .news-readmore {
  color: #ACD9EC;/*#1f6684*/;
  /*font-weight: 700;*/
}

/* Intellectual Propery 2 Square END */

/*============================================
Global Fade In More Cards START
============================================*/
  
/* Fade in more cards */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Global Fade In More Cards END */

/* Background Image Render START */
/* Base light mode */
.bkgrender {
  background-image: url('/assets/images/bkg-sq2-1000.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 1rem;
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 1600px) {
  .bkgrender {
    background-image: url('/assets/images/bkg-sq2-2048.webp');
  }
}

@media (max-width: 640px) {
  .bkgrender {
    background-image: url('/assets/images/bkg-sq2-400.webp');
  }
}
.theme-dark .bkgrender {
  background-image: url('/assets/images/bkg-sq2-1000.webp');
}

/* Background Image Render END */

/* Intellectual Property css END */

/*========================================
News Posts Home Page grid and filter START
==========================================*/

#news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1040px;
  margin: 0 auto 2rem auto;
}

.news-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  
}

.news-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto 2rem;
  flex-wrap: wrap;
}

.news-filter.active {
  font-weight: bold;
  /*text-decoration: underline;*/
}

.news-filter {
  background: transparent;
  color: #666;
  border: none;
  padding: 0.4rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px; /* pill shape */
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.theme-light .news-filter:hover {
  background: rgba(0, 0, 0, 0.05);
}

.theme-light .news-filter.active {
  background: rgba(0, 0, 0, 0.1); /* light gray */
  color: #000;
}
@media (prefers-color-scheme: dark) {
  .news-filter {
    color: #aaa;
  }

  .news-filter.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
}

#news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-content: center;
  max-width: 1040px;
  margin: 2rem auto;
  padding: 0 1rem;
}
/*new*/
.news-post {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 250px;
  margin: 0 auto;
}

.news-post img {
  width: 100%;
  height: auto;
  display: block;
}

.news-post .post-title {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

.news-post .read-more {
  font-size: 0.9rem;
  color: var(--link-color);
  margin-top: 0.25rem;
}
.load-more {
  cursor: pointer;
}
h6.news-card-title {
  /*padding-top: 1rem;*/
  margin-top: 0;
  margin-bottom: 1rem; /* forces the 1rem space above readmore */
}
.news-card-title {
  font-weight: 500;
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 1rem;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.news-readmore {
  margin-top: auto;
  margin-bottom: 0;
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: 400;
  align-self: flex-start;
  text-align: left;
}


/*News Posts Home Page grid and filter END */


/*==========================================================
Our Partners Carosel START
===========================================================*/
.section-partners {
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
}

.partners-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.partners-carousel {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.partner-logo {
  flex: 0 0 auto;
  width: 33.3333%;
  /*width: calc(100% / 3);*/
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.partner-logo img {
  max-height: 100px;
  max-width: 300px;
  width: auto;
  height: auto;
  transition: filter 0.3s ease;
}
/* Mobile adjustment */
@media (max-width: 1225px) {
  .partner-logo {
    width: 50%;
  }
  .partner-logo img {
  max-height: 100px;
  max-width: 300px;
}
}

@media (max-width: 640px) {
  .partner-logo {
    width: 100%;
  }
  .partner-logo img {
  max-height: 100px;
  max-width: 200px;
}
}
@media (max-width: 350px) {
  .partner-logo {
    width: 100%;
  }
  .partner-logo img {
  max-height: 100px;
  max-width: 150px;
}
}

/* Carousel nav buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  font-size: 2rem;
  color: var(--text-color);
  width: 2.5rem;
  height: 2.5rem;
}

.carousel-nav.left {
  left: 0;
}

.carousel-nav.right {
  right: 0;
}

/* Dark mode overrides */
.theme-dark .partner-logo img.white-logog-ondark {
  filter: brightness(0) invert(1);
}

/*++++++++++++========================================================++++++++++
SINGLE POSTS
++++++++++++++=======================================================+++++++++*/
/*========================================
YouTube Video in-post START
==========================================*/
.news-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  margin: 1rem 0;
}

.news-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===============================================
Social Media Share icons and drop down START
=================================================*/
.social-share-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  overflow: visible; /* allow children to expand */
}
.social-share-icon {
  height: 24px;
  width: 24px;
  cursor: pointer;
  transition: transform 0.3s ease, fill 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.fill-brand {
  fill: #53b0d7;
  transition: fill 0.2s ease;
}
.fill-brand:hover {
  transition: fill 0.2s ease;
}

/* Hover scale */
.social-share-icon :hover .social-share-icon {
  transform: scale(1.1);
}

/* HOVER COLOR by theme */
.theme-light .social-share-icon:hover .fill-brand {
  fill: #0c2632; /* navy in light mode */
  transform: scale(1.1);
}

.theme-dark .social-share-icon:hover .fill-brand {
  fill: #ffffff; /* white in dark mode */
  transform: scale(1.1);
}
.toggle-dropdown-wrapper {
  position: relative;
  display: inline-block;
}
.share-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  padding: 0.5rem;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: #f5f5f5;
  color: #000;
  transition: background 0.3s ease, color 0.3s ease;
}
body.theme-light .share-dropdown,
html.theme-light .share-dropdown {
  background: #f5f5f5 !important;
  color: #000;
  border-color: #ccc !important;
}
body.theme-dark .share-dropdown,
html.theme-dark .share-dropdown {
  background: #1f1f1f !important;
  color: #ffffff;
  border-color: #333;
}
/* Optional: fallback for system-based preference */
@media (prefers-color-scheme: dark) {
  body:not(.theme-light):not(.theme-dark) .share-dropdown {
    background: #1f1f1f;
    color: #ffffff;
    border-color: #333;
  }
}

.share-dropdown a {
  display: inline-block;
  margin: 0.125rem; /* adjust spacing between dropdown icons */
}

.share-dropdown svg {
  height: 24px;
  width: 24px;
  fill: #53b0d7;
  transition: fill 0.3s ease, transform 0.3s ease;
}

@media (prefers-color-scheme: light) {
  .share-dropdown svg:hover {
    fill: #0c2632;
  }
}

@media (prefers-color-scheme: dark) {
  .share-dropdown svg:hover {
    fill: #ffffff;
  }
}
.share-dropdown .fill-brand {
  height: 24px;
  width: 24px;
}
.social-share-icons {
  position: relative; /* Anchor for dropdown */
}
/* Social Share icons and drop down END */

/*======================================================
All Post Single bottom nav START
========================================================*/

.post-bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  min-width: 200px;
}

.nav-item-prev {
  align-items: flex-start;
  text-align: left;
}

.nav-item-next {
  align-items: flex-end;
  text-align: right;
}

.nav-item-center {
  /*justify-content: start;*/
  justify-content: center;
  text-align: center;
  display: flex;
}
.nav-item.empty {
  visibility: hidden;
  pointer-events: none;
}

/* Link styles */
.nav-label-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #53b0d7;
  text-decoration: none;
}

.nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: #53b0d7;
  max-width: 15rem;
  line-height: 1.4;
  word-wrap: break-word;
  text-decoration: none;
  display: inline-block;
}

.nav-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-arrow {
  font-size: 1.25rem;
  font-weight: bold;
}

.nav-arrow-right {
  margin-left: 0.5rem;
}
/* Entire nav block is one link */
.nav-link-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* change to flex-start for .nav-item-prev */
  color: #53b0d7;
  text-decoration: none;
  max-width: 15rem;
  transition: color 0.2s ease;
}

.nav-link-group:hover {
  color: #0c2632;
}

.theme-dark .nav-link-group:hover {
  color: #ffffff;
}

.nav-label-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
}
/* Default link style */
.nav-link-group {
  color: #53b0d7;
  text-decoration: none;
}

/* All inner elements adopt hover styles when parent link is hovered */
.nav-link-group:hover,
.nav-link-group:hover .nav-label,
.nav-link-group:hover .nav-arrow,
.nav-link-group:hover .nav-title {
  color: #0c2632;
}

.theme-dark .nav-link-group:hover,
.theme-dark .nav-link-group:hover .nav-label,
.theme-dark .nav-link-group:hover .nav-arrow,
.theme-dark .nav-link-group:hover .nav-title {
  color: #ffffff;
}


/* Hover effects */
.nav-label-link:hover,
.nav-title:hover {
  color: #0c2632;
}

.theme-dark .nav-label-link:hover,
.theme-dark .nav-title:hover {
  color: #ffffff;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .post-bottom-nav {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-item-prev,
  .nav-item-next {
    align-items: center;
    text-align: center;
  }
}

/* Single Post Nav Bottom END */

/*==================================================
404 Page
====================================================*/
/* 404 Page Styles */

/**/
/* Section Styling */
.content-box {
  background-color: #fff;
  box-shadow: 0 2px 57px 0px rgba(210, 210, 210, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  cursor: pointer;
  max-width: 4000px; /* restrict total card width */
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  text-align: center;
  justify-content: space-between;
  flex-grow: 1;
  box-sizing: border-box;
}

.content-box h3 {
  text-align: center;
}

h3.center-section-title {
  margin-bottom: 1rem; /* forces the 1rem space above readmore */
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

/* Center the title and map icon */
.center-section-title {
  text-align: center; /* Center the title */
}

.content-box .map-icon {
  display: flex;
  justify-content: center; /* Center the map icon */
  align-items: center; /* Align map icon in the center */
}

.map-icon img {
  width: 50px; /* Adjust the size of the map icon */
  height: 50px;
  margin-top: 10px; /* Space between the text and the icon */
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: invert(64%) sepia(16%) saturate(1277%) hue-rotate(156deg) brightness(94%) contrast(85%); /* Perfect BLue */
}

.map-icon a:hover img {
  transform: scale(1.1); /* Slightly increase the icon size on hover */
  filter: brightness(1.2); /* Lighten the icon on hover */
}
.theme-dark .map-icon a:hover img {
  transform: scale(1.1); /* Slightly increase the icon size on hover */
  filter: brightness(500) saturate(0) contrast(0);
  color: #ffffff;
}

.theme-dark .content-box {
  background-color: #1f1f1f;
  box-shadow: 0 2px 57px 0px rgba(20, 20, 20, 0.6);
}
.error-icon {
  margin-right: 10px;
  width: 30px; /* Adjust the size of the error icon */
  height: 30px;
  filter: invert(64%) sepia(16%) saturate(1277%) hue-rotate(156deg) brightness(94%) contrast(85%); /* Perfect BLue */
}

/* Responsive Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col-md-6 {
  width: 48%;
  margin-bottom: 30px;
}

.content-box h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
/*
.content-box a.btn-link {
  color: #0c2632;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.content-box a.btn-link:hover {
  color: #53b0d7;
}
*/
/* Search Form */
.search-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 70%;
  margin-right: 10px;
}

.search-button {
  background: none;
  border: none;
  cursor: pointer;
}

.search-button img {
  width: 24px;
  height: 24px;
}
.search-button:hover img,
.search-button a:hover img {
  transform: scale(1.1); /* Slightly increase the icon size on hover */
  filter: brightness(0) saturate(0) contrast(100);
  color: #ffffff;
}
.theme-dark .search-button:hover img,
.theme-dark .search-button a:hover img {
  transform: scale(1.1); /* Slightly increase the icon size on hover */
  filter: brightness(500) saturate(0) contrast(0);
  color: #ffffff;
}

.theme-dark .search-input {
  background-color: #242424;
}
/* Image Icon Styling */
.map-icon img, .search-button img {
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .col-md-6 {
    width: 100%;
  }

  .search-input {
    width: 80%;
  }
}

/* Search Result Title - remove bold, add hover effect */
.search-result-title a {
  font-weight: 400;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.search-result-title a:hover,
.search-result-title a:focus {
  color: #53b0d7; /* Replace with your theme's hover color */
}

/* Excerpt styling: indented and muted color */
.search-result-excerpt {
  margin-left: 1.5rem;
  max-width: 65ch;
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
}
/* ===========================
   SEARCH PAGE FORM STYLES
=========================== */

.search-page-form {
  text-align: center;
  margin: 2rem auto;
}

.search-page-form form {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #dadbdd; /*#ccc;*/
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  background-color: #fff;
  transition: background-color 0.3s, border-color 0.3s;
}

.theme-dark .search-page-form form {
  background-color: #1f1f1f; /*#0c2632;*/
  border-color: #dadbdd; /*#333;*/
}

/* Search input field */
.search-page-form .search-field {
  border: none;
  background: transparent;
  color: inherit;
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
  flex: 1;
  outline: none;
}

.search-page-form .search-field::placeholder {
  color: #777;
}

.theme-dark .search-page-form .search-field::placeholder {
  color: #ccc;
}

/* Search button (magnifying glass) */
.search-page-form .search-submit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.search-page-form .search-submit:hover,
.search-page-form .search-submit:focus {
  opacity: 0.8;
}

.search-page-form .search-submit img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(13%) saturate(1591%) hue-rotate(156deg) brightness(95%) contrast(94%);
  transition: filter 0.3s ease;
}

.theme-dark .search-page-form .search-submit img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.search-page-form .search-submit:hover img {
  filter: brightness(0) saturate(100%) invert(65%) sepia(27%) saturate(781%) hue-rotate(163deg) brightness(91%) contrast(89%);
}
.search-form {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
/* Clear "×" button in search page form */
.search-page-form .search-clear {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: #0c2632;
  opacity: 0.8;
  padding: 0 0.25rem;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.search-page-form .search-clear.show {
  display: inline-block !important;
}

.theme-dark .search-page-form .search-clear {
  color: #ffffff;
}

.theme-dark .search-page-form .search-clear:hover {
  color: #53b0d7;
}

.search-page-form .search-clear:hover {
  color: #53b0d7;
}
.search-page-form .search-field {
  color: #555555;
}
.theme-dark .search-page-form .search-field {
  color: inherit;
}

/* 404 page end */
/*=================================================
Post Bottom - More Posts
==================================================*/
.post-bottom-separator {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(100, 100, 100, 0.3); /* Works for both themes */
}
/*
.post-single-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-content: start;
  /*grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;$$
}*/
.post-single-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  justify-content: start;
}

.news-related-posts {
  padding: 0 1rem;
}

.news-card {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  box-shadow: 0 2px 57px 0px rgba(210, 210, 210, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  cursor: pointer;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* make children stack */
  align-items: center;
  text-align: left;
  /*padding: 1rem;*/
  box-sizing: border-box;
}
/*
.news-card:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}*/

.news-card-title {
  margin: 0;
  line-height: 1.3;
  font-size: 1rem;
  font-weight: 500;
  color: #53b0d7;
  margin-bottom: 1rem; /* forces the 1rem space above readmore */
}
.theme-light .news-card-title,
.theme-dark .news-card-title {
  color: #53b0d7;
}

.news-card-readmore {
  color: #53b0d7;
  margin-top: auto;
  margin-bottom: 0; 
  font-weight: 400;
  transition: color 0.3s ease, transform 0.3s ease;
}

.news-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.news-card-img-wrapper {
  width: 100%;
  aspect-ratio: 50 / 34; /* ~200x136 */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding-top: -1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  flex-shrink: 0;
  align-items: center;
}


/*Try this global Card Style 444444*/

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 80px 0 rgba(150, 150, 150, 0.5);
}

.theme-dark .card:hover {
  box-shadow: 0 4px 80px 0 rgba(5, 5, 5, 0.9);
  transform: translateY(-3px);
  transform: scale(1.02);
}
/*
.theme-dark .news-card {
  background-color: #1f1f1f;
  box-shadow: 0 2px 57px 0px rgba(20, 20, 20, 0.6);
}*/
/*
.news-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 80px 0 rgba(150, 150, 150, 0.5);
}*/
/*
.theme-dark .news-card:hover {
  box-shadow: 0 4px 80px 0 rgba(5, 5, 5, 0.9);
}*/
/*
.bkgrender {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 1 1 auto;
}*/

/*
.news-card-img-wrapper.bkgrender {
  background-image: url('/assets/images/bkg-sq2-1000.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.theme-dark .news-card-img-wrapper.bkgrender {
  background-image: url('/assets/images/bkg-sq2-1000.webp');
}*/
.ipp-carousel.bkgrender {
  background-image: url('/assets/images/bkg-sq2-1000.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
/*
.theme-dark .ipp-carousel.bkgrender {
  background-image: url('/assets/images/bkg-sq2-1000.webp');
}
*/




/* News Cards END */

/*=========================================
About and blue section SEO
=======================================*/
.theme-light .section-blue {
  background-color: #53b0d7;
  color: white;
  padding: 4rem 1rem;
  font-size: 1.125rem; /* Slightly larger than base (18px if base is 16px) */
  line-height: 1.7;     /* Improves readability on colored backgrounds */
}
@media (min-width: 768px) {
  .section-blue {
    font-size: 1.25rem; /* 20px on tablets/desktops */
  }
}
.theme-light .section-blue strong {
  color: #000;
}
/* Reduce height of white space around "About Us" */
section.section.section-title-wrapper {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}
.titlewide-container {
  max-width: 960px;
  margin: 0 auto;
}
h1.section-title {
  margin-top: 0;
  margin-bottom: 0.5rem; /* tighter spacing before section below */
  font-size: 2.5rem; /* optional size adjustment */
  line-height: 1.2;
  text-align: left;
}
.section-blue h2.section-title {
  margin: 0;
  text-align: left;
  font-weight: 500;
  color: #ffffff;
}
.theme-light .section-blue strong.strong-no-bold {
  color: white;
  font-weight: normal;
}

.section-blue .container {
  max-width: 960px;
  margin: 0 auto;
}
/* Section BLue Theme Dark - Dark mode */
.theme-dark .section-blue {
  background-color: #1f1f1f;
  color: white;
  padding: 4rem 1rem;
  font-size: 1.125rem; /* Slightly larger than base (18px if base is 16px) */
  line-height: 1.7;     /* Improves readability on colored backgrounds */
}

.theme-dark .section-blue strong {
  color: #53b0d7;
}

.theme-dark .section-blue strong.strong-no-bold {
  color: white;
  font-weight: normal;
}


/* HOME PAGE VIEmo Video CSS */
.lazy-vimeo-wrapper-home,
.lazy-vimeo-wrapper {
 /* min-height: 480px;
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 $$
  background-color: #000;
  overflow: hidden;*/
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* ⬅️ modern and effective! */
  overflow: hidden;
  background-color: #000;
}

.lazy-vimeo-wrapper-home,
.lazy-vimeo-wrapper iframe,
.lazy-vimeo-thumbnail-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lazy-vimeo-play-button-home {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/*=================================================================
Contact Us
==================================================================*/
/* Contact Us Layout */
.contact-us-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.vcard-button{
  padding: 1.5rem 1.5rem;
  color: #ffffff;
  font-size: 1.1rem;
}
.contact-info {
  flex: 1;
  min-width: 280px;
}
.page-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: #53b0d7;
  transition: fill 0.3s ease;
  padding-right: 0.3rem;
}
/*
.page-icon svg:hover {
  fill: #0c2632;
}*/

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info img {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
}
.contact-info li strong {
  margin-right: 0.35rem;
}
@media (max-width: 600px) {
  .contact-info li {
    margin-bottom: 0.75rem;
  }

  .contact-info li strong {
    margin-right: 0.25rem;
  }
}

.vcard-button {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.vcard-button img {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-form-box {
  flex: 1;
  min-width: 320px;
  padding: 2rem;
  background-color: #53b0d7;
  /*border-radius: 0.5rem;*/
  color: #121212;
  position: relative;
  z-index: 2;
  margin-bottom: -3rem; /* controls overlap depth */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* optional elevation */
}

.contact-form-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #121212;
}
/* Request A QUote contact form filed color*/
.theme-dark .ff-el-form-control {
  background-color: #1f1f1f;
}
/* ==========================================
Fluent Forms Style 
=======================================*/
/* Fluent Form Submit Button on Contact Page */
form.fluent_form_1 .ff-btn-submit {
  background-color: #0c2632 !important;  /* Moxietec navy */
  color: #ffffff;
  border: none;
}
form.fluent_form_1 .ff-btn-submit:hover {
  background-color: #123847 !important;  /* Slightly lighter on hover */
}
/* Fluent Form Submit Button on request-info Page */
form.fluent_form_3 .wpf_has_custom_css.ff-btn-submit {
  background-color: #53b0d7 !important; /* Your Moxietec Navy */
  border-color: #53b0d7 !important;
  color: #ffffff !important;
}
form.fluent_form_3 .wpf_has_custom_css.ff-btn-submit:hover {
  background-color: #ACD9EC !important; /* Optional hover tone */
  border-color: #ACD9EC !important;
  color: #121212 !important;
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  margin-top: 2rem;
}
.contact-map {
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .contact-form-box {
    margin-bottom: 0;
  }
}

/* Contact Info SVG Icons */
.contact-info li img {
  filter: invert(64%) sepia(16%) saturate(1277%) hue-rotate(156deg) brightness(94%) contrast(85%); /* Perfect BLue */
  /* This applies your Moxietec blue tone */
}
.vcard-button img {
  width: 1.5rem;
  height: 1.5rem;
  transition: color 0.3s ease;
}

@media (prefers-color-scheme: dark) {
  .vcard-icon {
    color: #000000; /* dark mode */
  }
}
/* ==================================
Google Translator Style 
=============================================*/
/* Remove box shadow globally */

.gt_float_switcher,
.gt-selected .gt-current-lang,
.gt-current-lang,
.gt-selected,
.gt-current-lang * {
  box-shadow: none !important;
  background-color: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  color: #333333 !important;
  font-family: Arial, sans-serif !important;
  font-weight: 500 !important;
  /*font-size: 20px !important;
  padding: 10px 15px !important;*/
}
.theme-dark .gt_float_switcher,
.theme-dark .gt-selected .gt-current-lang,
.theme-dark .gt-current-lang,
.theme-dark .gt-selected,
.theme-dark .gt-current-lang * {
  box-shadow: none !important;
  background-color: #0c2632 !important;
  border: none !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  font-family: Arial, sans-serif !important;
  font-weight: 500 !important;
  /*font-size: 20px !important;
  padding: 10px 15px !important;*/
}
.theme-dark .gt-current-lang .nturl a {
  color: #ffffff !important;
}
.theme-dark .gt-current-lang .gt_float_switcher-arrow {
  color: #ffffff !important;
}
.theme-dark .nturl {
  color: #ffffff !important;
  font-family: Arial, sans-serif !important;
  /*font-size: 20px !important;
  padding: 10px 15px !important;*/
}

/* Google Translator Style  */
button, input[type="button"], input[type="submit"], .button, .btn {
  border: none;
  /*box-shadow: none;*/
}