/*
Theme Name: MidasTech Landing
Theme URI: https://midastechofficial.com
Author: MidasTech
Author URI: https://midastechofficial.com
Description: Landing page theme for MidasTech automation services. Converted from the static HTML design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: midastech
Tags: one-column, custom-menu, custom-logo, featured-images, translation-ready
*/
:root {
  --font-heading: "Bai Jamjuree", sans-serif;
  --notification-bar: #185592;
  --primary: #185592;
  --primary-dark: #185592;
  --accent: #185592;
  --accent-dark: #185592;
  --ink: #111827;
  --bg: #fffffd;
  --surface: #ffffff;
  --text: #212121;
  --muted: #555555;
  --border: #f1f1f1;
  --highlight: #185592;
  --section-surface: #f3f8fe;
  --gold: #c69320;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: Inter, sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; }
.side-cta {
  display: none;
  position: fixed;
  left: 0;
  top: 42%;
  transform: translateY(-50%) rotate(-90deg) translateX(-50%);
  transform-origin: left top;
  z-index: 60;
  border-radius: 0 !important;
  padding: 13px 24px;
  box-shadow: 0 10px 24px rgba(10, 41, 78, 0.25);
  transition: none !important;
}
.side-cta:hover {
  background: var(--accent) !important;
  transform: translateY(-50%) rotate(-90deg) translateX(-50%) !important;
  transition: none !important;
}

@media (max-width: 1300px) {
  .side-cta { display: none !important; }
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
p { margin: 0 0 14px; color: var(--muted); }
ul { margin: 0; padding-left: 20px; color: var(--muted); }
.container { width: min(1140px, calc(100% - 2rem)); margin-inline: auto; }

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
.about-section {
    padding: 0px !important;
}
#projects.section-blue {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 20%, rgb(243, 248, 254) 99%);
    padding: 30px;
}
}

.section { padding: 84px 0; }
.section-neutral { background: linear-gradient(180deg, #ffffff 0%, #fffffd 100%); }
.section-blue { background: linear-gradient(180deg, #f3f8fe 0%, #f3f8fe 100%); }
.section-split-white-blue {
  background: linear-gradient(180deg, #ffffff 0 50%, #f3f8fe 50% 100%);
}
#services.section-neutral {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgb(243, 248, 254) 69%);
}
#projects.section-blue {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 20%, rgb(243, 248, 254) 99%);
}
.site-header { position: relative; z-index: 40; }
.notification-bar {
  background: var(--notification-bar);
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.4;
}
.notification-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 0;
}
.notification-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 22px;
  row-gap: 8px;
}
.notification-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: opacity 160ms ease;
}
.notification-item:hover {
  opacity: 0.88;
}
.notification-item-static {
  cursor: default;
}
.notification-item-static:hover {
  opacity: 1;
}
.notification-icon {
  font-size: 18px !important;
  width: 18px;
  height: 18px;
  color: #fff;
  flex-shrink: 0;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
}
.notification-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.notification-social-link {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
  transition: opacity 160ms ease, transform 160ms ease;
}
.notification-social-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.nav-strip {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e7edf6;
  backdrop-filter: blur(6px);
}
.nav-wrap {
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
}
.brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 70px;
}

.brand-nav-end {
  display: none;
}

@media (min-width: 768px) and (max-width: 900px) {
  .nav-wrap {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .brand img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 55px;
  }

  .card h4 {
    font-size: 1.2rem !important;
  }
}
.main-nav { display: flex; gap: 22px; align-items: center; }
.main-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
}
.main-nav a:hover { color: var(--primary); }
.menu-btn {
  display: none;
  border: 1px solid #e2e8f0;
  padding: 0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.menu-btn-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}
.menu-btn-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: #4a5568;
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
  transform-origin: center;
}
.menu-btn.open .menu-btn-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn.open .menu-btn-bars span:nth-child(2) {
  opacity: 0;
}
.menu-btn.open .menu-btn-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero { background: var(--section-surface); padding-top: 6px; padding-bottom: 0; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2px; align-items: center; }


.hero h1 {
  line-height: 1.1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--highlight);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  background: transparent;
  border: 0;
  border-radius: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 52px;
  height: 2px;
  background: #c69320;
  display: inline-block;
}
.hero .eyebrow {
  justify-content: flex-start;
  margin-left: 0;
  margin-right: 0;
}
.eyebrow.center {
  display: flex;
  width: fit-content;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.lead { font-size: 1rem; max-width: 760px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

.btn { display: inline-block; text-decoration: none; padding: 16px 30px; border-radius: 30px; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.02em; transition: 180ms ease; line-height: 1; }
.btn-primary { background: var(--accent); color: #fffffe; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: #f4f8ff; }

.hero .actions .btn-outline {
  border-color: var(--gold);
  /* background: var(--gold); */
  background: transparent;
  color: #185592;
}
.hero .actions .btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fffffe;
  transform: translateY(-1px);
}

.panel, .hero-card, .card, .cta { background: var(--surface); border-radius: 15px; }
.hero-card, .card, .cta { border: 1px solid var(--border); }
.panel, .hero-card, .cta { padding: 28px; }
.hero-card {
  padding: 10px;
  background: transparent;
  border-color: transparent;
}
.hero-card img {
  height: 600px;
  object-fit: contain;
  object-position: bottom center;
  border-radius: 8px;
  display: block;
  margin: 0 auto -18px;
}

.stats-wrap {
  margin-top: -100px;
  position: relative;
  z-index: 2;
  width: 100%;
  margin-inline: auto;
}
.stats-marquee-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #e6edf7;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
}
.stats-demo-image {
  margin: 0;
  border-right: 1px solid var(--border);
}
.stats-demo-image img {
  width: 100%;
  height: 100%;
  min-height: 130px;
  object-fit: cover;
  display: block;
}
.stats-marquee {
  overflow: hidden;
}
.stats-marquee-track {
  display: flex;
  width: max-content;
  animation: stats-scroll 20s linear infinite;
}
.stat-item {
  min-width: 190px;
  padding: 26px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item h3 {
  margin: 0;
  color: #212121;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.stat-item p {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: #555555;
}

@keyframes stats-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.stats-wrap.stats-inline {
  width: 100%;
  z-index: 1;
}
.logos-bridge {
  margin-top: 0;
  background: linear-gradient(180deg, #f3f8fe 0 50%, #ffffff 50% 100%);
  padding: 0 0 28px;
}
.stats-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); background: #fff; border: 1px solid #e6edf7; border-radius: 15px; overflow: hidden; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12); width: 100%; }
.stats-grid article {
  min-width: 0;
  background-color: var(--surface);
  padding: 34px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stats-grid article:last-child { border-right: 0; }
.stats-grid h3 {
  margin: 0;
  color: #212121;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.stats-grid p { margin: 8px 0 0; font-size: 0.95rem; color: #555555; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}


.project-actions {
  margin-top: 26px;
  text-align: center;
}
.project-stats-inline {
  margin-top: 48px;
  width: 100%;
}
.about-more-btn,
.project-more-btn {
  text-align: center;
}
.about-more-btn {
  margin-top: 6px;
}
.project-card {
  position: relative;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 14px;
  overflow: hidden;
  min-height: 550px;
}
.project-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.project-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 28px 30px;
  background:
    linear-gradient(182deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 1) 60%, #ffffff 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 48%, #ffffff 58%, #ffffff 100%);
}
.project-content h4 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: #212121;
}
.project-content p {
  margin: 0 0 14px;
  color: #555555;
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 92%;
}
.project-link {
  color: var(--highlight);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  width: fit-content;
}
.project-link:hover {
  color: #0f3d6b;
}

@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    margin-top: 24px;
    margin-inline: auto;
  }
.container {
    padding-left: 20px;
    padding-right: 20px;
}

  .project-card {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: auto !important;
    background: #ffffff;
    border: 1px solid #dbe6f5;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(11, 41, 77, 0.08);
    overflow: hidden;
  }

  .project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    display: block;
  }

  .project-content {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    padding: 20px 22px 24px;
    background: #ffffff;
  }

  .project-content h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .project-content p {
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: none;
    margin-bottom: 12px;
  }

  .project-link {
    margin-top: auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .project-card {
    position: relative;
    min-height: auto !important;
    background: #ffffff;
    border: 1px solid #dbe6f5;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(11, 41, 77, 0.08);
    overflow: hidden;
  }

  .project-card img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .project-content {
    position: relative;
    margin-left: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 22px 26px;
    background: #ffffff;
  }

  .project-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .project-content p {
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: none;
    margin-bottom: 12px;
  }

  .project-link {
    margin-top: auto;
    width: fit-content;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .project-actions {
    display: none;
  }

  .gear-gif {
    width: 15% !important;
  }

  .contact-us-gif {
    display: none !important;
  }
}

.icon-slider {
  border: 1px solid #edf1f7;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 41, 77, 0.08);
  padding: 20px;
}
.icon-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-scroll 22s linear infinite;
}
.logo-slide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 88px;
  padding: 0 20px;
  border-right: 1px solid #f1f3f8;
  color: #a2a7b0;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.09em;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.logo-slide img {
  max-width: 150px;
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-slide:last-child { border-right: 0; }

@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.split-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.about-section {
  background: #ffffff;
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.about-layout > .about-gallery {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}
.about-layout > .about-content {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.about-intro p:last-child {
  margin-bottom: 0;
}
.about-content .about-more-btn {
  margin-top: 16px;
  align-self: flex-start;
}
.about-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}
.about-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-col-left img {
  flex: 1 1 auto;
  min-height: 414px;
}
.about-col-right img {
  flex: 1 1 0;
  min-height: 200px;
}
.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.experience-box {
  position: static;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 15px;
  padding: 12px 14px;
  min-height: auto;
  display: grid !important;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  justify-items: center;
  gap: 2px;
  width: fit-content;
  max-width: 100%;
  min-width: 100%;
  margin-inline: auto;
  text-align: center;
  white-space: normal;
}
.experience-box strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--primary-dark);
  font-weight: 600;
  margin: 0;
}
.experience-box span {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 1301px) {
  .experience-box {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    width: 100%;
    min-height: 110px;
    padding: 20px 18px;
    white-space: nowrap;
  }
  .experience-box strong {
    font-size: 3rem;
  }
  .experience-box span {
    display: inline-block;
    font-size: 1rem;
    margin-top: 4px;
  }
}
.mini-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 16px; }
.mini-cols h4 {
  margin-bottom: 6px;
  font-size: 1.6rem;
}
.mini-cols p { font-size: 0.95rem; }
.mini-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f4f6f8;
  padding: 7px;
  box-sizing: border-box;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.augmentify-section {
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
}
.augmentify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}
.augmentify-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  border: 1px solid #dfe9f6;
}
.augmentify-content {
  background: #fff;
  border: 1px solid #e4edf8;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(11, 41, 77, 0.08);
}
.augmentify-content h2 {
  margin-top: 4px;
  margin-bottom: 12px;
}
.augmentify-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 12px 0 18px;
}
.augmentify-points > div {
  border: 1px solid #e8eef8;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fbfdff;
}
.augmentify-points h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}
.augmentify-points p {
  margin: 0;
  font-size: 0.9rem;
}

.working-section {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  padding-bottom: 84px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 5%, rgb(243, 248, 254) 100%);
}
.working-section .container {
  position: relative;
  z-index: 1;
}
.integration-slot {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
  line-height: 0;
}
.integration-gif {
  opacity: 1;
  width: 10%;
  aspect-ratio: 1;
  display: block;
  margin-left: auto;
  background-color: #C69320;
  -webkit-mask: url("assets/integration.gif") no-repeat center / contain;
  mask: url("assets/integration.gif") no-repeat center / contain;
}

.gear-slot {
  position: relative;
  width: 100%;
  min-height: clamp(100px, 18vw, 150px);
  pointer-events: none;
  line-height: 0;
}
.gear-gif {
  position: absolute;
  left: 1%;
  top: 0%;
  width: 12%;
  height: auto;
  display: block;
}

.work-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.workMainhead {
  color: #333;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
}
.spanChange {
  color: #333;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
}
.greenspan { color: var(--accent); }
.workCol2 p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}
.work-steps {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 18px;
  position: relative;
}

.work-step {
  display: contents;
}

.work-step:nth-child(1) .work-step-marker { grid-column: 1; grid-row: 1; }
.work-step:nth-child(1) .WorkIconContent { grid-column: 1; grid-row: 2; }
.work-step:nth-child(2) .work-step-marker { grid-column: 2; grid-row: 1; }
.work-step:nth-child(2) .WorkIconContent { grid-column: 2; grid-row: 2; }
.work-step:nth-child(3) .work-step-marker { grid-column: 3; grid-row: 1; }
.work-step:nth-child(3) .WorkIconContent { grid-column: 3; grid-row: 2; }
.work-step:nth-child(4) .work-step-marker { grid-column: 4; grid-row: 1; }
.work-step:nth-child(4) .WorkIconContent { grid-column: 4; grid-row: 2; }

.work-step-marker {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .work-steps {
    grid-template-columns: auto 1fr;
    grid-template-rows: none;
    row-gap: 14px;
    column-gap: 12px;
  }

  .work-steps::before {
    display: block;
    content: "";
    position: absolute;
    left: 26px;
    width: 3px;
    top: 36px;
    bottom: 36px;
    height: auto;
    right: auto;
    margin: 0;
    transform: none;
    z-index: 0;
    background-image: radial-gradient(circle, var(--gold) 2px, transparent 2.5px);
    background-size: 3px 12px;
    background-repeat: repeat-y;
    background-position: center top;
    pointer-events: none;
  }

  .work-step-marker::after {
    display: none;
  }

  .work-step:nth-child(1) .work-step-marker,
  .work-step:nth-child(1) .WorkIconContent,
  .work-step:nth-child(2) .work-step-marker,
  .work-step:nth-child(2) .WorkIconContent,
  .work-step:nth-child(3) .work-step-marker,
  .work-step:nth-child(3) .WorkIconContent,
  .work-step:nth-child(4) .work-step-marker,
  .work-step:nth-child(4) .WorkIconContent {
    grid-column: auto;
    grid-row: auto;
  }

  .work-step-marker {
    justify-content: flex-start;
    align-self: stretch;
    padding-top: 10px;
    min-height: 100%;
  }

  .workCircle {
    margin: 0;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }
}

@media (min-width: 801px) {
  .work-steps::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 26px;
    width: 75%;
    margin-inline: auto;
    height: 3px;
    transform: translateY(-50%);
    z-index: 0;
    background-image: radial-gradient(circle, var(--gold) 2px, transparent 2.5px);
    background-size: 12px 3px;
    background-repeat: repeat-x;
    background-position: center;
    pointer-events: none;
  }
}

@media (min-width: 801px) and (max-width: 1024px) {
  .work-steps {
    column-gap: 7px;
  }
}

.workCircle {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.working-section .workCircle {
  background: #185592;
}
.WorkIconContent {
  background: #ffffff;
  border: 0;
  border-radius: 12px;
  padding-left: 18px;
  padding-top: 18px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: flex;
  flex-direction: column;
  min-height: 168px;
}
.WorkIconContent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 41, 78, 0.14);
}
.WorkIconContent h4 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: #212121;
}
.WorkIconContent p {
  margin: 0;
  color: #555555;
  font-size: 0.92rem;
  line-height: 1.6;
}
.work-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  padding-top: 10px;
}
.WorkIconContent .service-icon {
  width: 100px;
  height: 80px;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 0;
  border-radius: 100% 0 0 0;
  background: var(--section-surface);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.WorkIconContent .service-icon img {
  width: 169px;
  height: 60px;
  object-fit: contain;
}

.cards-6 { margin-top: 16px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.cards-3 { margin-top: 16px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.card { padding: 20px; }
.card h4 { color: #212121; font-size: 1.6rem; }
.card p { font-size: 0.93rem; }
.card {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 41, 78, 0.14);
}
.card-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--highlight);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}
.learn-more::after {
  content: ">";
  font-size: 0.9rem;
  line-height: 1;
}
.learn-more:hover {
  color: var(--accent-dark);
}
.service-icon {
  width: 88px;
  height: 72px;
  border-radius: 100% 0 0 0;
  background: var(--section-surface);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -20px;
  margin-bottom: -20px;
}
.service-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
margin-left: 15px;
}

/* Gold tint for service card PNG icons (#services + Work In Progress) */
#services .service-icon img,
.working-section .service-icon img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(93%) saturate(1357%) hue-rotate(10deg)
    brightness(93%) contrast(87%);
}
.blog-card { padding: 12px; }
.blog-card img { width: 100%; height: 170px; object-fit: cover; border-radius: 10px; margin-bottom: 10px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.quote p { font-style: italic; }
.quote h4 { margin-bottom: 2px; }
.quote small { color: var(--muted); }
.testimonial-slider {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}
.testimonial-viewport {
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  gap: 16px;
  transition: transform 280ms ease;
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc(50% - 8px);
  min-width: 0;
}
.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.cta { display: flex; gap: 16px; align-items: center; justify-content: space-between; }

.site-footer { padding: 96px 0 64px; background: linear-gradient(285deg, #0a294e -1.5%, #0b294d 100%); }
.site-footer h4 { color: #fff; margin-bottom: 8px; font-size: 1rem; }
.site-footer p { margin: 0 0 6px; font-size: 0.95rem; color: #cfdbed; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr)); gap: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); margin-top: 12px; padding-top: 12px; }

@media (max-width: 767px) {
  .hero-grid,
  .split-2 { grid-template-columns: 1fr; }
  .cards-6, .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  /* About: same structure as 768–1024, stacked — text then images */
  .about-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 14px;
  }


    .about-layout .about-more-btn {
display:none;
}

  .about-layout > .about-gallery {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 10px;
padding: 10px;
  }

  .about-layout .about-col {
    gap: 10px;
    min-width: 0;
  }

  .about-layout .about-col-left img {
    min-height: 260px;
  }

  .about-layout .about-col-right img {
    min-height: 125px;
  }

  .about-layout > .about-content {
    display: contents;
  }

  .about-layout .about-intro {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-left: 0;
  }

  .about-layout .about-mini-cols {
    grid-column: 1;
    grid-row: 3;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 14px 50px !important;
    margin-top: 20px;
    margin-bottom: -20px;
  }

  .about-layout .about-more-btn {
    grid-column: 1;
    grid-row: 4;
    margin-top: 0;
  }

  .about-content.panel {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .about-mini-cols h4 {
    font-size: 1.35rem;
  }

  .about-mini-cols p {
    font-size: 0.9rem;
  }

 
}


@media (max-width: 767px) {

    #projects.section-blue {
        margin-bottom: -70px;
    }
  .hero {
    padding-top: 35px;
    padding-bottom: 35px;
  }

.about-section {
    padding-top: 50px;
 padding-bottom: 50px !important;
}

.working-section {
   
    padding-bottom: 50px;
}


#projects.section-blue {
   
    margin-top: -30px;
}


.gear-gif {
    right: 1%;
    width: 15%;
        left: auto;
}

    .contact-grid {
        margin-top: -20px;
    }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
  }

  .hero-grid > div:first-child {
    width: 100%;
    max-width: 100%;
  }

  .hero-card {
    display: none;
  }

  .stats-wrap {
    margin-top: 0px;
  }

  .logos-bridge {
    padding-bottom: 0;
  }

.contact-us-gif {
    display: none !important;
}


.footer-grid
{
text-align: center;
}

.site-footer p {
    text-align: center;
}

.site-footer
{
padding:50px 0 64px;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
  .stats-wrap {
    margin-top: -60px;
    width: 90%;
    margin-inline: auto;
  }

  #blogs .cards-3 .blog-card:nth-child(3) {
    display: none;
  }

  .hero {
    position: relative;
    padding-top: 60px;
        padding-bottom: 100px;
    overflow: hidden;
  }

  .hero-grid {
    display: block;
    position: relative;
  }

  .hero-grid > div:first-child {
    position: relative;
    z-index: 1;
        width: 70%;
padding-right: 50px;
  }

  .hero-card {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    pointer-events: none;
  }

  .hero-card img {
    max-height: 420px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    object-position: bottom center;
    margin-right: 0;
    padding-top: 70px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 14px 18px;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .about-layout > .about-gallery {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 10px;
  }

  .about-layout .about-col {
    gap: 10px;
    min-width: 0;
  }

  .about-layout .about-col-left img {
    min-height: 260px;
  }

  .about-layout .about-col-right img {
    min-height: 125px;
  }

  .about-layout > .about-content {
    display: contents;
  }

  .about-layout .about-intro {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
margin-left:20px;
  }

  .about-layout .about-mini-cols {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 14px 50px !important;
        margin-top: 20px;
        margin-bottom: -20px;
  }

  .about-layout .about-more-btn {
        grid-column: 1;
    grid-row: 3;
    margin-top: 0;
  }

  .about-content.panel {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .about-mini-cols h4 {
    font-size: 1.35rem;
  }

  .about-mini-cols p {
    font-size: 0.9rem;
  }

  .stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    isolation: isolate;
  }
  .stats-grid article {
    padding: 24px 8px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }
  .stats-grid article:last-child {
    border-right: 0;
  }
  .stats-grid h3 {
    font-size: clamp(1.9rem, 2.7vw, 2.3rem);
  }
  .stats-grid p {
    font-size: 0.88rem;
  }
}


@media (max-width: 767px) {
  .side-cta { display: none; }

.eyebrow::before, .eyebrow::after {
    display:none;
}

.contact-intro
{
padding-top: 20px !important;
}

.hero .actions .btn-outline {
    display: none;
}

  
  .nav-wrap {
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    min-height: 60px;
  }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 1;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 10px;
  }
  .brand:not(.brand-nav-end) {
    order: 2;
    flex: 1 1 auto;
    text-align: center;
    min-width: 0;
    display: inline-flex;
    justify-content: center;
  }
  .brand:not(.brand-nav-end) img {
    max-width: min(58vw, 220px);
    height: 50px;
  }

  .brand-nav-end {
    display: none !important;
  }
  .desktop-cta {
    order: 3;
    flex-shrink: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.65rem;
    white-space: nowrap;
  }
  .main-nav {
    order: 4;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    display: none;
    flex-direction: column;
    z-index: 50;
    box-shadow: 0 12px 28px rgba(10, 41, 78, 0.12);
  }
  .main-nav.open { display: flex; }
  .cards-6, .cards-3, .stats-grid, .footer-grid, .project-grid { grid-template-columns: 1fr; }
  .stats-marquee-wrap {
    grid-template-columns: 1fr;
  }
  .stats-demo-image {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .stat-item {
    min-width: 160px;
    padding: 20px 10px;
  }
  .testimonial-card { flex-basis: 100%; }
  .icon-track { animation-duration: 18s; }
  .stats-grid article { border-right: 0; border-bottom: 1px solid var(--border); }
  .stats-grid article:last-child { border-bottom: 0; }
  .cta { flex-direction: column; align-items: center; }
  .augmentify-grid { grid-template-columns: 1fr; }
  .augmentify-media img {
    height: 320px;
  }
  .augmentify-content {
    padding: 20px;
  }
  .work-top {
    grid-template-columns: 1fr;
  }

  .logo-slide {
    min-width: 130px;
    height: 64px;
    font-size: 0.8rem;
  }

  /* Center-align all main content on mobile */
  .notification-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 0;
  }

  .notification-contact {
    justify-content: center;
  }

  .notification-social {
    justify-content: center;
    padding-top: 4px;
  }

  main h1,
  main h2,
  main h3,
  main h4,
  main p,
  main .lead,
  main li {
    text-align: center;
  }

  .eyebrow {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
  }

  .hero .eyebrow {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .about-intro,
  .about-mini-cols,
  .about-mini-cols > div,
  .about-layout .about-more-btn {
    text-align: center;
  }

  .about-content .about-more-btn {
    align-self: center;
    margin-inline: auto;
  }

  .mini-title {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  .work-top,
  .workCol1,
  .workCol2,
  .WorkIconContent,
  .work-step {
    text-align: center;
  }

  .work-step-marker {
    justify-content: center;
  }

  .work-card-footer {
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
  }

  .working-section .service-icon,
  .WorkIconContent .service-icon {
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
  }

  .project-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .project-link {
    margin-left: auto;
    margin-right: auto;
  }

  .project-actions,
  .project-more-btn {
    text-align: center;
  }

  .card,
  .blog-card,
  .quote,
  .testimonial-card {
    text-align: center;
  }

  .card-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .card-footer .service-icon {
    margin-right: 0;
    margin-bottom: 0;
    margin-inline: auto;
  }

  .learn-more,
  .blog-card .learn-more {
    display: inline-flex;
    margin-inline: auto;
  }

  .stats-grid article,
  .stat-item {
    text-align: center;
  }

  .contact-intro,
  .contact-heading,
  .contact-eyebrow {
    text-align: center;
  }

  .contact-heading-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
  }

  .contact-email {
    justify-content: center;
    margin-inline: auto;
  }

  .contact-us-gif {
    margin-inline: auto;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form-status {
    text-align: left;
  }

  .contact-form-submit {
    display: block;
    margin-inline: auto;
  }

  .augmentify-content,
  .augmentify-points > div {
    text-align: center;
  }

  .cta {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .main-nav.open {
    align-items: center;
  }

  .main-nav.open a {
    text-align: center;
    width: 100%;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 12px;
    column-gap: 10px;
    align-items: center;
  }

  .brand:not(.brand-nav-end) {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    flex: unset;
    order: unset;
  }
  .brand:not(.brand-nav-end) img {
    max-width: min(72vw, 210px);
    height: 34px;
  }

  .brand-nav-end {
    display: none !important;
  }

  .menu-btn {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    order: unset;
  }

  .desktop-cta {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    order: unset;
  }

  .main-nav {
    order: unset;
  }
}

@media (max-width: 500px) {
  .nav-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .nav-wrap > .brand:not(.brand-nav-end) {
    display: none;
  }

.gear-gif {
    right: 1%;
    width: 25%;
        left: auto;
}

  .desktop-cta {
    display: none !important;
  }

  .brand-nav-end {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    order: 3;
    margin-left: auto;
    text-align: right;
  }

  .brand-nav-end img {
    height: 36px;
    width: auto;
    max-width: min(42vw, 160px);
    margin-left: auto;
  }

  .menu-btn {
    order: 1;
    flex: 0 0 auto;
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
  }

  .about-layout .about-mini-cols {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100%;
  }

  .about-layout .about-mini-cols > div {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 420px) and (max-width: 767px) {
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }




  .stats-grid article {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stats-grid article:nth-child(2n) {
    border-right: 0;
  }

  .stats-grid article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .stats-grid article:last-child {
    border-bottom: 0;
  }
}

#services,
#testimonials,
#blogs,
#project-stats {
  display: none;
}

.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.contact-intro {
  padding-top: 8px;
}

.contact-heading-wrap {
  display: grid;
  gap: clamp(14px, 2.5vw, 22px);
  width: fit-content;
  max-width: 100%;
  margin-bottom: 28px;
}

.contact-heading-wrap .contact-heading {
  margin-bottom: 0;
}

.contact-us-gif {
  width: 70%;
  height: auto;
  display: block;
opacity:0.7;
}

.contact-eyebrow {
  margin: 0 0 18px;
  color: var(--highlight);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-heading {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.12;
  color: var(--ink);
  max-width: 14ch;
}

mark {
  background: rgba(24, 85, 146, 0.14);
  color: inherit;
  padding: 0.02em 0.18em;
  border-radius: 8px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-email:hover {
  color: var(--primary);
}

.contact-email-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--section-surface);
  color: var(--gold);
  border: 1px solid rgba(24, 85, 146, 0.08);
  flex-shrink: 0;
}

.contact-email-icon .material-symbols-outlined {
  font-size: 22px;
}

.contact-form-panel {
  background: #f4f6f8;
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
}

.contact-form-title {
  margin: 0 0 22px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a94a6;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-submit {
  justify-self: start;
  margin-top: 4px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.contact-form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.contact-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.contact-form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
}

.contact-form-status.is-success {
  background: #e8f5ee;
  color: #1f6b42;
}

.contact-form-status.is-error {
  background: #fdecec;
  color: #9b2c2c;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    max-width: none;
  }
}


@media (min-width: 1025px) and (max-width: 1280px) {
.margincss
{
margin-top:-100px;
}
}


