:root {
    --bg: #ffffff;
    --panel: #ffffff;
    --panel-soft: #f8f9fb;
    --border: #e5e7eb;
    --text: #1a1a1a;
    --muted: #555;
    --brand: #227cbc;   /* indigo */
    --brand-2: #06b6d4; /* cyan */
    --radius: 18px;
    --shadow-soft: 0 4px 16px rgba(0,0,0,.06);
    --shadow-card: 0 12px 30px rgba(0,0,0,.08);
    --glow: 0 8px 20px rgba(23, 123, 159, 0.18);
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}


.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Always apply to your .no‑focus buttons */
.btn.no-focus {
  user-select: none;
  outline: none !important;
  box-shadow: none !important;
}

/* Catch click‑hold (active) and keyboard/tab focus */
.btn.no-focus:focus,
.btn.no-focus:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Firefox’s inner border on <button> */
.btn.no-focus::-moz-focus-inner {
  border: 0 !important;
}

/* Remove the border on click/active */
.btn.no-focus:active,
.btn.no-focus.active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;          /* kill the black border */
}

/* If you still want a border in the normal state, but just not on active: */
.btn.no-focus {
  border: none;        /* or whatever your default is */
}
.btn.no-focus:active,
.btn.no-focus.active {
  border-color: transparent !important;
}

.gradient-icon {
  /* your gradient: */
  background: linear-gradient(
          to right,
          #833ab4,
          #fd1d1d,
          #fcb045
  );
  /* clip the background to the glyph: */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block; /* needed in some browsers */
}

.fa-1_5x
{
  font-size: 1.5em;
}
.fa-1_25 {
  font-size: 1.25em;
}
/* 1) Take the navbar out of the document flow and let the hero slide under it */
.navbar {
  position: absolute;    /* or fixed, if you always want it visible on scroll */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;         /* sit on top of the hero image */
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.nav-pills .nav-link.active {
  background-color: var(--bs-primary) !important;
  color: #fff !important;
}

.contact-button {
  color: var(--bs-white);
  border: 2px solid var(--bs-white);
  border-radius: 999px;
  background-color: transparent;
  padding: 8px 20px;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
  background-color: white;
  color: black;
}

/*.nav-link.active {
  border-bottom: 2px solid white;
}*/

.fancy-underline {
  position: relative;
  color: var(--bs-white);
  text-decoration: none;
  padding-bottom: 5px;
}

.fancy-underline::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--bs-white);
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.fancy-underline:hover::after,
.fancy-underline.active::after {
  width: 60%; /* or 50%, depending on how short you want it */
}

.nav-color{
  color: var(--bs-white);
}
.navbar-nav .nav-link.active.nav-color,
.navbar-nav .nav-link.show.nav-color {
    color: var(--bs-white);
}
.navbar-nav {
    --bs-nav-link-hover-color: white; /* pick your hover color */
}
.fw-extrabold {
    font-weight:800; letter-spacing:-.01em;
}
.border-round {
  border-radius: 999px;
}
.primarycolor {
  background-color: #ffffff;
}
.secondarycolor {
  background-color: #156b9c;
}

footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: #0d6efd;
}

.hero-section { position: relative; height: 70vh; display: flex; align-items: center; justify-content: center; color: #fff; background-position: top center; background-repeat: no-repeat; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }
.hero-content { position: relative; z-index: 2; text-align: center; }


.service-card, .team-card { transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; }
.service-card:hover, .team-card:hover { transform: translateY(-8px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }


section { padding: 80px 0; }
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.lead-text { font-size: 1.125rem; color: #6c757d; margin-bottom: 2rem; }


.team-img { width: 120px; height: 120px; object-fit: cover; }


.cta-section { background-color: #0d6efd; color: #fff; text-align: center; }
.cta-button { margin-top: 1rem; }

.no-bullets ul,
.no-bullets li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.validation-summary-errors ul,
.validation-summary-errors li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}


#web-development { color: var(--text); }
#web-development .lead { color: var(--muted); }

#web-development .panel {
    padding: 0;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

#web-development .panel-content {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 0;
    align-items: stretch;
}

#web-development .hero {
    position: relative;
    overflow: hidden;
}

#web-development .hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#web-development .hero-badge {
    position: absolute;
    left: 16px;
    bottom: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    font-weight: 600;
    color: var(--brand);
}

#web-development .panel-text {
    padding: 20px;
    background: #fff;
}

#web-development .services { display: grid; gap: 14px; margin-top: 6px; }
#web-development .service {
    display: grid; grid-template-columns: 44px 1fr auto;
    align-items: center; gap: 16px;
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
#web-development .service:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    box-shadow: var(--glow);
}
#web-development .icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: #fff; border: 1px solid var(--border);
}
#web-development .title { font-weight: 700; letter-spacing: -.01em; }
#web-development .desc  { color: var(--muted); font-size: 14px; margin-top: 2px; }
#web-development .chip {
    padding: 6px 10px; border-radius: 999px;
    background: var(--brand); color: #fff;
    font-weight: 600; font-size: 12px; white-space: nowrap;
}

#web-development .border-primary { border-color: var(--brand) !important; }

@media (max-width: 768px) {
    #web-development .panel-content { grid-template-columns: 1fr; }
    #web-development .hero { min-height: 240px; }
}
#ai-solutions { color: var(--text); }
#ai-solutions .lead, #ai-solutions p { color: var(--muted); }

#ai-solutions .panel {
    padding: 0;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

#ai-solutions .panel-content {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 0;
    align-items: stretch;
}

#ai-solutions .hero {
    position: relative;
    overflow: hidden;
}

#ai-solutions .hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#ai-solutions .hero-badge {
    position: absolute;
    left: 16px;
    bottom: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    font-weight: 600;
    color: var(--brand);
}

#ai-solutions .panel-text {
    padding: 20px;
    background: #fff;
}

#ai-solutions .services { display: grid; gap: 14px; margin-top: 6px; padding: 0; list-style: none; }
#ai-solutions .service {
    display: grid; grid-template-columns: 44px 1fr;
    align-items: center; gap: 12px;
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
#ai-solutions .service:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    box-shadow: var(--glow);
}
#ai-solutions .icon {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 10px;
    background: #fff; border: 1px solid var(--border);
}
#ai-solutions .title { font-weight: 600; }
@media (max-width: 768px) {
    #ai-solutions .panel-content { grid-template-columns: 1fr; }
    #ai-solutions .hero { min-height: 240px; }
}



#application-development { color: var(--text); }
#application-development .lead, #application-development p { color: var(--muted); }

#application-development .panel {
    padding: 0;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

#application-development .panel-content {
    display: grid;
    grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);
    grid-template-areas:"text hero";
    gap: 0;
    align-items: stretch;
}

#application-development .hero {
    position: relative;
    overflow: hidden;
}

#application-development .hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#application-development .hero-badge {
    position: absolute;
    left: 16px;
    bottom: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    font-weight: 600;
    color: var(--brand);
}

#application-development .panel-text {
    padding: 20px;
    background: #fff;
    grid-area:text;
}

#application-development .services { display: grid; gap: 14px; margin-top: 6px; padding: 0; list-style: none; }
#application-development .service {
    display: grid; grid-template-columns: 44px 1fr;
    align-items: center; gap: 12px;
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
#application-development .service:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    box-shadow: var(--glow);
}
#application-development .icon {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 10px;
    background: #fff; border: 1px solid var(--border);
}
#application-development .title { font-weight: 600; }
@media (max-width: 768px) {
    #application-development .panel-content {
        grid-template-columns:1fr;
        grid-template-areas:
      "hero"
      "text";
    }
    #application-development .hero { 
        min-height: 240px;
        grid-area:hero;
    }
}


#vr-applications { color: var(--text); }
#vr-applications .lead, #vr-applications p { color: var(--muted); }

#vr-applications .panel {
    padding: 0;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

#vr-applications .panel-content {
    display: grid;
    grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);
    grid-template-areas:"text hero";
    gap: 0;
    align-items: stretch;
}

#vr-applications .hero {
    position: relative;
    overflow: hidden;
}

#vr-applications .hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



#vr-applications .panel-text {
    padding: 20px;
    order:1;
    grid-column: 1;
    background: #fff;
    grid-area:text;
}

#vr-applications .services { display: grid; gap: 14px; margin-top: 6px; padding: 0; list-style: none; }
#vr-applications .service {
    display: grid; grid-template-columns:44px minmax(0,1fr) auto;
    align-items: center; gap: 12px;
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
#vr-applications .service:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    box-shadow: var(--glow);
}
#vr-applications .icon {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 10px;
    background: #fff; border: 1px solid var(--border);
}
#vr-applications .title { font-weight: 600; }

@media (max-width: 768px) {
    #vr-applications .panel-content {
        grid-template-columns:1fr;
        grid-template-areas:
      "hero"
      "text";
    }
    #vr-applications .hero { 
        min-height: 240px; 
        order: 2;
        grid-column: 2;
        grid-area:hero;
    }
}

.panel .services { display: grid; gap: 14px; margin-top: 6px; padding: 0; list-style: none; }
.panel .service {
    display: grid; grid-template-columns: 44px 1fr auto;
    align-items: center; gap: 16px;
    background: #f9fafb; border: 1px solid var(--border);
    border-radius: 16px; padding: 18px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.panel .service:hover { transform: translateY(-2px); border-color: var(--brand); box-shadow: var(--glow); }
.panel .icon {
    width: 44px; height: 44px; display: grid; place-items: center;
    border-radius: 12px; background: #fff; border: 1px solid var(--border);
}
.panel .title { font-weight: 700; letter-spacing: -.01em; }
.panel .desc { color: var(--muted); font-size: 14px; margin-top: 2px; }
.panel .chip {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 12px;
    border-radius:999px;
    background:var(--brand);
    color:#fff;
    font-weight:600;
    font-size:12px;
    white-space:nowrap;
    overflow:visible;
    text-overflow:clip;
    max-width:none;
    justify-self:end;
}
#ai-solutions .service,
#application-development .service{
    display: grid;
    grid-template-columns: 44px minmax(0,1fr) auto !important;
    align-items: center;
    gap: 16px;
}

/* make chips behave the same as VR */
#ai-solutions .chip,
#application-development .chip{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    max-width: none;
}

/* ensure lists themselves don’t add padding/markers */
#ai-solutions .services,
#application-development .services{
    padding: 0;
    list-style: none;
}

/* keep icons consistent size */
#ai-solutions .icon svg,
#application-development .icon svg{
    width: 20px;
    height: 20px;
}

