@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

/* ===== mmt/src/App.css ===== */



/* ===== mmt/src/components/About/style.css ===== */
.about-wrapper {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-color: white;
  background-position: center;
  overflow-x: hidden;
}

.about-section {
  margin: 60px 0 0 0;
}

.about-line::after {
    content: "";
    display: block;
    width: 15%;
    height: 2px;
    background: white;
    margin: 10px auto 0;
}

.about-bg {
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url("../assets/about/1.jpg");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-bg h4 {
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  transition: color 0.5s ease;
}

.about-bg h2 {
  font-size: 3rem;
  text-transform: uppercase;
  padding: 0.4rem 0;
  letter-spacing: 4px;
  color: white;
  transition: color 0.5s ease;
  margin: 0;
  padding: 0;
}

.line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 200px;
  margin: 0;
  padding: 0;
}

.line div {
  margin: 0 0.2rem;
}

.line div:nth-child(1),
.line div:nth-child(3) {
  height: 3px;
  width: 70px;
  background: #f7327a;
  border-radius: 5px;
}

.line div:nth-child(2) {
  width: 10px;
  height: 10px;
  background: #f7327a;
  border-radius: 50%;
}

/* About text */

.about-text {
  max-width: 600px;
  margin: 20px auto;
}

.container {
  padding: 20px;
}

.about-text h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.3s ease;
  text-align: center;
}

.about-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.about-feature h4 {
  font-size: 1.2rem;
  /* color: #037ef3; */
  color: black;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.char {
  transform: translateY(115px);
  transition: transform 0.5s;
}

.about-info {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  color: #037ef3;
}

h4 {
  color: #212529;
}

/* New card */

.new-card {
  background-image: url("../assets/about/so-white.png");
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 50px auto;
  overflow: hidden;
  padding: 20px;
}

.new-container h2 {
  text-align: center;
  margin-top: 5%;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
}

.new-container p {
  margin-top: 3%;
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.3s ease;
  text-align: justify;
}

/* media query */

@media (max-width: 576px) {
  .about-bg h2 {
    font-size: 2rem;
  }

  .about-bg h3 {
    font-size: 1rem;
  }

  .about-text h3 {
    font-size: 1.2rem;
  }

  .about-info {
    font-size: 0.9rem;
  }

  .new-container h2 {
    font-size: 1.5rem;
  }

  .new-container p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-bg h2 {
    font-size: 2.5rem;
  }

  .about-bg h3 {
    font-size: 1.1rem;
  }

  .about-details {
    flex-direction: column;
    align-items: center;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

  .about-info {
    font-size: 1rem;
  }

  .new-container h2 {
    font-size: 1.3rem;
  }

  .main-container {
    margin-top: 60px;
  }
}

@media (max-width: 992px) {
  .about-details {
    flex-direction: column;
  }
}







.hero-about {
  background: url("../assets/about/blob-top-left.png"), url("../assets/about/blob-top-right.png"), url("../assets/about/blob-bottom-left.png"), url("../assets/about/blob-bottom-right.png"), url("../assets/about/blob-center.png"), url("../assets/about/bg-bottom.png");
  background-position: left 0px top 0px, right 0px top 0px, left 0px bottom 0px, right 0px bottom 0px, center center, center bottom;
  background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
  .hero-header {
    padding: 6rem 0 9rem 0;
  }
}

.text-white {
  color: white;
}

.animated.slideInDown {
  animation: slideInDown 1s ease-in-out;
}

@keyframes slideInDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.line div {
  margin: 0 0.2rem;
}

.line div:nth-child(1),
.line div:nth-child(3) {
  height: 3px;
  width: 70px;
  background: #f7327a;
  border-radius: 5px;
}

.line {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.line div:nth-child(2) {
  width: 10px;
  height: 10px;
  background: #f7327a;
  border-radius: 50%;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-top: 1rem;
}

.breadcrumb-item {
  color: white;
}

.breadcrumb-item.active {
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero-about h1 {
    text-align: center;
    margin: 0 auto;
  }
}



/* ===== mmt/src/components/AllBlogs/BlogAppDevelopment/style.css ===== */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.blog-app-wrapper {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-image: url("https://www.toptal.com/designers/subtlepatterns/uploads/triangle-mosaic.png");
  overflow-x: hidden;
}

p {
  text-align: justify;
}

.blog-container {
  padding: 20px;
  max-width: 1200px;
  margin: 200px 0 0 60px;
}

.header {
  margin-bottom: 20px;
}

.small-text {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #555;
  margin: 0 0 20px 0;
}

.category,
.separator,
.date {
  margin: 0;
}

.category {
  font-size: 15px;
  font-weight: bold;
  color: blue;
}

.separator {
  color: blue;
}

.date {
  font-size: 18px;
  color: #777;
}

.header h1 {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 10px 0 10px 0;
  width: 100%;
}

.content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-image {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details .written-by {
  font-size: 14px;
  margin: 0;
  color: #777;
}

.details a {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
  text-decoration: none;
}

.details a:hover {
  color: blue;
}

.blog-container .blog-content {
  margin: 80px 0 0 0;
}

.blog-content img {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 0 20px 0;
}

.blog-content h4 {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 10px 0 10px 0;
}

.blog-content .span-heading {
  color: #0b48ed;
  font-size: 16px;
  font-weight: bold;
}

.blog-container.blog-content p {
  color: #212529;
  font-size: 16px;
  font-weight: bold;
}

.blog-container .blog-content h1 {
  margin: 20px 0 20px;
}

/* card */

.bapp-card-title {
  text-align: center;
  color: blue;
  font-size: 1.5em;
}

.bapp-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.bapp-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 340px;
  margin: 10px;
}

.bapp-card img {
  width: 100%;
  height: 40%;
  padding: 10px 10px 10px 10px;
}

.bapp-card-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.small-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #555;
}

.date {
  font-size: 14px;
  color: blue;
}

h3 {
  padding: 10px;
  font-size: 18px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
}

.learn-more {
  display: block;
  padding: 10px;
  margin: 0 0 40px 0;
  color: #037ef3;
  text-decoration: none;
  font-weight: bold;
  text-align: left;
}

.learn-more:hover {
  color: #4579aa;
}

.learn-more i {
  margin-left: 5px;
}

.bapp-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .bapp-card-container {
    flex-direction: column;
    align-items: center;
  }

  .bapp-card {
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .bapp-card-container {
    flex-direction: row;
  }
}

/* End Card */

/* Media Query */

@media (max-width: 768px) {
  .blog-container {
    margin: 100px 20px;
    padding: 10px;
  }

  .header {
    margin-bottom: 15px;
  }

  .small-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .category,
  .separator,
  .date {
    font-size: 16px;
  }

  h1 {
    font-size: 1.5em;
    margin: 0 0 20px 0;
  }

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

  .blog-image {
    width: 100px;
    max-width: none;
    height: auto;
  }

  .details {
    align-items: flex-start;
  }

  .details .written-by {
    font-size: 12px;
  }

  .details a {
    font-size: 16px;
  }

  .blog-content img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .small-text {
    font-size: 14px;
    gap: 6px;
  }

  .category,
  .separator,
  .date {
    font-size: 14px;
  }

  h1 {
    font-size: 1.2em;
  }

  .details .written-by {
    font-size: 10px;
  }

  .details a {
    font-size: 14px;
  }
}



/* ===== mmt/src/components/AllBlogs/BlogArtificialIntelligence/style.css ===== */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.bai-wrapper {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-image: url("https://www.toptal.com/designers/subtlepatterns/uploads/triangle-mosaic.png");
  overflow-x: hidden;
}

p {
  text-align: justify;
}

.blog-container {
  padding: 20px;
  max-width: 1200px;
  margin: 200px 0 0 60px;
}

.header {
  margin-bottom: 20px;
}

.small-text {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #555;
  margin: 0 0 20px 0;
}

.category,
.separator,
.date {
  margin: 0;
}

.category {
  font-size: 15px;
  font-weight: bold;
  color: blue;
}

.separator {
  color: blue;
}

.date {
  font-size: 18px;
  color: #777;
}

.header h1 {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 10px 0 10px 0;
  width: 100%;
}

.content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-image {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details .written-by {
  font-size: 14px;
  margin: 0;
  color: #777;
}

.details a {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
  text-decoration: none;
}

.details a:hover {
  color: blue;
}

.blog-container .blog-content {
  margin: 80px 0 0 0;
}

.blog-content img {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 0 20px 0;
}

.blog-content h4 {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 10px 0 10px 0;
}

.blog-content .span-heading {
  color: #0b48ed;
  font-size: 16px;
  font-weight: bold;
}

.blog-container.blog-content p {
  color: #212529;
  font-size: 16px;
  font-weight: bold;
}

.blog-container .blog-content h1 {
  margin: 20px 0 20px;
}

/* card */

.bai-card-title {
  text-align: center;
  color: blue;
  font-size: 1.5em;
}

.bai-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.bai-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 340px;
  margin: 10px;
}

.bai-card img {
  width: 100%;
  height: 40%;
  padding: 10px 10px 10px 10px;
}

.bai-card-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.small-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #555;
}

.date {
  font-size: 14px;
  color: blue;
}

h3 {
  padding: 10px;
  font-size: 18px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
}

.learn-more {
  display: block;
  padding: 10px;
  margin: 0 0 40px 0;
  color: #037ef3;
  text-decoration: none;
  font-weight: bold;
  text-align: left;
}

.learn-more:hover {
  color: #4579aa;
}

.learn-more i {
  margin-left: 5px;
}

.bai-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .bai-card-container {
    flex-direction: column;
    align-items: center;
  }

  .bai-card {
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .bai-card-container {
    flex-direction: row;
  }
}

/* End Card */

/* Contact Section */

.contact-section {
  background-color: #e6dbdb;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-form {
  background-image: url("../assets/contact/bg.jpg");
  background-size: cover;
  background-position: center;
  max-width: 600px;
  margin-right: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 1.8em;
  text-align: center;
}

.contact-form h5 {
  font-size: 1.5em;
  text-align: center;
  margin: 20px 0;
  color: #0b48ed;
}

.contact-form .line div {
  margin: 0 0.2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8fcce0;
  outline: none;
}

.contact-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #193ac0;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 30px;
  width: 100%;
  transition: transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #0b48ed;
}

.contact-form button:active {
  transform: scale(0.98);
}

.contact-image {
  flex: 1;
  max-width: 100%;
  text-align: center;
  margin-right: 20px;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  animation: moveUpDown 2s infinite;
}

.our-services {
  color: blue;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Media Query */

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 10px;
  }

  .contact-form {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .contact-image {
    max-width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .contact-form h2 {
    font-size: 1.5em;
  }

  .contact-form h3 {
    font-size: 1.2em;
  }
}

/* End Contact Section */

/* Media Query */

@media (max-width: 768px) {
  .blog-container {
    margin: 100px 20px;
    padding: 10px;
  }

  .header {
    margin-bottom: 15px;
  }

  .small-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .category,
  .separator,
  .date {
    font-size: 16px;
  }

  h1 {
    font-size: 1.5em;
    margin: 0 0 20px 0;
  }

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

  .blog-image {
    width: 100px;
    max-width: none;
    height: auto;
  }

  .details {
    align-items: flex-start;
  }

  .details .written-by {
    font-size: 12px;
  }

  .details a {
    font-size: 16px;
  }

  .blog-content img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .small-text {
    font-size: 14px;
    gap: 6px;
  }

  .category,
  .separator,
  .date {
    font-size: 14px;
  }

  h1 {
    font-size: 1.2em;
  }

  .details .written-by {
    font-size: 10px;
  }

  .details a {
    font-size: 14px;
  }
}



/* ===== mmt/src/components/AllBlogs/BlogEcommerceDevelopment/style.css ===== */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.becommerce-wrapper {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-image: url("https://www.toptal.com/designers/subtlepatterns/uploads/triangle-mosaic.png");
  overflow-x: hidden;
}

p {
  text-align: justify;
}

.blog-container {
  padding: 20px;
  max-width: 1200px;
  margin: 200px 0 0 60px;
}

.header {
  margin-bottom: 20px;
}

.small-text {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #555;
  margin: 0 0 20px 0;
}

.category,
.separator,
.date {
  margin: 0;
}

.category {
  font-size: 15px;
  font-weight: bold;
  color: blue;
}

.separator {
  color: blue;
}

.date {
  font-size: 18px;
  color: #777;
}

.header h1 {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 10px 0 10px 0;
  width: 100%;
}

.content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-image {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details .written-by {
  font-size: 14px;
  margin: 0;
  color: #777;
}

.details a {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
  text-decoration: none;
}

.details a:hover {
  color: blue;
}

.blog-container .blog-content {
  margin: 80px 0 0 0;
}

.blog-content img {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 0 20px 0;
}

.blog-content h4 {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 10px 0 10px 0;
}

.blog-content .span-heading {
  color: #0b48ed;
  font-size: 16px;
  font-weight: bold;
}

.blog-container.blog-content p {
  color: #212529;
  font-size: 16px;
  font-weight: bold;
}

.blog-container .blog-content h1 {
  margin: 20px 0 20px;
}

/* card */

.becommerce-card-title {
  text-align: center;
  color: blue;
  font-size: 1.5em;
}

.becommerce-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.becommerce-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 340px;
  margin: 10px;
}

.becommerce-card img {
  width: 100%;
  height: 40%;
  padding: 10px 10px 10px 10px;
}

.becommerce-card-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.small-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #555;
}

.date {
  font-size: 14px;
  color: blue;
}

h3 {
  padding: 10px;
  font-size: 18px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
}

.learn-more {
  display: block;
  padding: 10px;
  margin: 0 0 40px 0;
  color: #037ef3;
  text-decoration: none;
  font-weight: bold;
  text-align: left;
}

.learn-more:hover {
  color: #4579aa;
}

.learn-more i {
  margin-left: 5px;
}

.becommerce-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .becommerce-card-container {
    flex-direction: column;
    align-items: center;
  }

  .becommerce-card {
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .becommerce-card-container {
    flex-direction: row;
  }
}

/* End Card */

/* Contact Section */

.contact-section {
  background-color: #e6dbdb;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-form {
  background-image: url("../assets/contact/bg.jpg");
  background-size: cover;
  background-position: center;
  max-width: 600px;
  margin-right: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 1.8em;
  text-align: center;
}

.contact-form h5 {
  font-size: 1.5em;
  text-align: center;
  margin: 20px 0;
  color: #0b48ed;
}

.contact-form .line div {
  margin: 0 0.2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8fcce0;
  outline: none;
}

.contact-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #193ac0;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 30px;
  width: 100%;
  transition: transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #0b48ed;
}

.contact-form button:active {
  transform: scale(0.98);
}

.contact-image {
  flex: 1;
  max-width: 100%;
  text-align: center;
  margin-right: 20px;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  animation: moveUpDown 2s infinite;
}

.our-services {
  color: blue;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Media Query */

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 10px;
  }

  .contact-form {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .contact-image {
    max-width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .contact-form h2 {
    font-size: 1.5em;
  }

  .contact-form h3 {
    font-size: 1.2em;
  }
}

/* End Contact Section */

/* Media Query */

@media (max-width: 768px) {
  .blog-container {
    margin: 100px 20px;
    padding: 10px;
  }

  .header {
    margin-bottom: 15px;
  }

  .small-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .category,
  .separator,
  .date {
    font-size: 16px;
  }

  h1 {
    font-size: 1.5em;
    margin: 0 0 20px 0;
  }

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

  .blog-image {
    width: 100px;
    max-width: none;
    height: auto;
  }

  .details {
    align-items: flex-start;
  }

  .details .written-by {
    font-size: 12px;
  }

  .details a {
    font-size: 16px;
  }

  .blog-content img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .small-text {
    font-size: 14px;
    gap: 6px;
  }

  .category,
  .separator,
  .date {
    font-size: 14px;
  }

  h1 {
    font-size: 1.2em;
  }

  .details .written-by {
    font-size: 10px;
  }

  .details a {
    font-size: 14px;
  }
}



/* ===== mmt/src/components/AllBlogs/BlogMachineLearning/style.css ===== */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.bmachine-wrapper {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-image: url("https://www.toptal.com/designers/subtlepatterns/uploads/triangle-mosaic.png");
  overflow-x: hidden;
}

p {
  text-align: justify;
}

.blog-container {
  padding: 20px;
  max-width: 1200px;
  margin: 200px 0 0 60px;
}

.header {
  margin-bottom: 20px;
}

.small-text {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #555;
  margin: 0 0 20px 0;
}

.category,
.separator,
.date {
  margin: 0;
}

.category {
  font-size: 15px;
  font-weight: bold;
  color: blue;
}

.separator {
  color: blue;
}

.date {
  font-size: 18px;
  color: #777;
}

.header h1 {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 10px 0 10px 0;
  width: 100%;
}

.content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-image {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details .written-by {
  font-size: 14px;
  margin: 0;
  color: #777;
}

.details a {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
  text-decoration: none;
}

.details a:hover {
  color: blue;
}

.blog-container .blog-content {
  margin: 80px 0 0 0;
}

.blog-content img {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 0 20px 0;
}

.blog-content h4 {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 10px 0 10px 0;
}

.blog-content .span-heading {
  color: #0b48ed;
  font-size: 16px;
  font-weight: bold;
}

.blog-container.blog-content p {
  color: #212529;
  font-size: 16px;
  font-weight: bold;
}

.blog-container .blog-content h1 {
  margin: 20px 0 20px;
}

/* card */

.bmachine-card-title {
  text-align: center;
  color: blue;
  font-size: 1.5em;
}

.bmachine-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.bmachine-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 340px;
  margin: 10px;
}

.bmachine-card img {
  width: 100%;
  height: 40%;
  padding: 10px 10px 10px 10px;
}

.bmachine-card-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.small-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #555;
}

.date {
  font-size: 14px;
  color: blue;
}

h3 {
  padding: 10px;
  font-size: 18px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
}

.learn-more {
  display: block;
  padding: 10px;
  margin: 0 0 40px 0;
  color: #037ef3;
  text-decoration: none;
  font-weight: bold;
  text-align: left;
}

.learn-more:hover {
  color: #4579aa;
}

.learn-more i {
  margin-left: 5px;
}

.bmachine-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .bmachine-card-container {
    flex-direction: column;
    align-items: center;
  }

  .bmachine-card {
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .bmachine-card-container {
    flex-direction: row;
  }
}

/* End Card */

/* Media Query */

@media (max-width: 768px) {
  .blog-container {
    margin: 100px 20px;
    padding: 10px;
  }

  .header {
    margin-bottom: 15px;
  }

  .small-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .category,
  .separator,
  .date {
    font-size: 16px;
  }

  h1 {
    font-size: 1.5em;
    margin: 0 0 20px 0;
  }

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

  .blog-image {
    width: 100px;
    max-width: none;
    height: auto;
  }

  .details {
    align-items: flex-start;
  }

  .details .written-by {
    font-size: 12px;
  }

  .details a {
    font-size: 16px;
  }

  .blog-content img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .small-text {
    font-size: 14px;
    gap: 6px;
  }

  .category,
  .separator,
  .date {
    font-size: 14px;
  }

  h1 {
    font-size: 1.2em;
  }

  .details .written-by {
    font-size: 10px;
  }

  .details a {
    font-size: 14px;
  }
}



/* ===== mmt/src/components/AllBlogs/BlogSoftwareDevelopment/style.css ===== */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.bsoftware-wrapper {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-image: url("https://www.toptal.com/designers/subtlepatterns/uploads/triangle-mosaic.png");
  overflow-x: hidden;
}

p {
  text-align: justify;
}

.blog-container {
  padding: 20px;
  max-width: 1200px;
  margin: 200px 0 0 60px;
}

.header {
  margin-bottom: 20px;
}

.small-text {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #555;
  margin: 0 0 20px 0;
}

.category,
.separator,
.date {
  margin: 0;
}

.category {
  font-size: 15px;
  font-weight: bold;
  color: blue;
}

.separator {
  color: blue;
}

.date {
  font-size: 18px;
  color: #777;
}

.header h1 {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 10px 0 10px 0;
  width: 100%;
}

.content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-image {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details .written-by {
  font-size: 14px;
  margin: 0;
  color: #777;
}

.details a {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
  text-decoration: none;
}

.details a:hover {
  color: blue;
}

.blog-container .blog-content {
  margin: 80px 0 0 0;
}

.blog-content img {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 0 20px 0;
}

.blog-content h4 {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 10px 0 10px 0;
}

.blog-content .span-heading {
  color: #0b48ed;
  font-size: 16px;
  font-weight: bold;
}

.blog-container.blog-content p {
  color: #212529;
  font-size: 16px;
  font-weight: bold;
}

.blog-container .blog-content h1 {
  margin: 20px 0 20px;
}

/* card */

.bsoftware-card-title {
  text-align: center;
  color: blue;
  font-size: 1.5em;
}

.bsoftware-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.bsoftware-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 340px;
  margin: 10px;
}

.bsoftware-card img {
  width: 100%;
  height: auto;
  padding: 10px 10px 10px 10px;
}

.bsoftware-card-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.small-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #555;
}

.date {
  font-size: 14px;
  color: blue;
}

h3 {
  padding: 10px;
  font-size: 18px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
}

.learn-more {
  display: block;
  padding: 10px;
  margin: 0 0 40px 0;
  color: #037ef3;
  text-decoration: none;
  font-weight: bold;
  text-align: left;
}

.learn-more:hover {
  color: #4579aa;
}

.learn-more i {
  margin-left: 5px;
}

.bsoftware-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .bsoftware-card-container {
    flex-direction: column;
    align-items: center;
  }

  .bsoftware-card {
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .bsoftware-card-container {
    flex-direction: row;
  }
}

/* End Card */

/* Media Query */

@media (max-width: 768px) {
  .blog-container {
    margin: 100px 20px;
    padding: 10px;
  }

  .header {
    margin-bottom: 15px;
  }

  .small-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .category,
  .separator,
  .date {
    font-size: 16px;
  }

  h1 {
    font-size: 1.5em;
    margin: 0 0 20px 0;
  }

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

  .blog-image {
    width: 100px;
    max-width: none;
    height: auto;
  }

  .details {
    align-items: flex-start;
  }

  .details .written-by {
    font-size: 12px;
  }

  .details a {
    font-size: 16px;
  }

  .blog-content img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .small-text {
    font-size: 14px;
    gap: 6px;
  }

  .category,
  .separator,
  .date {
    font-size: 14px;
  }

  h1 {
    font-size: 1.2em;
  }

  .details .written-by {
    font-size: 10px;
  }

  .details a {
    font-size: 14px;
  }
}



/* ===== mmt/src/components/AllBlogs/BlogWebsiteDevelopment/style.css ===== */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.bwebsite-wrapper {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-image: url("https://www.toptal.com/designers/subtlepatterns/uploads/triangle-mosaic.png");
  overflow-x: hidden;
}

p {
  text-align: justify;
}

.blog-container {
  padding: 20px;
  max-width: 1200px;
  margin: 200px 0 0 60px;
}

.header {
  margin-bottom: 20px;
}

.small-text {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #555;
  margin: 0 0 20px 0;
}

.category,
.separator,
.date {
  margin: 0;
}

.category {
  font-size: 15px;
  font-weight: bold;
  color: blue;
}

.separator {
  color: blue;
}

.date {
  font-size: 18px;
  color: #777;
}

.header h1 {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 10px 0 10px 0;
  width: 100%;
}

.content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-image {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details .written-by {
  font-size: 14px;
  margin: 0;
  color: #777;
}

.details a {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
  text-decoration: none;
}

.details a:hover {
  color: blue;
}

.blog-container .blog-content {
  margin: 80px 0 0 0;
}

.blog-content img {
  width: 60%;
  height: auto;
  margin: 0 0 20px 0;
}

.blog-content h4 {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 10px 0 10px 0;
}

.blog-content .span-heading {
  color: #0b48ed;
  font-size: 16px;
  font-weight: bold;
}

.blog-container.blog-content p {
  color: #212529;
  font-size: 16px;
  font-weight: bold;
}

.blog-container .blog-content h1 {
  margin: 20px 0 20px;
}

/* card */

.bwebsite-card-title {
  text-align: center;
  color: blue;
  font-size: 1.5em;
}

.bwebsite-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.bwebsite-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 340px;
  margin: 10px;
}

.bwebsite-card img {
  width: 100%;
  height: 40%;
  padding: 10px 10px 10px 10px;
}

.bwebsite-card-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.small-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #555;
}

.date {
  font-size: 14px;
  color: blue;
}

h3 {
  padding: 10px;
  font-size: 18px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
}

.learn-more {
  display: block;
  padding: 10px;
  margin: 0 0 40px 0;
  color: #037ef3;
  text-decoration: none;
  font-weight: bold;
  text-align: left;
}

.learn-more:hover {
  color: #4579aa;
}

.learn-more i {
  margin-left: 5px;
}

.bwebsite-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .bwebsite-card-container {
    flex-direction: column;
    align-items: center;
  }

  .bwebsite-card {
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .bwebsite-card-container {
    flex-direction: row;
  }
}

/* End Card */

/* Media Query */

@media (max-width: 768px) {
  .blog-container {
    margin: 100px 20px;
    padding: 10px;
  }

  .header {
    margin-bottom: 15px;
  }

  .small-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .category,
  .separator,
  .date {
    font-size: 16px;
  }

  h1 {
    font-size: 1.5em;
    margin: 0 0 20px 0;
  }

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

  .blog-image {
    width: 100px;
    max-width: none;
    height: auto;
  }

  .details {
    align-items: flex-start;
  }

  .details .written-by {
    font-size: 12px;
  }

  .details a {
    font-size: 16px;
  }

  .blog-content img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .small-text {
    font-size: 14px;
    gap: 6px;
  }

  .category,
  .separator,
  .date {
    font-size: 14px;
  }

  h1 {
    font-size: 1.2em;
  }

  .details .written-by {
    font-size: 10px;
  }

  .details a {
    font-size: 14px;
  }
}



/* ===== mmt/src/components/AllProducts/AdvancedFilesAndUsersManagement/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  outline: none;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.4em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/AdvancPOSSystemWithStockManager/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  outline: none;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/AssetManagementSystem/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  outline: none;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/BarcodeGenerator/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.barcodeg-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .barcodeg-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/BusinessERPSolution/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  /* color: #0b48ed; */
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/DentalClinicManagementSystem/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.dcms-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .dcms-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/EmployeeManagementHRM/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.ems-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .ems-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/HelpDeskSupportSystem/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

.design-container h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hts-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .design-container h1 {
    font-size: 1.5em;
    white-space: normal;
    text-align: center;
    width: 350px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .hts-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.2em;
    white-space: normal;
    text-align: center;
    width: 350px;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/HospitalManagementSystem/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hospital-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .hospital-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/HotelRoomSystem/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hms-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .hms-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/HumanResourceManagement/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/InventoryManagementAndUserManagement/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.imaum-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .imaum-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/LaundryBoxPOSAndOrderManagementSystem/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.lbaoms-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .lbaoms-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/LeaveManagementSystem/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.lm-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .lm-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/LibraryManagementSystem/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/MultiVendorFeedbackSurveySystem/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.mvfs-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .mvfs-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/ParkingAdministrationSystem/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.parkingms-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .parkingms-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/PharmacyManagementSystem/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pharmacyms-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .pharmacyms-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/PointOfSalePOSForRestaurants/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.posr-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .posr-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/PointOfSalePOSPharmacy/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pospharmacy-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .pospharmacy-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/ProjectManagementSystem/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/SchoolCollegeUniversityManagementERP/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/UserManagement/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.um-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .um-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/UserManagementAndRealtimeChatApp/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.umartca-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .umartca-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllProducts/WhatsAppAutoReplyBot/style.css ===== */
.all-products-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.images {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.centered {
  font-size: 2em;
  font-weight: normal;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 0 1 auto;
  margin: 40px 0 30px 0;
  text-align: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  margin: 0 0 40px 0;
  justify-content: center;
}

a .website {
  width: 180px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .images {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .images {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllServices/AppDevelopment/style.css ===== */
.apps-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
  margin-bottom: 10px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.image {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 20px 20px;
  margin-top: 10px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 500;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card input:focus,
.form-card textarea:focus {
  box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
  outline: none;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
  transition: transform 0.2s ease;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.app-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* Media Query */

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .image {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .design-container h1 {
    white-space: nowrap;
  }

  .image {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
  }

  .left-content {
    margin-right: 0;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .app-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllServices/BiDashboard/style.css ===== */
.bi-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  text-align: center;
}

.bi-image {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 20px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card input:focus,
.form-card textarea:focus {
  box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
  outline: none;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease-in-out, transform 0.5s ease-in-out;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .image {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .bi-image {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
    font-size: 14px;
  }
}



/* ===== mmt/src/components/AllServices/DigitalMarketing/style.css ===== */
.digital-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.image {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 20px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card input:focus,
.form-card textarea:focus {
  box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
  outline: none;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
  transition: transform 0.3s ease ease-in-out;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.digital-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .image {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .image {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .digital-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllServices/SeoOptimization/style.css ===== */
.seo-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.seo-image {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 20px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card input:focus,
.form-card textarea:focus {
  box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
  outline: none;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
  transition: transform 0.3s ease ease-in-out;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.seo-feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .image {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .seo-image {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .seo-feature-item {
    flex: 1 1 100%;
    font-size: 12px;
  }
}



/* ===== mmt/src/components/AllServices/SoftwareDevelopment/style.css ===== */
.software-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  height: 60%;
  margin: 130px 30px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.image {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.new-div {
  display: flex;
  justify-content: space-between;
  margin: 80px 20px;
}

.left-content {
  flex: 70%;
  margin-right: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 40px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card input:focus,
.form-card textarea:focus {
  box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
  outline: none;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
  transition: transform 0.3s ease ease-in-out;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .image {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .image {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
    font-size: 14px;
  }
}



/* ===== mmt/src/components/AllServices/WebsiteDevelopment/style.css ===== */
.website-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("../assets/services/bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.design-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  height: 60%;
  margin-top: 100px;
}

h1 {
  margin: 0;
  font-size: 2em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  flex: 1;
  margin: 50px 50px;
  text-align: center;
}

.image {
  width: 30%;
  height: auto;
  display: block;
  margin: 0 150px;
}

.new-div {
  display: flex;
  justify-content: space-between;
}

.left-content {
  flex: 70%;
  margin-right: 10px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 500;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  text-align: center;
}

.card .span-heading {
  color: #0b48ed;
  font-size: 16px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0b48ed;
  text-align: center;
}

.card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

.card p span {
  color: black;
  font-weight: bold;
  font-size: 20px;
}

.right-content {
  flex: 30%;
  margin-left: 10px;
}

.form-card {
  background-color: #09348a;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-right: 20px;
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card label {
  font-size: 16px;
  color: white;
}

.form-card input,
.form-card textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-card input:focus,
.form-card textarea:focus {
  box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
  outline: none;
}

.form-card button {
  padding: 10px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
  transition: transform 0.3s ease ease-in-out;
}

.form-card button:hover {
  background: #0056b3;
}

.form-card button:active {
  transform: scale(0.98);
  outline: none;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #555;
  padding: 10px;
  box-sizing: border-box;
}

/* media query */

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .image {
    width: 100%;
  }

  .new-div {
    margin: 20px 5px;
  }

  .card {
    padding: 15px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 12px;
  }

  .form-card {
    padding: 15px;
    width: 90%;
    margin: 0 auto;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 12px;
  }

  .form-card button {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .image {
    width: 80%;
  }

  .new-div {
    flex-direction: column;
    margin: 40px 10px;
  }

  .left-content {
    margin-right: 0;
    margin-bottom: 20px;
    flex: 1;
  }

  .right-content {
    margin-left: 0;
    flex: 1;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .form-card {
    margin: 0 auto;
    width: 100%;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card textarea {
    font-size: 14px;
  }

  .form-card button {
    font-size: 14px;
  }

  .card-features {
    flex-direction: column;
  }

  .feature-item {
    flex: 1 1 100%;
    font-size: 14px;
  }
}



/* ===== mmt/src/components/BackToTopAndWhatsApp/style.css ===== */
/* Back to top  */

#button {
  display: inline-block;
  background-color: #ff9800;
  /* background-color: #156aeb; */
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 25px;
  right: 110px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  text-decoration: none;
}

#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

/* End Back to top  */

/* whatsapp button  */

.whatsapp-button {
  position: fixed;
  bottom: 23px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  cursor: pointer;
  transition: opacity 0.3s, visibility 0.3s;
  text-decoration: none;
}

.whatsapp-button i {
  color: white;
  font-size: 34px;
}

.whatsapp-button i:hover {
  color: #333;
}

/* end whatsapp button */



/* ===== mmt/src/components/Blogs/style.css ===== */

.blog-wrapper {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-color: white;
  overflow-x: hidden;
}

.blog-section {
  margin: 60px 0 0 0;
}

.blog-line::after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.blog-bg {
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url("../assets/blog/blog.jpg");
  background-position: 50% 90%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blog-bg h3 {
  font-size: 1.3rem;
  font-weight: 400;
}

.blog-bg h2 {
  font-size: 3rem;
  text-transform: uppercase;
  padding: 0.4rem 0;
  letter-spacing: 4px;
  margin: 0;
  padding: 0;
}

.line div {
  margin: 0 0.2rem;
}

.line div:nth-child(1),
.line div:nth-child(3) {
  height: 3px;
  width: 70px;
  background: #f7327a;
  border-radius: 5px;
}

.line {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.line div:nth-child(2) {
  width: 10px;
  height: 10px;
  background: #f7327a;
  border-radius: 50%;
}

.text {
  font-weight: 300;
  opacity: 0.9;
}

.blog-bg .text {
  margin: 1.6rem 0;
}

/* blog text */

.blog-text {
  max-width: 600px;
  margin: 0 auto;
}

.container {
  padding: 20px;
}

.blog-text h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  text-align: center;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
}

.blog-text p {
  margin: 20px 0 40px 0;
  text-align: center;
  font-weight: 600;
}

/* card */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.blogs-card {
  background: #fff;
  background-image: url("../assets/clients/card\ body.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 18%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
  margin: 10px;
}

.blogs-card img {
  width: 100%;
  height: 40%;
  padding: 10px 10px 10px 10px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.small-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #555;
}

.date {
  font-size: 14px;
  color: blue;
}

h3 {
  padding: 10px;
  font-size: 18px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  margin: 0;
}

.learn-more {
  display: block;
  padding: 10px;
  margin: 0 0 40px 0;
  color: #037ef3;
  text-decoration: none;
  font-weight: bold;
  text-align: left;
}

.learn-more:hover {
  color: #4579aa;
}

.learn-more i {
  margin-left: 5px;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* media query */

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .blogs-card {
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .card-container {
    flex-direction: row;
  }
}



/* ===== mmt/src/components/Clients/style.css ===== */
.client-wrapper {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-color: white;
  overflow-x: hidden;
}

.clients-section {
  margin: 60px 0 0 0;
}

.clients-line::after {
  content: "";
  display: block;
  width: 12%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.clients-bg {
  height: 40vh;
  background: url("../assets/clients/1.jpg");
  background-size: cover;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.clients-bg h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
}

.clients-bg h2 {
  font-size: 3rem;
  text-transform: uppercase;
  padding: 0.4rem 0;
  letter-spacing: 4px;
  margin: 0;
  padding: 0;
}

.line div {
  margin: 0 0.2rem;
}

.line div:nth-child(1),
.line div:nth-child(3) {
  height: 3px;
  width: 70px;
  background: #f7327a;
  border-radius: 5px;
}

.line {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.line div:nth-child(2) {
  width: 10px;
  height: 10px;
  background: #f7327a;
  border-radius: 50%;
}

/* Card Styles */

.clients-card {
  background-color: #fff;
  background-image: url("../assets/clients/card\ body.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 10%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 20px auto;
  display: flex;
  flex-direction: row;
  transition: 0.3s;
}

.clients-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.left,
.right {
  flex: 1;
  padding: 20px;
}

.left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.left h1 {
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.left p {
  color: #666;
  line-height: 1.6;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.button-container .button-image {
  width: 170px;
  height: 50px;
  margin: 20px 0 0 0;
}

.button-container .button-image:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

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

.right img {
  max-width: 200px;
  border-radius: 10px;
}

/* Media query */
@media (max-width: 768px) {
  .clients-bg h2 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .clients-bg h3 {
    font-size: 1rem;
  }

  .clients-card {
    flex-direction: column;
    max-width: 90%;
    margin: 20px auto;
  }

  .left,
  .right {
    padding: 10px;
    flex: none;
    text-align: center;
  }

  .right img {
    max-width: 150px;
  }

  .button-container {
    justify-content: center;
  }

  .button-container .button-image {
    width: 140px;
    height: 45px;
  }
}



/* ===== mmt/src/components/Contact/style.css ===== */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.contact-wrapper {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-color: white;
  background-position: center;
  overflow-x: hidden;
}

.contact {
  margin: 60px 0 0 0;
}

.contact-line::after {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

.contact-bg {
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url("../assets/contact/contact-bg.jpg");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-bg h3 {
  font-size: 1.3rem;
  font-weight: 400;
}

.contact-bg h2 {
  font-size: 3rem;
  text-transform: uppercase;
  padding: 0.4rem 0;
  letter-spacing: 4px;
  margin: 0;
  padding: 0;
}

.line div {
  margin: 0 0.2rem;
}

.line div:nth-child(1),
.line div:nth-child(3) {
  height: 3px;
  width: 70px;
  background: #f7327a;
  border-radius: 5px;
}

.line {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.line div:nth-child(2) {
  width: 10px;
  height: 10px;
  background: #f7327a;
  border-radius: 50%;
}

.text {
  font-weight: 300;
  opacity: 0.9;
}

.contact-bg .text {
  margin: 1.6rem 0;
}

.contact-body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-info {
  margin: 2rem 0;
  text-align: center;
  padding: 2rem 0;
}

.contact-info span {
  display: block;
}

.contact-info div {
  margin: 0.8rem 0;
  padding: 1rem;
}

.contact-info span .fas {
  font-size: 2rem;
  padding-bottom: 0.9rem;
  color: blue;
}

.contact-info span .fas:hover {
  color: #f7327a;
}

.contact-info div span:nth-child(2) {
  font-weight: 500;
  font-size: 1.1rem;
}

.contact-info .text {
  padding-top: 0.4rem;
  color: blue;
  font-weight: bold;
}

/* form */

.contact_form {
  padding: 2rem 0;
  border-top: 1px solid #f7327a;
}

.contact_card {
  background-image: url("../assets/contact/bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact_form .contact_card form {
  padding-bottom: 1rem;
}

.contact_form .contact_card form h4 {
  /* color: #037ef3; */
  color: blue;
  font-weight: 600;
}

.form-control {
  width: 100%;
  border: 1.5px solid #c7c7c7;
  border-radius: 5px;
  padding: 0.7rem;
  margin: 0.6rem 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  outline: 0;
}

.form-control:focus {
  box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}

.name-field {
  grid-column: span 2;
}

.contact_form .contact_card form div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.6rem;
}

.send-btn {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: blue;
  font-weight: 600;
  border: 1px solid blue;
  border-radius: 5px;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
}

.send-btn:hover {
  opacity: 1;
  color: #fff;
  background: rgb(13, 13, 233);
}

.send-btn:active {
  transform: translateY(3px);
}

.contact_form .contact_card h2 {
  text-align: center;
  color: rgb(22, 112, 112);
}

.contact_right .contact_right_h3 {
  font-size: 1.5em;
  color: blue;
  position: relative;
  text-align: center;
  margin-top: 30px;
}

.contact_form > div .contact_contact_image {
  width: 85%;
  animation: moveLeftRight 2s infinite;
}

@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(0);
  }
}

.contact_form > div {
  margin: 0 auto;
  text-align: center;
}

.contact-footer {
  padding: 2rem 0;
  background: #000;
}

.contact-footer h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
}

.social-links a {
  text-decoration: none;
  width: 40px;
  height: 40px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.4rem;
  transition: all 0.4s ease;
}

.social-links a:hover {
  color: #f7327a;
  border-color: #f7327a;
}

@media screen and (min-width: 768px) {
  .contact-bg .text {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .contact-bg .text {
    width: 50%;
  }

  .contact_form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .contact-info {
    grid-template-columns: repeat(4, 1fr);
  }
}



/* ===== mmt/src/components/CustomPopup/style.css ===== */
.popup-container {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 500px; 
}

.popup-container .popup-image {
  width: 140px;
  height: 100px;
  margin-bottom: 10px;
}

.close-popup {
  color: #aaa;
  float: right;
  font-size: 28px;
  margin-right: 20px;
  font-weight: bold;
}

.close-popup:hover,
.close-popup:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.social-media-links a {
  color: #007bff;
  text-decoration: none;
  margin: 20px 10px;
}

.social-media-links a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Media query */

@media screen and (max-width: 768px) {
  .popup-container {
    z-index: 10000;
  }

  .popup-content {
    width: 90%;
    margin-top: 50%;
  }
}



/* ===== mmt/src/components/Faq/style.css ===== */
.startup-card {
  background-color: #fff;
  background-image: url("../assets/clients/card body.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 10%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 20px auto;
  transition: 0.3s;
  padding: 30px;
}

.startup-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.blog-line {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
}

.blog-text h3 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

.explain {
  color: #555;
  line-height: 1.8;
}

.animated-text {
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.section-title-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px 30px;
}



/* ===== mmt/src/components/Footer/style.css ===== */
:root {
    --primary: #6222CC;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.custom-footer {
    background:
        url("../assets/footer/map.png");
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
    background-color: #6222CC !important;
}

.custom-footer .from-top {
  margin: 40px 0 0 0;
}

.custom-footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid var(--light);
    border-radius: 40px;
    transition: .3s;
}

.custom-footer .btn.btn-social:hover {
  color: var(--secondary);
}

.custom-footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
    text-decoration: none;
}

.custom-footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.custom-footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.custom-footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.custom-footer .copyright a {
    color: var(--light);
}

.custom-footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid var(--light);

}

.custom-footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.custom-footer .copyright a:hover,
.custom-footer .footer-menu a:hover {
    color: var(--secondary);
}

.custom-footer .info {
  color: var(--light);
  font-size: 14px;
}

.custom-footer .footer-image {
    width: 150px;
    height: 100px;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; 
  white-space: nowrap;
}

/* Media query */

@media (min-width: 768px) {
  .copyright .col-md-6 {
    justify-content: center; 
  }
}



/* ===== mmt/src/components/Home/style.css ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.home-wrapper {
  background-color: white;
}

/* Main */

.main {
  position: relative;
  overflow: hidden;
}

.page1 {
  height: 100vh;
  width: 100vw;
  position: relative;
}

.page1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page1 nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 30px;
  position: absolute;
  height: 10vh;
  width: 100vw;
}

.bottom-page1 {
  position: absolute;
  bottom: 5%;
  height: 35vh;
  width: 50vw;
  left: 5%;
}

.main .page1 .bottom-page1 h2 {
  font-family: a;
  font-size: 5vw;
  font-weight: 100;
  line-height: 1;
  color: #fff;
}

.bottom-page1-inner {
  position: absolute;
  bottom: 0;
  height: 35%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: a;
}

.bottom-page1-inner button {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  background-color: #fff;
  color: #0b48ed;
  font-size: 16px;
  font-family: b;
  white-space: nowrap;
  margin-left: 40px;
}

.bottom-page1-inner h4 {
  font-size: 1.3vw;
  font-weight: 100;
  color: #fff;
}

/* Media Query */

@media (max-width: 950px) {
  .page1 {
    height: auto;
    width: 100%;
    margin-top: 66px;
  }

  .page1 video {
    height: 300px;
  }

  .bottom-page1 {
    height: auto;
    width: 100%;
    left: 15px;
    margin-bottom: 60px;
  }

  .bottom-page1 h2 {
    font-size: 6vw;
    margin-bottom: 40px;
  }

  .bottom-page1-inner {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .bottom-page1-inner button {
    margin: 10px 0;
    font-size: 14px;
  }

  .bottom-page1-inner h4 {
    font-size: 3.5vw;
    margin: 0;
    width: 100%;
    max-width: 350px;
    line-height: 1.5;
  }
}

/* End Main */

/* Services */

.home-services {
  text-align: center;
  margin-top: 15px;
}

.home-services .service-heading {
  font-size: 1.5em;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
  font-weight: 600;
}

.home-services h2 {
  color: #037ef3;
  font-size: 1.5em;
  font-weight: bold;
}

.home-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 200px;
}

.home-line div {
  margin: 0 0.2rem;
}

.home-line div:nth-child(1),
.home-line div:nth-child(3) {
  height: 3px;
  width: 70px;
  background: #f7327a;
  border-radius: 5px;
}

.home-line div:nth-child(2) {
  width: 10px;
  height: 10px;
  background: #f7327a;
  border-radius: 50%;
}

.home-services-container {
  text-align: center;
  padding: 40px 40px;
  margin-top: 30px;
}

.home-services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.home-services-card {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
  margin: 20px 0;
  padding: 20px;
  text-align: center;
  overflow: hidden;
  background: #fff;
  background-image: url("../assets/home/images/services/card-body.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 18%;
  transition: color 0.3s, transform 0.3s;
  transform: translateY(-60px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.home-services-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: #166ce7;
  transition: transform 1s ease;
  transform: translate(-50%, -50%) scale(0);
  z-index: 0;
}

.home-services-card:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.home-services-card:hover h4,
.home-services-card:hover p {
  color: white;
}

.home-services-card h4,
.home-services-card p,
.home-services-card img {
  position: relative;
  z-index: 1;
  transition: color 1s ease;
}

.home-services-card img {
  width: 50px;
  height: 50px;
  text-align: center;
  margin: 0 0 20px 0;
}

.home-services-card h4 {
  margin: 20px 0 20px 0;
}

.home-services-card p {
  text-align: center;
}

/* end services  */

/* industries */

.industries {
  background-image: url("../assets/home/images/industries-back.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

.industries h2 {
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
}

.industries-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.industry {
  width: calc(25% - 20px);
  padding: 20px;
  text-align: center;
}

.industry img {
  width: 30px;
  height: 30px;
}

.industry h4 {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

/* end industries */

/* technology */

.technologies {
  padding: 40px 20px;
  text-align: center;
}

.technologies h2 {
  text-align: center;
  color: #037ef3;
  font-size: 1.5em;
  font-weight: bold;
}

.technologies-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.technologies-container div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.technologies-container img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  display: block;
  margin: 10px;
  padding: 5px;
  transition: transform 0.3s;
  background-color: #f5f5f5;
}

.technologies-container img:hover {
  transform: scale(1.1);
}

/* end technology */

/*  Clients  */

.clients {
  background-color: #f3e8e8;
  padding: 10px 20px;
  text-align: center;
  background: #7a60ff;
  background: linear-gradient(to left, #193ac0, #cd9ffa);
  position: relative;
}

.clients::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/home/images/clients/pattern.png");
}

.clients h2 {
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 20px;
}

.clients-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.clients-container picture {
  padding: 10px;
  background-color: #fff;
  background-image: url("../assets/home/images/testimonials/card-body.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 18%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
}

.clients-container picture:hover {
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.clients-container img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.clients-container h4 {
  text-align: center;
  color: #193ac0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  white-space: nowrap;
}

/* end Clients */

/* carousel */
/* 
.owl-slider {
    padding: 20px 80px 20px 80px;
    background-image: url("../assets/home/images/testimonials/testimonials\ bg.jpg");
    background-size: cover;
    background-position: center;
    overflow-x: hidden;

}

.owl-slider h2 {
    text-align: center;
    color: #037ef3;
}

.testimonial-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 200px;
    margin-bottom: 50px;
}

.testimonial-line div {
    margin: 0 0.2rem;
}

.testimonial-line div:nth-child(1),
.testimonial-line div:nth-child(3) {
    height: 3px;
    width: 70px;
    background: #f7327a;
    border-radius: 5px;
}

.testimonial-line div:nth-child(2) {
    width: 10px;
    height: 10px;
    background: #f7327a;
    border-radius: 50%;
}

.testimonial-card {
    background-color: #fff;
    background-image: url("../assets/home/images/testimonials/card-body.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 18%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stars {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
}

.stars i {
    color: #2d71ce;
    margin: 0 2px;
    font-size: 16px;
}

.testimonial-content {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.testimonial-content img {
    width: 60px;
    height: 60px;
    display: block;
    margin-left: 20px;
}

.testimonial-text {
    max-width: 300px;
    margin: 10px 0 0 20px;
}

.name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: normal;
    text-align: left;
    color: #0a0c1e;
}

.role {
    margin: 0;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.message {
    display: flex;
    align-items: flex-start;
    margin: 20px 20px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
    color: rgba(6, 41, 83, 0.7);
}

.owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.owl-nav button.owl-prev {
    position: absolute;
    left: 0;
}

.owl-nav button.owl-next {
    position: absolute;
    right: 0;
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

.owl-dots button.owl-dot.active {
    background-color: white;
}

.owl-dots button.owl-dot:focus {
    outline: none;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}

.owl-nav button:hover {
    background: rgba(255, 255, 255, 0.6) !important;
}

span {
    font-size: 70px;
    position: relative;
    top: -5px;
}

.owl-nav button:focus {
    outline: none;
} */

/* Media Queries */

@media (max-width: 1024px) {
  .owl-slider {
    padding: 20px 40px;
  }

  .testimonial-line {
    width: 150px;
    margin-bottom: 30px;
  }

  .testimonial-card {
    padding: 15px;
  }

  .testimonial-content img {
    width: 50px;
    height: 50px;
    margin-left: 15px;
  }

  .testimonial-text {
    max-width: 250px;
    margin: 10px 0 0 15px;
  }
}

@media (max-width: 768px) {
  .owl-slider {
    padding: 20px 20px;
  }

  .testimonial-line {
    width: 120px;
    margin-bottom: 20px;
  }

  .testimonial-card {
    padding: 10px;
  }

  .testimonial-content img {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }

  .testimonial-text {
    max-width: 200px;
    margin: 10px 0 0 10px;
  }

  .owl-nav button {
    font-size: 20px;
  }

  .span {
    font-size: 50px;
  }
}

@media (max-width: 480px) {
  .owl-slider {
    padding: 10px;
  }

  .testimonial-line {
    width: 100px;
    margin-bottom: 15px;
  }

  .testimonial-card {
    padding: 10px;
  }

  .testimonial-content img {
    width: 35px;
    height: 35px;
    margin-left: 8px;
  }

  .testimonial-text {
    max-width: 180px;
    margin: 5px 0 0 8px;
  }

  .owl-nav button {
    width: 40px;
    height: 40px;
  }

  .span {
    font-size: 40px;
  }
}

/* end carousel */

/* milestones */

.milestones {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
}

.milestones h2 {
  color: #037ef3;
  font-size: 1.5em;
  font-weight: bold;
}

.milestones-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.milestones-container div div {
  flex: 1;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
}

.milestones-container div div {
  display: block;
}

.milestones-container div div img {
  width: 40px;
  height: 40px;
}

.milestones-container div div div:nth-child(2) {
  font-weight: 500;
  font-size: 1.1rem;
}

.milestones-container .text {
  padding-top: 0.4rem;
  font-weight: 600;
}

/* end milestones */

/* portfolio */

.portfolio {
  text-align: center;
  padding: 40px 20px;
  background-color: #f5f5f5;
  background: #7a60ff;
  background: linear-gradient(to left, blue, #cd9ffa);
  position: relative;
}

.portfolio::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/home/images/portfolio/pattern.png");
}

.portfolio h2 {
  color: white;
  font-size: 1.5em;
  font-weight: bold;
}

.portfolio-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.portfolio-container a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-container img {
  width: 400px;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.portfolio-container a:hover img {
  transform: scale(1.05);
}

.portfolio-container a:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* end portfolio */

/* Contact Section */

.home-contact-section {
  background-color: #e6dbdb;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-contact-form {
  background-image: url("../assets/contact/bg.jpg");
  background-size: cover;
  background-position: center;
  flex: 1;
  max-width: 40%;
  margin-right: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.home-contact-form h2 {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 40px 0;
  color: #0b48ed;
}

.home-contact-form .line div {
  margin: 0 0.2rem;
}

.home-contact-form form {
  display: flex;
  flex-direction: column;
}

.home-contact-form input,
.home-contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.home-contact-form input:focus,
.home-contact-form textarea:focus {
  box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
  outline: none;
}

.home-contact-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #193ac0;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 30px;
  transition: transform 0.2s ease;
  outline: none;
}

.home-contact-form button:hover {
  background-color: #0b48ed;
}

.home-contact-form button:active {
  outline: none;
  transform: translateY(2px);
}

.home-contact-image {
  flex: 1;
  max-width: 50%;
  text-align: center;
}

.home-contact-image h3 {
  font-size: 1.5em;
  color: blue;
  position: relative;
  text-align: center;
}

.home-contact-image .home-contact-form-image {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  animation: moveUpDown 2s infinite;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Contact Section */

/* media query */

@media (max-width: 1200px) {
  .home-services-card {
    width: 45%;
  }

  .industry {
    width: calc(33.33% - 20px);
  }

  .technologies-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .clients-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .home-services-card {
    width: 100%;
  }

  .industry {
    width: calc(50% - 20px);
  }

  .technologies-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .milestones-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .industry {
    width: 100%;
  }

  .technologies-container {
    grid-template-columns: 1fr;
    margin: 50px;
  }

  .clients-container {
    grid-template-columns: 1fr;
  }

  .clients-container h4 {
    font-size: 14px;
  }

  .milestones-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .milestones-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home-contact-section {
    flex-direction: column;
  }

  .home-contact-form,
  .home-contact-image {
    max-width: 100%;
    margin: 10px 0;
  }

  .home-contact-image .home-contact-form-image {
    max-width: 100%;
  }
}



/* ===== mmt/src/components/Loader/style.css ===== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.loader img {
  width: 150px;
  height: auto;
}

.loader img:last-of-type {
  margin-top: 20px;
}

/* Hide loader when page is fully loaded */
body.loaded .loader {
  display: none;
}



/* ===== mmt/src/components/Navbar/style.css ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

nav {
  position: fixed;
  z-index: 10000;
  width: 100%;
  background: white;
  box-shadow: 0.7px 8.9px 24.5px 0 rgba(8, 8, 24, 0.1);
}

nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 80px;
  line-height: 80px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a {
  color: white;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wrapper .logo a img {
  width: 130px;
}

.wrapper .nav-links {
  display: inline-flex;
  padding-top: 17px;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #242526;
  font-size: 17px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: #e6e0e0;
}

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  background: white;
  width: 250px;
  line-height: 45px;
  top: 90px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  text-align: left;
  justify-content: center;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 80px;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  border-radius: 0px;
  color: #242526;
  font-size: 16px;
}

.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 100px;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  background: white;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  width: calc(50% - 20px);
  line-height: 45px;
}

.content .row img {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}

.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
  padding: 0 20px;
}

.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #242526;
  font-size: 16px;
  display: block;
}

.row .mega-links li a:hover {
  color: #242526;
}

.wrapper .btn {
  color: #242526;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

.cta-button {
  list-style: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.cta-btn {
  background-color: transparent;
  border: 1px solid blue;
  color: #242526;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s ease;
  line-height: normal;
  margin: 0;
  display: inline-block;
  position: relative;
}

.cta-btn:hover {
  background-color: blue;
  border-color: blue;
}

.cta-btn a {
  color: black;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  transition: color 0.3s ease;
  padding: 0;
  margin: 0;
  line-height: normal;
}

.cta-btn:hover a {
  color: white;
}

.cta-btn:active {
  background-color: darkblue;
  border-color: darkblue;
  transform: scale(0.96);
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-btn:hover::before {
  opacity: 1;
}

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

.nav-links li:last-child {
  margin-right: 20px;
}

.cta-button {
  margin-left: 20px;
}

/* Media query */

@media screen and (max-width: 950px) {
  .wrapper {
    justify-content: center;
    position: relative;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .wrapper .btn.menu-btn {
    position: absolute;
    font-size: 25px;
    right: 15px;
    top: 15px;
  }

  .wrapper .btn {
    display: block;
  }

  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #f6f5f8;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }

  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #c0c5ca;
  }

  ::-webkit-scrollbar-thumb {
    background: #c0c5ca;
  }

  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }

  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }

  #close-btn:checked ~ .btn.menu-btn {
    display: block;
  }

  .nav-links li {
    margin: 15px 10px;
  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }

  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    left: 0;
    transform: none;
    top: 60px;
    line-height: 40px;
    box-shadow: none;
  }

  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    max-height: 100%;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    color: #242526;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-links .mobile-item:hover {
    background: #c0c5ca;
  }

  .drop-menu li {
    margin: 0;
  }

  .drop-menu li a {
    border-radius: 5px;
    font-size: 15px;
  }

  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-box .content .row a {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }

  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }

  .row .mega-links li {
    margin: 0;
  }

  .content .row header {
    font-size: 19px;
  }
}

nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.body-text div {
  font-size: 45px;
  font-weight: 600;
}



/* ===== mmt/src/components/Products/style.css ===== */
.product-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  overflow-x: hidden;
}

.products-line::after {
  content: "";
  display: block;
  width: 25%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

/* products-card Styles */

.products-card {
  background-color: #fff;
  background-image: url("../assets/clients/card\ body.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 8%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  flex-direction: row;
  transition: 0.3s;
}

.products-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.products-left,
.right {
  flex: 1;
  padding: 20px;
}

.products-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.products-left h2 {
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
}

.products-left p {
  color: #666;
  line-height: 1.6;
}

.products-left .products-learn-more {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  text-decoration: none;
}

.hr-line {
  border: none;
  border-top: 1px solid blue;
  width: 80px;
  margin: 2px 0;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

a .website {
  width: 150px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

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

.right img {
  max-width: 250px;
  border-radius: 10px;
}

/* Media Query */

@media (max-width: 768px) {
  .design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .image {
    width: 80%;
  }

  .products-card {
    flex-direction: column;
    max-width: 90%;
  }

  .right img {
    max-width: 100%;
  }

  h1 {
    font-size: 1.5em;
    margin: 20px;
  }

  .image {
    width: 80%;
    margin: 0 auto;
  }
}



/* ===== mmt/src/components/Services/style.css ===== */
.services-wrapper {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  overflow-x: hidden;
}

.services-line::after {
  content: "";
  display: block;
  width: 22%;
  height: 2px;
  background: white;
  margin: 10px auto 0;
}

/* Card Styles */

.services-card {
  background-color: #fff;
  background-image: url("../assets/clients/card\ body.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 8%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  flex-direction: row;
  transition: 0.3s;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.services-left,
.services-right {
  flex: 1;
  padding: 20px;
}

.services-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.services-left h2 {
  margin-bottom: 10px;
  color: #212529;
  filter: drop-shadow(1px 1px 1px gray);
}

.services-left p {
  color: #666;
  line-height: 1.6;
}

.service-learn-more {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  text-decoration: none;
}

.hr-line {
  border: none;
  border-top: 1px solid blue;
  width: 80px;
  margin: 2px 0;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

a .website {
  width: 150px;
  height: 50px;
}

a .website:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.services-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-right img {
  max-width: 250px;
  border-radius: 10px;
}

/* Media Query */

@media (max-width: 768px) {
  .service-design-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .image {
    width: 80%;
  }

  .services-card {
    flex-direction: column;
    max-width: 90%;
  }

  .services-right img {
    max-width: 100%;
  }

  h1 {
    font-size: 1.5em;
    margin: 20px;
  }

  .image {
    width: 80%;
    margin: 0 auto;
  }
}



/* ===== mmt/src/components/SocialIcons/style.css ===== */
.icons {
  position: fixed;
  top: 30%;
  right: 0;
  width: 230px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  pointer-events: none;
}

.icons a {
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  margin: 2px;
  text-align: left;
  border-radius: 50px 0 0 50px;
  transform: translate(170px, 0px);
  transition: all 1s;
  pointer-events: auto;
}

.icons a:hover {
  transform: translate(10px, 0px);
}

.icons a i {
  margin-right: 20px;
  background-color: white;
  color: black;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: all 1s;
}

.icons a:hover i {
  transform: rotate(360deg);
}

.icons a i.fa-facebook {
  color: #2c80d3;
}

.icons a i.fa-instagram {
  color: #fa0910;
}

.icons a i.fa-whatsapp {
  color: #25D366;
}

.icons a i.fa-linkedin-in {
  color: #53c5ff;
}

.icons a i.fa-google {
  color: #4285F4;
}

.facebook {
  background-color: #2c80d3;
  color: white;
}

.instagram {
  background-color: #fa0910;
  color: white;
}

.linkedin {
  background-color: #53c5ff;
  color: white;
}

.whatsapp {
  background-color: #25D366;
  color: #25D366;
}

.google {
  background-color: #4285F4;
  color: #4285F4;
}


/* ===== mmt/src/components/Startup/style.css ===== */
.startup-card {
  background-color: #fff;
  background-image: url("../assets/clients/card\ body.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 10%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 20px auto;
  transition: 0.3s;
}


/* ===== mmt/src/index.css ===== */
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 10px;
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(122, 153, 217)), color-stop(0.72, rgb(73, 125, 189)), color-stop(0.86, rgb(28, 58, 148)));
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}


/* =========================================================
   Static HTML conversion helpers
   ========================================================= */
.static-page { min-height: 40vh; }
.aos-animate { opacity: 1 !important; transform: none !important; }
[data-aos] { transition: opacity .7s ease, transform .7s ease; }
[data-aos="zoom-in"], [data-aos="flip-up"], [data-aos="flip-left"], [data-aos="flip-right"], [data-aos="slide-up"], [data-aos="zoom-out"], [data-aos="zoom-in-down"] {
  opacity: 0;
}
[data-aos="zoom-in"] { transform: scale(.94); }
[data-aos="zoom-out"] { transform: scale(1.06); }
[data-aos="slide-up"] { transform: translateY(30px); }
[data-aos="flip-up"], [data-aos="flip-left"], [data-aos="flip-right"] { transform: perspective(700px) rotateX(12deg); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* Keep the original hero video working in plain HTML */
.page1 { overflow: hidden; }
.page1 video { display: block; }

/* Shared static page spacing */
.static-page > *:first-child { margin-top: 0; }

/* Prevent accidental horizontal overflow after removing React */
html, body { max-width: 100%; overflow-x: hidden; }

/* Mobile nav opened by common.js */
@media (max-width: 950px) {
  body.menu-open { overflow: hidden; }
}

/* Supplied Mind Marq logo */
.wrapper .logo a img { object-fit: contain; }

/* Native FAQ/details feel */
details summary { cursor: pointer; }


/* ============================================================
   FINAL RESPONSIVE FOOTER
   Shared from js/common.js on every page.
   ============================================================ */

.custom-footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(98,34,204,.97), rgba(72,22,170,.98)),
    url("../assets/footer/map.png") center / cover no-repeat;
  isolation: isolate;
}

.custom-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.13), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(251,165,4,.10), transparent 28%);
}

.footer-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -300px;
  right: -180px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  filter: blur(5px);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 68px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.15fr 1.35fr;
  gap: 52px;
  align-items: start;
}

.footer-column { min-width: 0; }

.footer-title {
  position: relative;
  display: inline-block;
  margin: 0 0 27px;
  padding-bottom: 11px;
  color: #fff !important;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  border-radius: 5px;
  background: #fba504;
}

.footer-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 16px;
  color: rgba(255,255,255,.9) !important;
  font-size: 14px;
  line-height: 1.55;
}

.footer-detail i {
  flex: 0 0 17px;
  width: 17px;
  margin-top: 3px;
  color: #fba504 !important;
  text-align: center;
}

.footer-detail a {
  color: rgba(255,255,255,.9) !important;
  text-decoration: none;
}

.footer-detail a:hover { color: #fba504 !important; }

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.footer-social {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  color: #fff !important;
  font-size: 17px;
  background: rgba(255,255,255,.08);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.footer-social:hover {
  transform: translateY(-5px);
  background: #fff;
  border-color: #fff;
}

.whatsapp-social:hover { color: #25d366 !important; }
.instagram-social:hover { color: #e1306c !important; }
.linkedin-social:hover { color: #0a66c2 !important; }
.google-social:hover { color: #4285f4 !important; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a {
  position: relative;
  width: fit-content;
  padding-left: 19px;
  color: rgba(255,255,255,.9) !important;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none !important;
  transition: color .25s ease, transform .25s ease;
}

.footer-links a::before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fba504;
}

.footer-links a:hover {
  color: #fff !important;
  transform: translateX(5px);
}

.footer-about { padding-left: 8px; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.95);
}

.custom-footer .footer-image {
  display: block;
  width: 155px !important;
  height: auto !important;
  max-height: 95px;
  object-fit: contain;
}

.footer-description {
  max-width: 355px;
  margin: 0;
  color: rgba(255,255,255,.82) !important;
  font-size: 14px;
  line-height: 1.75;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 17px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 5px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.footer-cta:hover {
  color: #6222cc !important;
  background: #fff;
  transform: translateY(-2px);
}

.footer-cta span { font-size: 18px; }

.footer-bottom {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(38,8,102,.30);
}

.footer-bottom-inner {
  width: min(1200px, calc(100% - 48px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.footer-bottom-inner p { margin: 0; }

.footer-bottom-inner a {
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom-inner a:hover { color: #fba504 !important; }

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 38px;
  }
  .footer-about { padding-left: 0; }
}

@media (max-width: 650px) {
  .footer-container {
    width: min(100% - 36px, 520px);
    padding: 58px 0 48px;
  }

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

  .footer-title {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .footer-links { gap: 11px; }
  .footer-socials { margin-top: 22px; }
  .footer-description { max-width: none; }

  .footer-bottom-inner {
    width: min(100% - 36px, 520px);
    min-height: 100px;
    padding: 18px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}


/* ============================================================
   FINAL FOOTER MATCH — Mind Marq reference layout
   ============================================================ */

.custom-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #6222cc !important;
  background-image: url("../assets/footer/map.png") !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  color: #fff;
  font-family: "Poppins", "DM Sans", Arial, sans-serif;
}

.custom-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(98, 34, 204, .10);
  pointer-events: none;
  z-index: 0;
}

.custom-footer .footer-container {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 132px));
  margin: 0 auto;
  padding: 125px 0 83px;
}

.custom-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.04fr 1.04fr 1.04fr 1.05fr;
  column-gap: 66px;
  align-items: start;
}

.custom-footer .footer-column {
  min-width: 0;
  padding: 0;
}

.custom-footer .footer-title {
  display: block;
  margin: 0 0 28px !important;
  padding: 0 !important;
  color: #fff !important;
  font-family: "Poppins", "DM Sans", Arial, sans-serif;
  font-size: 23px !important;
  font-weight: 600 !important;
  line-height: 1.25;
  letter-spacing: -.2px;
}

.custom-footer .footer-title::after {
  display: none !important;
}

.custom-footer .footer-detail {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0 0 18px !important;
  color: #fff !important;
  font-family: "Poppins", "DM Sans", Arial, sans-serif;
  font-size: 17px !important;
  font-weight: 400;
  line-height: 1.45;
}

.custom-footer .footer-detail i {
  width: 15px;
  min-width: 15px;
  margin-top: 3px;
  color: #fff !important;
  font-size: 16px;
  text-align: center;
}

.custom-footer .footer-detail a {
  color: #fff !important;
  text-decoration: none;
}

.custom-footer .footer-detail a:hover {
  color: #eee !important;
}

.custom-footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 27px;
}

.custom-footer .footer-social {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: transparent;
  color: #fff !important;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: .25s ease;
}

.custom-footer .footer-social:hover {
  background: #fff;
  color: #6222cc !important;
  transform: translateY(-2px);
}

.custom-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.custom-footer .footer-links a {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding: 0 0 0 20px !important;
  color: #fff !important;
  font-family: "Poppins", "DM Sans", Arial, sans-serif;
  font-size: 17px !important;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none !important;
  transition: transform .2s ease, opacity .2s ease;
}

.custom-footer .footer-links a::before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  font-size: 15px;
}

.custom-footer .footer-links a:hover {
  color: #fff !important;
  opacity: .8;
  transform: translateX(4px);
}

.custom-footer .footer-about {
  padding: 0 !important;
}

.custom-footer .footer-brand {
  display: inline-block;
  margin: -7px 0 25px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.custom-footer .footer-image {
  display: block;
  width: 165px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain;
}

.custom-footer .footer-description {
  width: 100%;
  max-width: 290px;
  margin: 0 !important;
  color: #fff !important;
  font-family: "Poppins", "DM Sans", Arial, sans-serif;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1.5 !important;
  text-align: justify;
  text-justify: inter-word;
}

.custom-footer .footer-bottom {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 132px));
  min-height: 72px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.16);
  background: transparent !important;
}

.custom-footer .footer-bottom-inner {
  width: 100%;
  min-height: 72px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff !important;
  font-family: "Poppins", "DM Sans", Arial, sans-serif;
  font-size: 15px !important;
}

.custom-footer .footer-bottom-inner p {
  margin: 0 !important;
  color: #fff !important;
}

.custom-footer .footer-bottom-inner a {
  color: #fff !important;
  font-weight: 400;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .custom-footer .footer-container {
    width: min(100% - 70px, 1000px);
    padding: 85px 0 65px;
  }

  .custom-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 60px;
    column-gap: 55px;
  }

  .custom-footer .footer-about {
    padding-left: 0 !important;
  }

  .custom-footer .footer-description {
    max-width: 340px;
  }

  .custom-footer .footer-bottom {
    width: min(100% - 70px, 1000px);
  }
}

@media (max-width: 650px) {
  .custom-footer .footer-container {
    width: calc(100% - 40px);
    padding: 60px 0 45px;
  }

  .custom-footer .footer-grid {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }

  .custom-footer .footer-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }

  .custom-footer .footer-detail,
  .custom-footer .footer-links a {
    font-size: 16px !important;
  }

  .custom-footer .footer-image {
    width: 155px !important;
  }

  .custom-footer .footer-description {
    max-width: 100%;
    font-size: 15px !important;
  }

  .custom-footer .footer-bottom {
    width: calc(100% - 40px);
  }

  .custom-footer .footer-bottom-inner {
    min-height: 65px;
    font-size: 13px !important;
  }
}


/* ============================================================
   HEADER FINAL FIX — full Mind Marq logo, no clipping
   ============================================================ */

nav {
  height: 96px !important;
  min-height: 96px !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}

nav .wrapper {
  height: 96px !important;
  min-height: 96px !important;
  line-height: normal !important;
  padding: 0 30px !important;
  align-items: center !important;
}

.wrapper .logo {
  height: 96px !important;
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto;
  overflow: visible !important;
}

.wrapper .logo a {
  height: 96px !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}

.wrapper .logo a img {
  display: block !important;
  width: 150px !important;
  height: auto !important;
  max-height: 88px !important;
  object-fit: contain !important;
  object-position: center !important;
  overflow: visible !important;
}

.wrapper .nav-links {
  align-items: center !important;
  padding-top: 0 !important;
  margin: 0 !important;
}

.nav-links li a {
  line-height: 1.4 !important;
}

.cta-button {
  display: flex !important;
  align-items: center !important;
}

.cta-btn {
  line-height: 1.3 !important;
}

@media (max-width: 950px) {
  nav,
  nav .wrapper,
  .wrapper .logo,
  .wrapper .logo a {
    height: 76px !important;
    min-height: 76px !important;
  }

  nav .wrapper {
    padding: 0 18px !important;
  }

  .wrapper .logo {
    left: 50%;
  }

  .wrapper .logo a img {
    width: 125px !important;
    max-height: 68px !important;
  }

  .wrapper .btn.menu-btn {
    top: 24px !important;
  }

  .wrapper .btn.close-btn {
    top: 18px !important;
  }
}

/* Prevent the fixed header from covering the beginning of the
   home hero on small screens. */
@media (max-width: 950px) {
  .page1 {
    margin-top: 76px !important;
  }
}


/* ============================================================
   FOOTER FINAL REFERENCE FIX
   ============================================================ */

.custom-footer {
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: #fff !important;
  background-color: #6222cc !important;
  background-image: url("../assets/footer/map.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  isolation: isolate;
}

.custom-footer::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background: rgba(98, 34, 204, 0.05) !important;
}

.custom-footer .footer-container {
  position: relative !important;
  z-index: 1 !important;
  width: min(1240px, calc(100% - 132px)) !important;
  margin: 0 auto !important;
  padding: 120px 0 82px !important;
}

.custom-footer .footer-grid {
  display: grid !important;
  grid-template-columns: 1.08fr 0.92fr 1.18fr 1fr !important;
  gap: 72px !important;
  align-items: start !important;
}

.custom-footer .footer-column {
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.custom-footer .footer-title {
  margin: 0 0 28px !important;
  padding: 0 !important;
  color: #fff !important;
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 23px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.custom-footer .footer-title::after,
.custom-footer .footer-title::before {
  display: none !important;
}

.custom-footer .footer-detail {
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  color: #fff !important;
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
}

.custom-footer .footer-detail i {
  width: 16px !important;
  min-width: 16px !important;
  margin-top: 4px !important;
  color: #fff !important;
  font-size: 15px !important;
  text-align: center !important;
}

.custom-footer .footer-detail span,
.custom-footer .footer-detail a {
  color: #fff !important;
}

.custom-footer .footer-detail a {
  text-decoration: none !important;
}

.custom-footer .footer-socials {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  margin: 27px 0 0 !important;
  padding: 0 !important;
}

.custom-footer .footer-social {
  width: 45px !important;
  height: 45px !important;
  min-width: 45px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,.95) !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 18px !important;
  text-decoration: none !important;
  transition: .2s ease !important;
}

.custom-footer .footer-social:hover {
  background: #fff !important;
  color: #6222cc !important;
  transform: translateY(-2px);
}

.custom-footer .footer-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-footer .footer-links a {
  position: relative !important;
  display: block !important;
  width: fit-content !important;
  margin: 0 !important;
  padding: 0 0 0 20px !important;
  color: #fff !important;
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  transition: .2s ease !important;
}

.custom-footer .footer-links a::before {
  content: "\f105" !important;
  position: absolute !important;
  left: 0 !important;
  top: 1px !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  color: #fff !important;
  font-size: 15px !important;
}

.custom-footer .footer-links a:hover {
  opacity: .8 !important;
  transform: translateX(3px);
}

.custom-footer .footer-about {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.custom-footer .footer-brand {
  display: block !important;
  margin: -18px 0 27px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  line-height: 0 !important;
}

.custom-footer .footer-image {
  display: block !important;
  width: 165px !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
}

.custom-footer .footer-description {
  width: 100% !important;
  max-width: 290px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
  text-align: justify !important;
  text-justify: inter-word !important;
}

.custom-footer .footer-bottom {
  position: relative !important;
  z-index: 2 !important;
  width: min(1240px, calc(100% - 132px)) !important;
  height: 72px !important;
  min-height: 72px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border-top: 1px solid rgba(255,255,255,.16) !important;
  background: transparent !important;
}

.custom-footer .footer-bottom-inner {
  width: 100% !important;
  height: 72px !important;
  min-height: 72px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

.custom-footer .footer-bottom-inner p,
.custom-footer .footer-bottom-inner a {
  margin: 0 !important;
  color: #fff !important;
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

@media (max-width: 1100px) {
  .custom-footer .footer-container {
    width: min(100% - 70px, 1000px) !important;
    padding: 85px 0 65px !important;
  }

  .custom-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 55px !important;
  }

  .custom-footer .footer-bottom {
    width: min(100% - 70px, 1000px) !important;
  }
}

@media (max-width: 650px) {
  .custom-footer .footer-container {
    width: calc(100% - 40px) !important;
    padding: 60px 0 45px !important;
  }

  .custom-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .custom-footer .footer-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }

  .custom-footer .footer-detail,
  .custom-footer .footer-links a {
    font-size: 16px !important;
  }

  .custom-footer .footer-image {
    width: 155px !important;
  }

  .custom-footer .footer-description {
    max-width: 100% !important;
    font-size: 15px !important;
  }

  .custom-footer .footer-bottom {
    width: calc(100% - 40px) !important;
  }

  .custom-footer .footer-bottom-inner,
  .custom-footer .footer-bottom {
    height: 65px !important;
    min-height: 65px !important;
  }

  .custom-footer .footer-bottom-inner p,
  .custom-footer .footer-bottom-inner a {
    font-size: 13px !important;
  }
}

/* ============================================================
   GEN-Z STARTUP + FAQ PAGES
   Palette: logo blue/cyan + bulb orange + deep ink
   ============================================================ */
:root {
  --mmt-blue: #0b48ed;
  --mmt-blue-dark: #071b66;
  --mmt-cyan: #17a9d8;
  --mmt-orange: #f6a21a;
  --mmt-ink: #0c1735;
  --mmt-soft: #f5f8ff;
  --mmt-line: rgba(12, 23, 53, .10);
  --mmt-gradient: linear-gradient(135deg, #0b48ed 0%, #1677ef 48%, #18a8d7 100%);
}

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

.mmt-inner-hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--mmt-gradient);
}

.startup-hero::before,
.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 78% 24%, rgba(246,162,26,.35), transparent 19%),
    radial-gradient(circle at 14% 80%, rgba(255,255,255,.18), transparent 26%),
    linear-gradient(135deg, rgba(7,27,102,.38), transparent 60%);
}

.startup-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.startup-orb,
.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: -1;
}

.startup-orb-one { width: 340px; height: 340px; right: -70px; top: 80px; background: rgba(246,162,26,.24); }
.startup-orb-two { width: 210px; height: 210px; right: 31%; bottom: -90px; background: rgba(255,255,255,.12); }
.faq-orb.orb-one { width: 300px; height: 300px; right: -80px; top: -60px; background: rgba(246,162,26,.25); }
.faq-orb.orb-two { width: 220px; height: 220px; left: -80px; bottom: -70px; background: rgba(255,255,255,.14); }

.startup-hero-content,
.faq-hero-content {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}

.mmt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--mmt-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.startup-hero h1,
.faq-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
}

.startup-hero h1 span,
.faq-hero h1 span,
.section-heading h2 span,
.startup-cta-box h2 span {
  color: #ffd36a;
}

.startup-hero p,
.faq-hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.7;
}

.startup-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.mmt-primary-btn,
.mmt-ghost-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.mmt-primary-btn {
  background: var(--mmt-orange);
  color: #172042 !important;
  box-shadow: 0 14px 35px rgba(246,162,26,.28);
}

.mmt-primary-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(246,162,26,.35); }

.mmt-ghost-btn {
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.09);
  color: #fff !important;
  backdrop-filter: blur(10px);
}

.mmt-ghost-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.16); }

.startup-floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 10px;
  align-items: center;
  width: 185px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.14);
  backdrop-filter: blur(14px);
  animation: mmtFloat 5s ease-in-out infinite;
}

.startup-floating-card i { grid-row: span 2; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: rgba(246,162,26,.2); color: #ffd36a; }
.startup-floating-card b { font-size: 13px; }
.startup-floating-card small { color: rgba(255,255,255,.7); font-size: 10px; line-height: 1.3; }
.card-a { right: 10%; top: 28%; }
.card-b { right: 19%; bottom: 15%; animation-delay: -2s; }

@keyframes mmtFloat { 50% { transform: translateY(-10px); } }

.startup-intro,
.faq-content { background: var(--mmt-soft); }

.startup-intro { padding: 105px 0 95px; }

.section-heading.center { max-width: 780px; margin: 0 auto 55px; text-align: center; }
.section-heading h2 { margin: 0; color: var(--mmt-ink); font-size: clamp(34px, 4.5vw, 56px); line-height: 1.05; letter-spacing: -.035em; font-weight: 800; }
.section-heading p { max-width: 700px; margin: 18px auto 0; color: #66718e; font-size: 16px; line-height: 1.75; }
.section-heading h2 span { color: var(--mmt-blue); }

.startup-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.startup-feature {
  position: relative;
  min-height: 225px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(11,72,237,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(20,45,110,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.startup-feature:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(20,45,110,.14); }
.startup-feature::after { content:""; position:absolute; width:100px; height:100px; right:-45px; bottom:-45px; border-radius:50%; background:rgba(24,168,215,.10); }
.feature-number { position:absolute; top:18px; right:22px; color:#aeb8ce; font-size:12px; font-weight:800; }
.startup-feature > i { display:grid; place-items:center; width:50px; height:50px; margin-bottom:24px; border-radius:15px; color:var(--mmt-blue); background:rgba(11,72,237,.09); }
.startup-feature:nth-child(3n+1) > i { color:var(--mmt-cyan); background:rgba(23,169,216,.11); }
.startup-feature:nth-child(3n+3) > i { color:var(--mmt-orange); background:rgba(246,162,26,.14); }
.startup-feature h3 { margin:0 0 10px; color:var(--mmt-ink); font-size:20px; }
.startup-feature p { margin:0; color:#6b7690; font-size:14px; line-height:1.65; }

.startup-details { padding: 105px 0; background:#fff; }
.startup-detail-list { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.startup-detail { display:grid; grid-template-columns:60px 1fr; gap:18px; padding:26px; border:1px solid var(--mmt-line); border-radius:22px; background:#fff; box-shadow:0 14px 45px rgba(20,45,110,.06); }
.detail-icon { width:60px; height:60px; display:grid; place-items:center; border-radius:18px; background:var(--mmt-gradient); color:#fff; box-shadow:0 10px 25px rgba(11,72,237,.2); }
.startup-detail span { color:var(--mmt-blue); font-size:10px; font-weight:800; letter-spacing:.16em; }
.startup-detail h3 { margin:7px 0 8px; color:var(--mmt-ink); font-size:20px; }
.startup-detail p { margin:0; color:#6a748d; font-size:14px; line-height:1.7; }

.startup-cta { padding: 90px 0; background:#f5f8ff; }
.startup-cta-box { display:flex; align-items:center; justify-content:space-between; gap:30px; padding:50px; border-radius:30px; color:#fff; background:var(--mmt-blue-dark); overflow:hidden; position:relative; }
.startup-cta-box::after { content:""; position:absolute; width:300px; height:300px; right:-100px; top:-140px; border-radius:50%; background:rgba(23,169,216,.20); }
.startup-cta-box h2 { margin:0; font-size:clamp(30px,4vw,50px); line-height:1; letter-spacing:-.03em; }
.startup-cta-box p { margin:14px 0 0; color:rgba(255,255,255,.7); }
.startup-cta-box .mmt-primary-btn { position:relative; z-index:1; flex:none; }

.faq-hero { min-height: 530px; }
.faq-hero-content { padding-top:90px; padding-bottom:90px; }
.faq-search-wrap { width:min(760px,100%); height:62px; display:flex; align-items:center; gap:12px; margin-top:32px; padding:0 17px; border:1px solid rgba(255,255,255,.35); border-radius:18px; background:rgba(255,255,255,.12); backdrop-filter:blur(14px); box-shadow:0 18px 55px rgba(0,0,0,.12); }
.faq-search-wrap > i { color:#ffd36a; }
.faq-search-wrap input { min-width:0; flex:1; border:0; outline:0; background:transparent; color:#fff; font:inherit; }
.faq-search-wrap input::placeholder { color:rgba(255,255,255,.7); }
.faq-search-wrap span { white-space:nowrap; color:rgba(255,255,255,.68); font-size:12px; }

.faq-content { padding:100px 0; }
.faq-layout { display:grid; grid-template-columns:300px 1fr; gap:40px; align-items:start; }
.faq-sidebar { position:sticky; top:115px; }
.faq-side-card { padding:28px; border-radius:24px; background:var(--mmt-blue-dark); color:#fff; box-shadow:0 20px 55px rgba(7,27,102,.16); }
.faq-side-card h3 { margin:5px 0 12px; font-size:24px; line-height:1.15; }
.faq-side-card p { margin:0 0 22px; color:rgba(255,255,255,.7); font-size:14px; line-height:1.65; }
.faq-side-card .mmt-eyebrow { color:#ffd36a; }
.faq-mini-stats { margin-top:14px; padding:20px 22px; border:1px solid var(--mmt-line); border-radius:20px; background:#fff; }
.faq-mini-stats strong { display:block; color:var(--mmt-blue); font-size:32px; line-height:1; }
.faq-mini-stats span { display:block; margin-top:7px; color:#6c7790; font-size:12px; }
.faq-list { display:grid; gap:12px; }
.faq-item { overflow:hidden; border:1px solid var(--mmt-line); border-radius:18px; background:#fff; box-shadow:0 10px 35px rgba(20,45,110,.045); transition:border-color .2s ease, box-shadow .2s ease; }
.faq-item.is-open { border-color:rgba(11,72,237,.28); box-shadow:0 18px 45px rgba(11,72,237,.09); }
.faq-question { width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:22px 24px; border:0; background:transparent; color:var(--mmt-ink); text-align:left; font:700 16px/1.45 "Poppins", Arial, sans-serif; cursor:pointer; }
.faq-question i { flex:none; width:30px; height:30px; display:grid; place-items:center; border-radius:50%; background:rgba(11,72,237,.08); color:var(--mmt-blue); font-size:12px; transition:transform .2s ease, background .2s ease; }
.faq-item.is-open .faq-question i { background:var(--mmt-blue); color:#fff; }
.faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .3s ease; }
.faq-answer p { min-height:0; overflow:hidden; margin:0; padding:0 24px; color:#68738d; font-size:14px; line-height:1.75; }
.faq-item.is-open .faq-answer { grid-template-rows:1fr; }
.faq-item.is-open .faq-answer p { padding-bottom:23px; }
.faq-empty { margin-top:20px; padding:60px 20px; border:1px dashed rgba(11,72,237,.25); border-radius:24px; text-align:center; background:#fff; }
.faq-empty i { color:var(--mmt-orange); font-size:32px; }
.faq-empty h3 { color:var(--mmt-ink); margin:12px 0 5px; }
.faq-empty p { color:#68738d; }
.faq-empty .mmt-ghost-btn { color:var(--mmt-blue) !important; border-color:rgba(11,72,237,.2); background:#fff; }

@media (max-width: 900px) {
  .mmt-inner-hero { min-height:520px; }
  .startup-floating-card { display:none; }
  .startup-feature-grid { grid-template-columns:repeat(2,1fr); }
  .startup-detail-list { grid-template-columns:1fr; }
  .faq-layout { grid-template-columns:1fr; }
  .faq-sidebar { position:static; }
  .faq-side-card { display:none; }
  .faq-mini-stats { display:none; }
  .startup-cta-box { align-items:flex-start; flex-direction:column; padding:38px 30px; }
}

@media (max-width: 600px) {
  .mmt-page-container { width:calc(100% - 28px); }
  .mmt-inner-hero { min-height:560px; }
  .startup-hero-content,
  .faq-hero-content { padding:75px 0; }
  .startup-hero h1,
  .faq-hero h1 { font-size:clamp(39px, 12vw, 58px); }
  .startup-hero p,
  .faq-hero p { font-size:15px; }
  .startup-hero-actions { flex-direction:column; align-items:stretch; }
  .mmt-primary-btn, .mmt-ghost-btn { width:100%; }
  .startup-intro, .startup-details, .faq-content { padding:70px 0; }
  .section-heading.center { margin-bottom:35px; }
  .startup-feature-grid { grid-template-columns:1fr; }
  .startup-feature { min-height:190px; padding:24px; }
  .startup-detail { grid-template-columns:1fr; padding:22px; }
  .detail-icon { width:50px; height:50px; border-radius:15px; }
  .startup-cta { padding:60px 0; }
  .startup-cta-box { border-radius:22px; padding:30px 22px; }
  .faq-search-wrap { height:auto; min-height:58px; padding:10px 14px; }
  .faq-search-wrap span { display:none; }
  .faq-question { padding:18px; font-size:15px; }
  .faq-answer p { padding-left:18px; padding-right:18px; }
  .faq-item.is-open .faq-answer p { padding-bottom:18px; }
}


/* ============================================================
   FAQ — FINAL BLUE GEN-Z HERO + RESPONSIVE CONTENT
   ============================================================ */

.faq-genz-hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(70, 177, 255, .20), transparent 27%),
    linear-gradient(135deg, #0878ee 0%, #0877ee 48%, #0867e4 100%);
  color: #fff;
}

.faq-hero-inner {
  position: relative;
  z-index: 4;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 130px;
  text-align: center;
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-genz-hero h1 {
  margin: 18px 0 10px !important;
  color: #fff !important;
  font-size: clamp(44px, 6vw, 70px) !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: -.04em !important;
}

.faq-hero-line {
  width: 180px;
  height: 3px;
  margin: 0 auto 35px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  position: relative;
}

.faq-hero-line span {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ff9e1b;
  box-shadow: 0 0 0 7px rgba(255,158,27,.16);
}

.faq-genz-hero p {
  max-width: 760px;
  margin: 0 auto !important;
  color: rgba(255,255,255,.94) !important;
  font-size: clamp(16px, 2vw, 20px) !important;
  line-height: 1.6 !important;
}

.faq-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

.faq-orb-one {
  width: 300px;
  height: 300px;
  left: -145px;
  top: -145px;
}

.faq-orb-two {
  width: 220px;
  height: 220px;
  right: -90px;
  top: 35px;
}

.faq-orb-three {
  width: 260px;
  height: 260px;
  right: -110px;
  bottom: -150px;
}

.faq-grid-glow {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}

.faq-wave {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 145px;
  line-height: 0;
}

.faq-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.faq-wave path {
  fill: #fff;
}

.faq-content-genz {
  position: relative;
  background: #fff;
  padding: 62px 20px 90px;
}

.faq-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.faq-section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.faq-kicker {
  display: inline-block;
  color: #0878ee;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.faq-section-heading h2 {
  margin: 9px 0 8px !important;
  color: #172033 !important;
  font-size: clamp(27px, 4vw, 39px) !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}

.faq-section-heading p {
  margin: 0 auto !important;
  max-width: 680px;
  color: #667085 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

.faq-search-wrap {
  width: min(680px, 100%);
  margin: 0 auto 28px;
  position: relative;
}

.faq-search-wrap > span {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  color: #0878ee;
  font-size: 25px;
  line-height: 1;
}

.faq-search-wrap input {
  width: 100%;
  height: 56px;
  padding: 0 20px 0 50px;
  border: 1px solid #d9e4f4;
  border-radius: 16px;
  outline: none;
  background: #f8fbff;
  color: #172033;
  font: inherit;
  box-shadow: 0 8px 28px rgba(16, 80, 160, .07);
}

.faq-search-wrap input:focus {
  border-color: #0878ee;
  box-shadow: 0 0 0 4px rgba(8,120,238,.10);
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-card {
  border: 1px solid #e3eaf4;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(21, 58, 105, .06);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.faq-card:hover {
  border-color: #b8d9fa;
  transform: translateY(-1px);
  box-shadow: 0 13px 30px rgba(21, 58, 105, .09);
}

.faq-card[open] {
  border-color: rgba(8,120,238,.45);
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  min-height: 70px;
  padding: 20px 58px 20px 23px;
  position: relative;
  color: #172033;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary span {
  position: absolute;
  right: 21px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #eaf4ff;
  color: #0878ee;
  font-size: 22px;
  font-weight: 400;
  transition: .2s ease;
}

.faq-card[open] summary span {
  transform: translateY(-50%) rotate(45deg);
  background: #0878ee;
  color: #fff;
}

.faq-answer {
  padding: 0 23px 23px;
  color: #667085;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 700px) {
  .faq-genz-hero {
    min-height: 430px;
  }

  .faq-hero-inner {
    padding: 65px 0 125px;
  }

  .faq-wave {
    height: 105px;
  }

  .faq-content-genz {
    padding-top: 48px;
  }

  .faq-card summary {
    font-size: 15px;
    min-height: 64px;
    padding-left: 18px;
  }

  .faq-answer {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 430px) {
  .faq-hero-inner {
    width: calc(100% - 28px);
  }

  .faq-hero-badge {
    font-size: 11px;
  }

  .faq-genz-hero p {
    font-size: 15px !important;
  }

  .faq-wave {
    height: 85px;
  }

  .faq-content-genz {
    padding-left: 14px;
    padding-right: 14px;
  }
}


/* ============================================================
   PREMIUM AESTHETIC MOTION LAYER
   ============================================================ */

.faq-genz-hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 35%, rgba(88, 196, 255, .28), transparent 25%),
    radial-gradient(circle at 15% 70%, rgba(0, 223, 255, .14), transparent 24%),
    linear-gradient(135deg, #075fe0 0%, #087bf1 48%, #064fd1 100%);
}

.faq-genz-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.10), transparent 22%),
    conic-gradient(from 180deg at 50% 50%, transparent, rgba(255,255,255,.08), transparent 35%);
  animation: faqAura 12s linear infinite;
}

.faq-genz-hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(255,255,255,.025),
    0 0 0 90px rgba(255,255,255,.018);
  animation: faqPulse 5s ease-in-out infinite;
  pointer-events: none;
}

.faq-hero-inner {
  animation: faqHeroIn .9s cubic-bezier(.22,1,.36,1) both;
}

.faq-hero-badge {
  box-shadow: 0 10px 35px rgba(0,0,0,.10), inset 0 1px rgba(255,255,255,.20);
  animation: faqBadgeFloat 4s ease-in-out infinite;
}

.faq-genz-hero h1 {
  text-shadow: 0 8px 35px rgba(0, 30, 90, .18);
}

.faq-hero-line {
  animation: faqLineIn .8s .25s cubic-bezier(.22,1,.36,1) both;
}

.faq-genz-hero p {
  animation: faqTextIn .8s .35s cubic-bezier(.22,1,.36,1) both;
}

.faq-orb-one {
  animation: faqOrbOne 11s ease-in-out infinite;
}

.faq-orb-two {
  animation: faqOrbTwo 9s ease-in-out infinite;
}

.faq-orb-three {
  animation: faqOrbThree 12s ease-in-out infinite;
}

.faq-grid-glow {
  animation: faqGridMove 18s linear infinite;
}

.faq-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.faq-particle {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.78);
  box-shadow: 0 0 14px rgba(255,255,255,.85);
  animation: faqParticle 7s ease-in-out infinite;
}

.faq-particle.p1 { left: 12%; top: 31%; animation-delay: -.8s; }
.faq-particle.p2 { left: 23%; top: 62%; width: 3px; height: 3px; animation-delay: -3s; }
.faq-particle.p3 { left: 36%; top: 22%; animation-delay: -5s; }
.faq-particle.p4 { left: 67%; top: 27%; width: 4px; height: 4px; animation-delay: -2s; }
.faq-particle.p5 { left: 79%; top: 58%; animation-delay: -4s; }
.faq-particle.p6 { left: 88%; top: 37%; width: 3px; height: 3px; animation-delay: -1s; }
.faq-particle.p7 { left: 57%; top: 67%; width: 3px; height: 3px; animation-delay: -6s; }
.faq-particle.p8 { left: 45%; top: 47%; animation-delay: -3.5s; }

.faq-wave {
  filter: drop-shadow(0 -10px 25px rgba(0, 56, 160, .08));
}

.faq-content-genz {
  overflow: hidden;
}

.faq-section-heading {
  animation: faqContentIn .8s cubic-bezier(.22,1,.36,1) both;
}

.faq-kicker {
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf6ff;
  box-shadow: inset 0 0 0 1px #d7eaff;
}

.faq-section-heading h2 {
  letter-spacing: -.035em !important;
}

.faq-search-wrap {
  transition: transform .25s ease;
}

.faq-search-wrap:focus-within {
  transform: translateY(-2px);
}

.faq-search-wrap input {
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.faq-card {
  position: relative;
  transition:
    transform .3s cubic-bezier(.22,1,.36,1),
    border-color .25s ease,
    box-shadow .3s ease;
  animation: faqCardIn .65s cubic-bezier(.22,1,.36,1) both;
}

.faq-card:nth-child(1) { animation-delay: .05s; }
.faq-card:nth-child(2) { animation-delay: .09s; }
.faq-card:nth-child(3) { animation-delay: .13s; }
.faq-card:nth-child(4) { animation-delay: .17s; }
.faq-card:nth-child(5) { animation-delay: .21s; }
.faq-card:nth-child(6) { animation-delay: .25s; }
.faq-card:nth-child(7) { animation-delay: .29s; }
.faq-card:nth-child(8) { animation-delay: .33s; }
.faq-card:nth-child(9) { animation-delay: .37s; }
.faq-card:nth-child(10) { animation-delay: .41s; }

.faq-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(#0878ee, #ff9e1b);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .3s ease;
}

.faq-card:hover::before,
.faq-card[open]::before {
  transform: scaleY(1);
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(17, 67, 130, .12);
}

.faq-card[open] {
  box-shadow: 0 16px 40px rgba(8,120,238,.12);
}

.faq-card summary span {
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .25s ease, color .25s ease;
}

.faq-answer {
  animation: faqAnswer .35s ease both;
}

.faq-reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: faqReveal .8s .12s cubic-bezier(.22,1,.36,1) forwards;
}

.faq-delay-1 { animation-delay: .22s; }
.faq-delay-2 { animation-delay: .34s; }

@keyframes faqHeroIn {
  from { opacity: 0; transform: translateY(28px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes faqTextIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes faqLineIn {
  from { opacity: 0; transform: scaleX(.15); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes faqBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes faqAura {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.08); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes faqPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(.94); opacity: .45; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: .9; }
}

@keyframes faqOrbOne {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(55px, 35px); }
}

@keyframes faqOrbTwo {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-35px, 50px) scale(1.12); }
}

@keyframes faqOrbThree {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-45px, -30px); }
}

@keyframes faqGridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 42px 42px, 42px 42px; }
}

@keyframes faqParticle {
  0%, 100% { opacity: .25; transform: translate3d(0, 12px, 0) scale(.8); }
  50% { opacity: 1; transform: translate3d(12px, -22px, 0) scale(1.25); }
}

@keyframes faqContentIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes faqCardIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes faqReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes faqAnswer {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .faq-genz-hero *,
  .faq-card,
  .faq-section-heading,
  .faq-search-wrap {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 700px) {
  .faq-genz-hero::after {
    width: 390px;
    height: 390px;
  }

  .faq-particle {
    opacity: .55;
  }
}



/* ============================================================
   MIND MARQ — PREMIUM AESTHETIC DESIGN SYSTEM
   Unified across all pages.
   Palette: Ink Navy + Logo Cyan + Warm Orange + Cloud White
   ============================================================ */

:root {
  --mm-ink: #09162f;
  --mm-navy: #0b2145;
  --mm-blue: #087fbe;
  --mm-cyan: #13a8c7;
  --mm-cyan-soft: #e8f9fc;
  --mm-orange: #f6a21a;
  --mm-orange-soft: #fff4dd;
  --mm-cloud: #f6f9fc;
  --mm-white: #ffffff;
  --mm-muted: #607089;
  --mm-border: rgba(9, 33, 69, .10);
  --mm-shadow: 0 18px 55px rgba(9, 33, 69, .10);
  --mm-shadow-hover: 0 28px 70px rgba(9, 33, 69, .16);
  --mm-radius: 22px;
}

html { scroll-behavior: smooth; }

body {
  color: var(--mm-ink);
  background: var(--mm-cloud);
  overflow-x: hidden;
}

::selection {
  background: rgba(19,168,199,.22);
  color: var(--mm-ink);
}

/* ----- shared header ----- */

nav {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(9,33,69,.07);
  box-shadow: 0 10px 35px rgba(9,33,69,.07) !important;
  transition: background .3s ease, box-shadow .3s ease;
}

nav .wrapper {
  max-width: 1380px !important;
  height: 92px !important;
  line-height: 92px !important;
  padding: 0 34px !important;
}

.wrapper .logo a img {
  width: 150px !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}

.wrapper .nav-links {
  align-items: center;
  gap: 4px;
  padding-top: 0 !important;
}

.nav-links li a {
  position: relative;
  color: var(--mm-ink) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 11px 13px !important;
  border-radius: 12px !important;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--mm-cyan), var(--mm-orange));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav-links li a:hover {
  background: var(--mm-cyan-soft) !important;
  color: var(--mm-blue) !important;
}

.nav-links li a:hover::after { transform: scaleX(1); }

.cta-btn {
  border: 1px solid var(--mm-blue) !important;
  color: var(--mm-ink) !important;
  border-radius: 14px !important;
  padding: 10px 17px !important;
  font-weight: 700 !important;
  background: linear-gradient(180deg,#fff,#f7fcff) !important;
  box-shadow: 0 7px 22px rgba(8,127,190,.10);
}

.cta-btn:hover {
  color: #fff !important;
  background: linear-gradient(135deg,var(--mm-blue),var(--mm-cyan)) !important;
  border-color: transparent !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(8,127,190,.25);
}

.mega-box .content,
.nav-links .drop-menu {
  border: 1px solid var(--mm-border);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 22px 55px rgba(9,33,69,.12) !important;
}

/* ----- shared page hero for About / Clients / Products / Services / Blogs / Contact ----- */

.container-xxl.py-5.bg-primary.hero-about {
  position: relative;
  min-height: 390px;
  margin-top: 0 !important;
  padding: 145px 20px 105px !important;
  overflow: hidden;
  color: #fff !important;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.15), transparent 23%),
    radial-gradient(circle at 85% 10%, rgba(19,168,199,.25), transparent 28%),
    radial-gradient(circle at 70% 100%, rgba(246,162,26,.12), transparent 25%),
    linear-gradient(135deg,#062d66 0%, #076fb0 47%, #0c9ab8 100%) !important;
  isolation: isolate;
}

.container-xxl.py-5.bg-primary.hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 90%);
  animation: mmGrid 18s linear infinite;
  z-index: -1;
}

.container-xxl.py-5.bg-primary.hero-about::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  top: -250px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 0 0 55px rgba(255,255,255,.035),
    0 0 0 110px rgba(255,255,255,.025);
  animation: mmHeroOrbit 11s ease-in-out infinite;
  z-index: -1;
}

.container-xxl.py-5.bg-primary.hero-about .container,
.container-xxl.py-5.bg-primary.hero-about > div {
  position: relative;
  z-index: 2;
}

.hero-about h1,
.hero-about h2,
.hero-about h3,
.hero-about h4,
.hero-about p,
.hero-about .breadcrumb-item,
.hero-about .breadcrumb-item a {
  color: #fff !important;
}

.hero-about h1,
.hero-about h2 {
  font-weight: 800 !important;
  letter-spacing: -.035em !important;
  text-shadow: 0 12px 30px rgba(0,20,50,.18);
}

.hero-about h1 {
  font-size: clamp(2.35rem, 5vw, 4.5rem) !important;
}

.hero-about h3 {
  font-size: clamp(1rem, 1.6vw, 1.25rem) !important;
  opacity: .9;
}

.about-line::after,
.clients-line::after,
.products-line::after,
.services-line::after,
.blog-line::after,
.contact-line::after {
  width: 95px !important;
  height: 3px !important;
  margin: 17px auto 0 !important;
  border-radius: 20px;
  background: linear-gradient(90deg,var(--mm-orange),#ffd06c) !important;
  box-shadow: 0 0 20px rgba(246,162,26,.35);
}

.breadcrumb {
  margin-top: 18px !important;
  opacity: .9;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.65) !important;
}

/* ----- main content backgrounds ----- */

.about-wrapper,
.client-wrapper,
.product-wrapper,
.services-wrapper,
.blog-wrapper,
.contact-wrapper {
  background:
    radial-gradient(circle at 0 20%, rgba(19,168,199,.055), transparent 24%),
    radial-gradient(circle at 100% 65%, rgba(246,162,26,.045), transparent 23%),
    var(--mm-cloud) !important;
}

.about-wrapper .container.my-5,
.client-wrapper .container.my-5,
.product-wrapper .container.my-5,
.services-wrapper .container.my-5,
.blog-wrapper .container.my-5,
.contact-wrapper .container.my-5 {
  max-width: 1280px;
}

/* ----- modern cards ----- */

.about-wrapper .new-card,
.clients-card,
.products-card,
.services-card,
.blogs-card,
.contact_card {
  border: 1px solid var(--mm-border) !important;
  border-radius: var(--mm-radius) !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: var(--mm-shadow) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.clients-card,
.products-card,
.services-card {
  position: relative;
  overflow: hidden;
  margin: 28px auto !important;
}

.clients-card::before,
.products-card::before,
.services-card::before,
.blogs-card::before,
.contact_card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,var(--mm-cyan),var(--mm-blue),var(--mm-orange));
  opacity: .9;
}

.clients-card:hover,
.products-card:hover,
.services-card:hover,
.blogs-card:hover,
.contact_card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--mm-shadow-hover) !important;
}

.clients-card img,
.products-card img,
.services-card img,
.blogs-card img {
  transition: transform .45s cubic-bezier(.22,1,.36,1), filter .45s ease;
}

.clients-card:hover img,
.products-card:hover img,
.services-card:hover img,
.blogs-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

/* typography */

.about-text h3,
.new-container h2,
.products-left h2,
.services-left h2,
.blog-text h2,
.contact_right_h3 {
  color: var(--mm-ink) !important;
  text-shadow: none !important;
}

.about-text p,
.new-container p,
.products-left p,
.services-left p,
.blogs-card p,
.contact-wrapper .text,
.client-wrapper p {
  color: var(--mm-muted) !important;
}

/* ----- section headings ----- */

.home-services > h2,
.industries > h2,
.technologies > h2,
.home-portfolio > h2,
.client-wrapper h2,
.product-wrapper h2,
.services-wrapper h2,
.blog-wrapper h2 {
  color: var(--mm-ink);
  font-weight: 800;
  letter-spacing: -.035em;
}

.home-line div:nth-child(1),
.home-line div:nth-child(3),
.line div:nth-child(1),
.line div:nth-child(3) {
  background: linear-gradient(90deg,var(--mm-cyan),var(--mm-blue)) !important;
}

.home-line div:nth-child(2),
.line div:nth-child(2) {
  background: var(--mm-orange) !important;
  box-shadow: 0 0 0 6px rgba(246,162,26,.12);
}

/* ----- Home page ----- */

.home-wrapper {
  background:
    radial-gradient(circle at 5% 25%, rgba(19,168,199,.06), transparent 22%),
    radial-gradient(circle at 95% 60%, rgba(246,162,26,.055), transparent 20%),
    var(--mm-cloud) !important;
}

.home-wrapper .page1 {
  position: relative;
  min-height: min(760px, calc(100vh - 92px));
  overflow: hidden;
  background: #071b3c;
}

.home-wrapper .page1::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,17,45,.74) 0%, rgba(2,17,45,.38) 42%, rgba(2,17,45,.06) 75%),
    linear-gradient(0deg, rgba(4,25,55,.42), transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.home-wrapper .page1 video {
  width: 100%;
  height: 100%;
  min-height: min(760px, calc(100vh - 92px));
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.015);
  animation: mmHeroVideo 16s ease-in-out infinite alternate;
}

.home-wrapper .bottom-page1 {
  z-index: 3;
  max-width: 800px;
  left: clamp(30px, 7vw, 105px);
  bottom: clamp(70px, 12vh, 130px);
}

.home-wrapper .bottom-page1 h2 {
  color: #fff !important;
  font-size: clamp(2.5rem, 5.2vw, 5.2rem) !important;
  line-height: .98 !important;
  letter-spacing: -.045em;
  text-shadow: 0 18px 50px rgba(0,0,0,.3);
}

.home-wrapper .bottom-page1 h4 {
  max-width: 730px;
  margin-top: 24px;
  color: rgba(255,255,255,.86) !important;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.65;
}

.home-services,
.industries,
.technologies {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.home-services-container,
.industries-container,
.technologies-container {
  position: relative;
}

.home-services-card,
.industry,
.technologies-container > div {
  border: 1px solid var(--mm-border) !important;
  background: rgba(255,255,255,.84) !important;
  box-shadow: 0 14px 38px rgba(9,33,69,.07) !important;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease !important;
}

.home-services-card:hover,
.industry:hover,
.technologies-container > div:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(19,168,199,.30) !important;
  box-shadow: 0 24px 55px rgba(9,33,69,.13) !important;
}

.home-services-card h4,
.industry h4 {
  color: var(--mm-ink) !important;
}

.home-services-card p {
  color: var(--mm-muted) !important;
}

/* ----- Clients ----- */

.client-wrapper .clients-card {
  min-height: 245px;
}

.client-wrapper .clients-card .left,
.client-wrapper .clients-card .right {
  position: relative;
  z-index: 1;
}

.client-wrapper .button {
  border-color: var(--mm-blue) !important;
  color: var(--mm-blue) !important;
  border-radius: 12px !important;
}

.client-wrapper .button:hover {
  background: var(--mm-blue) !important;
  color: #fff !important;
}

/* ----- Products + Services ----- */

.product-wrapper .products-card,
.services-wrapper .services-card {
  min-height: 280px;
}

.products-left .products-learn-more,
.service-learn-more {
  color: var(--mm-blue) !important;
  transition: color .25s ease, transform .25s ease;
}

.products-left .products-learn-more:hover,
.service-learn-more:hover {
  color: var(--mm-orange) !important;
}

.hr-line {
  border-top-color: var(--mm-cyan) !important;
}

/* ----- Blogs ----- */

.blog-wrapper .card-container {
  gap: 28px !important;
}

.blog-wrapper .blogs-card {
  overflow: hidden;
  border-radius: 22px !important;
  background: #fff !important;
}

.blog-wrapper .blogs-card .card-header {
  color: var(--mm-ink) !important;
}

.blog-wrapper .date {
  color: var(--mm-orange) !important;
}

.blog-wrapper .learn-more {
  color: var(--mm-blue) !important;
}

/* ----- Contact ----- */

.contact-wrapper .contact-body {
  padding-top: 60px;
  padding-bottom: 80px;
}

.contact-info > * {
  transition: transform .3s ease;
}

.contact-info > *:hover {
  transform: translateY(-4px);
}

.contact-wrapper .contact_card {
  padding: 30px !important;
}

.contact-wrapper .form-control {
  border: 1px solid rgba(9,33,69,.12) !important;
  border-radius: 14px !important;
  background: #fbfdff !important;
  padding: 13px 15px !important;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.contact-wrapper .form-control:focus {
  border-color: var(--mm-cyan) !important;
  box-shadow: 0 0 0 4px rgba(19,168,199,.12) !important;
  transform: translateY(-1px);
}

.contact-wrapper .send-btn,
.contact-wrapper .mmt-primary-btn {
  background: linear-gradient(135deg,var(--mm-blue),var(--mm-cyan)) !important;
  border: 0 !important;
  border-radius: 13px !important;
  box-shadow: 0 12px 28px rgba(8,127,190,.22);
}

/* ----- Startup ----- */

.startup-page {
  background:
    radial-gradient(circle at 5% 10%, rgba(19,168,199,.08), transparent 22%),
    radial-gradient(circle at 95% 35%, rgba(246,162,26,.07), transparent 22%),
    var(--mm-cloud) !important;
}

.startup-hero {
  background:
    radial-gradient(circle at 80% 25%, rgba(19,168,199,.20), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(246,162,26,.10), transparent 25%),
    linear-gradient(135deg,#071d40,#0a4f86 58%,#0b8da7) !important;
}

.startup-intro,
.startup-details {
  background: transparent !important;
}

.startup-feature,
.startup-detail,
.startup-cta-box {
  border: 1px solid var(--mm-border) !important;
  box-shadow: var(--mm-shadow) !important;
  background: rgba(255,255,255,.90) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease !important;
}

.startup-feature:hover,
.startup-detail:hover {
  transform: translateY(-8px);
  border-color: rgba(19,168,199,.28) !important;
  box-shadow: var(--mm-shadow-hover) !important;
}

.feature-number,
.detail-icon {
  background: linear-gradient(135deg,var(--mm-cyan),var(--mm-blue)) !important;
  box-shadow: 0 10px 25px rgba(8,127,190,.22);
}

.mmt-primary-btn {
  background: linear-gradient(135deg,var(--mm-blue),var(--mm-cyan)) !important;
  border: 0 !important;
  box-shadow: 0 14px 30px rgba(8,127,190,.23);
  border-radius: 14px !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}

.mmt-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(8,127,190,.30);
}

/* ----- FAQ ----- */

.faq-page {
  background:
    radial-gradient(circle at 10% 30%, rgba(19,168,199,.06), transparent 24%),
    radial-gradient(circle at 90% 70%, rgba(246,162,26,.05), transparent 22%),
    var(--mm-cloud) !important;
}

.faq-genz-hero {
  background:
    radial-gradient(circle at 50% 35%, rgba(19,168,199,.22), transparent 28%),
    radial-gradient(circle at 10% 70%, rgba(246,162,26,.10), transparent 20%),
    linear-gradient(135deg,#062d66,#087fbe 52%,#0ca5bf) !important;
}

.faq-content {
  background: transparent !important;
}

.faq-layout {
  gap: 42px !important;
}

.faq-side-card,
.faq-item {
  border: 1px solid var(--mm-border) !important;
  box-shadow: 0 16px 45px rgba(9,33,69,.08) !important;
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-side-card {
  border-radius: 24px !important;
}

.faq-item {
  border-radius: 18px !important;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease !important;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(19,168,199,.26) !important;
  box-shadow: 0 22px 55px rgba(9,33,69,.12) !important;
}

.faq-question {
  color: var(--mm-ink) !important;
}

.faq-question i {
  color: var(--mm-blue) !important;
}

.faq-answer {
  color: var(--mm-muted) !important;
}

/* ----- shared floating widgets ----- */

.whatsapp-button {
  width: 58px !important;
  height: 58px !important;
  right: 28px !important;
  bottom: 26px !important;
  background: linear-gradient(145deg,#25d366,#12b957) !important;
  box-shadow: 0 12px 32px rgba(37,211,102,.30) !important;
  animation: mmFloat 3.5s ease-in-out infinite;
}

.whatsapp-button i { font-size: 30px !important; }

#button {
  border-radius: 14px !important;
  background: var(--mm-orange) !important;
  box-shadow: 0 10px 28px rgba(246,162,26,.28);
}

/* ----- scroll reveal for cards ----- */

[data-aos] {
  transition-timing-function: cubic-bezier(.22,1,.36,1) !important;
}

/* ----- responsive ----- */

@media (max-width: 950px) {
  nav .wrapper {
    height: 78px !important;
    line-height: 78px !important;
    padding: 0 20px !important;
  }

  .wrapper .logo a img {
    width: 136px !important;
  }

  .wrapper .btn {
    color: var(--mm-ink) !important;
  }

  .wrapper .nav-links {
    background: rgba(250,253,255,.98) !important;
    backdrop-filter: blur(20px);
  }

  .nav-links li a,
  .nav-links .mobile-item {
    border-radius: 12px !important;
  }

  .container-xxl.py-5.bg-primary.hero-about {
    min-height: 350px;
    padding: 120px 18px 85px !important;
  }
}

@media (max-width: 700px) {
  .container-xxl.py-5.bg-primary.hero-about {
    min-height: 320px;
    padding: 108px 16px 75px !important;
  }

  .home-wrapper .page1,
  .home-wrapper .page1 video {
    min-height: 620px;
  }

  .home-wrapper .bottom-page1 {
    left: 24px;
    right: 24px;
    bottom: 65px;
  }

  .home-wrapper .bottom-page1 h2 {
    font-size: clamp(2.25rem, 12vw, 3.7rem) !important;
  }

  .home-services,
  .industries,
  .technologies {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }

  .clients-card,
  .products-card,
  .services-card {
    margin: 18px 10px !important;
    border-radius: 18px !important;
  }

  .client-wrapper .clients-card,
  .product-wrapper .products-card,
  .services-wrapper .services-card {
    min-height: 0;
  }

  .contact-wrapper .contact-body {
    padding-top: 35px;
    padding-bottom: 55px;
  }

  .faq-layout {
    gap: 24px !important;
  }
}

@keyframes mmGrid {
  to { background-position: 44px 44px; }
}

@keyframes mmHeroOrbit {
  0%,100% { transform: translate(0,0) scale(.96); opacity: .55; }
  50% { transform: translate(-35px,35px) scale(1.04); opacity: 1; }
}

@keyframes mmHeroVideo {
  from { transform: scale(1.015); }
  to { transform: scale(1.055); }
}

@keyframes mmFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}



.mm-motion-card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .75s var(--mm-delay, 0ms) cubic-bezier(.22,1,.36,1),
    transform .75s var(--mm-delay, 0ms) cubic-bezier(.22,1,.36,1),
    box-shadow .35s ease,
    border-color .35s ease !important;
}

.mm-motion-card.mm-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MMT — MODERN STARTUP + FAQ VISUAL REFRESH
   Scoped only to Startup and FAQ pages.
   Palette: Midnight Navy / Electric Cyan / Warm Bulb Orange / Soft Lilac
   ============================================================ */

/* ---------- STARTUP: midnight innovation / glassmorphism ---------- */
body[data-route="/startup"] {
  --startup-ink: #081329;
  --startup-navy: #0a1638;
  --startup-blue: #1267f4;
  --startup-cyan: #20d5e8;
  --startup-orange: #ffae2b;
  --startup-lilac: #9b7cff;
  background: #f6f8fc;
}

body[data-route="/startup"] .startup-hero {
  min-height: 680px;
  background:
    radial-gradient(circle at 78% 20%, rgba(32,213,232,.22), transparent 23%),
    radial-gradient(circle at 15% 82%, rgba(155,124,255,.18), transparent 28%),
    radial-gradient(circle at 62% 65%, rgba(255,174,43,.10), transparent 19%),
    linear-gradient(128deg, #050b1c 0%, #081634 42%, #0b2870 73%, #075f91 100%);
}

body[data-route="/startup"] .startup-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .55;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(32,213,232,.08) 38.2%, transparent 38.6%),
    linear-gradient(70deg, transparent 0 63%, rgba(255,174,43,.08) 63.2%, transparent 63.7%);
  pointer-events: none;
}

body[data-route="/startup"] .startup-grid {
  opacity: .16;
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 5%, black 65%, transparent 100%);
}

body[data-route="/startup"] .startup-orb-one {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 30px;
  background: radial-gradient(circle, rgba(32,213,232,.28), rgba(18,103,244,.08) 48%, transparent 72%);
  filter: blur(1px);
  animation: startupOrb 9s ease-in-out infinite alternate;
}

body[data-route="/startup"] .startup-orb-two {
  width: 280px;
  height: 280px;
  right: 34%;
  bottom: -140px;
  background: radial-gradient(circle, rgba(255,174,43,.18), rgba(155,124,255,.06) 52%, transparent 73%);
  animation: startupOrb 8s ease-in-out -2s infinite alternate-reverse;
}

@keyframes startupOrb {
  from { transform: translate3d(0,0,0) scale(.96); }
  to { transform: translate3d(-20px,18px,0) scale(1.06); }
}

body[data-route="/startup"] .startup-hero-content {
  padding-top: 118px;
  padding-bottom: 118px;
}

body[data-route="/startup"] .startup-hero .mmt-eyebrow {
  padding: 9px 14px;
  border: 1px solid rgba(32,213,232,.30);
  border-radius: 999px;
  background: rgba(32,213,232,.07);
  color: #76f2ff;
  box-shadow: inset 0 0 20px rgba(32,213,232,.05);
}

body[data-route="/startup"] .startup-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 92px);
  text-shadow: 0 18px 60px rgba(0,0,0,.24);
}

body[data-route="/startup"] .startup-hero h1 span {
  background: linear-gradient(90deg, #ffffff 0%, #79f5ff 45%, #ffbf55 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-route="/startup"] .startup-hero p {
  max-width: 720px;
  color: rgba(241,247,255,.78);
  font-size: 18px;
}

body[data-route="/startup"] .mmt-primary-btn {
  border: 1px solid rgba(255,174,43,.45);
  background: linear-gradient(135deg, #ffb52f, #ff8e1f);
  box-shadow: 0 16px 40px rgba(255,153,33,.25);
}

body[data-route="/startup"] .mmt-ghost-btn {
  border-color: rgba(117,236,255,.32);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 0 22px rgba(32,213,232,.035);
}

body[data-route="/startup"] .mmt-primary-btn:hover,
body[data-route="/startup"] .mmt-ghost-btn:hover {
  transform: translateY(-4px);
}

body[data-route="/startup"] .startup-floating-card {
  width: 205px;
  padding: 16px;
  border-color: rgba(126,237,255,.20);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  box-shadow: 0 24px 70px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.14);
}

body[data-route="/startup"] .startup-floating-card i {
  background: linear-gradient(135deg, rgba(32,213,232,.20), rgba(255,174,43,.18));
  color: #9ff9ff;
}

body[data-route="/startup"] .startup-intro {
  position: relative;
  overflow: hidden;
  padding: 115px 0 105px;
  background:
    radial-gradient(circle at 8% 15%, rgba(32,213,232,.10), transparent 22%),
    radial-gradient(circle at 94% 82%, rgba(155,124,255,.10), transparent 24%),
    #f7f9fd;
}

body[data-route="/startup"] .startup-intro::before,
body[data-route="/startup"] .startup-details::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(18,103,244,.07);
  border-radius: 50%;
  pointer-events: none;
}

body[data-route="/startup"] .startup-intro::before { left: -130px; top: 80px; box-shadow: 0 0 0 42px rgba(32,213,232,.025), 0 0 0 84px rgba(32,213,232,.018); }

body[data-route="/startup"] .section-heading h2 {
  color: #0a1732;
}

body[data-route="/startup"] .section-heading h2 span {
  background: linear-gradient(90deg, #1267f4, #18c9df, #ff9f22);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-route="/startup"] .section-heading .mmt-eyebrow {
  color: #1267f4;
}

body[data-route="/startup"] .startup-feature {
  min-height: 245px;
  border: 1px solid rgba(10,23,50,.075);
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 45px rgba(9,34,78,.07);
  backdrop-filter: blur(14px);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}

body[data-route="/startup"] .startup-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(32,213,232,.08), transparent 35%, rgba(155,124,255,.06));
  opacity: 0;
  transition: opacity .35s ease;
}

body[data-route="/startup"] .startup-feature:hover {
  transform: translateY(-10px);
  border-color: rgba(18,103,244,.18);
  box-shadow: 0 28px 70px rgba(9,34,78,.14);
}

body[data-route="/startup"] .startup-feature:hover::before { opacity: 1; }

body[data-route="/startup"] .startup-feature > i {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #1267f4, #16bfd8);
  box-shadow: 0 12px 28px rgba(18,103,244,.20);
}

body[data-route="/startup"] .startup-feature:nth-child(3n+1) > i { background: linear-gradient(135deg, #08a8c7, #20d5e8); color:#061529; }
body[data-route="/startup"] .startup-feature:nth-child(3n+3) > i { background: linear-gradient(135deg, #ffb52f, #ff8e1f); color:#17213a; }

body[data-route="/startup"] .startup-details {
  position: relative;
  overflow: hidden;
  background: #fff;
}

body[data-route="/startup"] .startup-detail {
  border-radius: 24px;
  border-color: rgba(10,23,50,.08);
  box-shadow: 0 15px 50px rgba(9,34,78,.065);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

body[data-route="/startup"] .startup-detail:hover {
  transform: translateY(-6px);
  border-color: rgba(32,213,232,.25);
  box-shadow: 0 25px 65px rgba(9,34,78,.12);
}

body[data-route="/startup"] .detail-icon {
  background: linear-gradient(145deg, #081b48, #1267f4 65%, #20d5e8);
  box-shadow: 0 14px 30px rgba(18,103,244,.20);
}

body[data-route="/startup"] .startup-detail span { color: #1267f4; }

body[data-route="/startup"] .startup-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fd, #edf4fb);
}

body[data-route="/startup"] .startup-cta-box {
  min-height: 270px;
  padding: 55px;
  border: 1px solid rgba(126,237,255,.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 20%, rgba(32,213,232,.24), transparent 25%),
    radial-gradient(circle at 20% 100%, rgba(155,124,255,.15), transparent 30%),
    linear-gradient(120deg, #07122e, #0a235b 58%, #075e83);
  box-shadow: 0 30px 90px rgba(8,26,66,.20);
}

body[data-route="/startup"] .startup-cta-box h2 span { color: #72f4ff; }
body[data-route="/startup"] .startup-cta-box .mmt-eyebrow { color: #ffbe55; }

/* ---------- FAQ: editorial indigo + cyan / softer premium UI ---------- */
body[data-route="/faq"] {
  --faq-indigo: #29235f;
  --faq-purple: #6655d9;
  --faq-blue: #258af0;
  --faq-cyan: #24cbd9;
  --faq-orange: #ffae2b;
  --faq-paper: #f7f7fb;
  background: var(--faq-paper);
}

body[data-route="/faq"] .faq-genz-hero {
  min-height: 590px;
  background:
    radial-gradient(circle at 16% 18%, rgba(36,203,217,.20), transparent 25%),
    radial-gradient(circle at 84% 22%, rgba(255,174,43,.17), transparent 21%),
    radial-gradient(circle at 50% 80%, rgba(102,85,217,.34), transparent 33%),
    linear-gradient(135deg, #17153e 0%, #29235f 42%, #315cc7 74%, #168fb7 100%);
}

body[data-route="/faq"] .faq-genz-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 26%, rgba(255,255,255,.045) 26.2% 26.5%, transparent 26.8% 38%, rgba(255,255,255,.035) 38.2% 38.45%, transparent 38.8%),
    linear-gradient(120deg, transparent 0 47%, rgba(255,255,255,.035) 47.2%, transparent 47.7%);
  pointer-events: none;
}

body[data-route="/faq"] .faq-grid-glow {
  opacity: .14;
  background-size: 46px 46px;
}

body[data-route="/faq"] .faq-orb-one,
body[data-route="/faq"] .faq-orb-two,
body[data-route="/faq"] .faq-orb-three {
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.12), rgba(36,203,217,.055) 45%, transparent 72%);
  filter: blur(.3px);
  animation: faqFloat 10s ease-in-out infinite alternate;
}

body[data-route="/faq"] .faq-orb-two { animation-delay: -3s; }
body[data-route="/faq"] .faq-orb-three { animation-delay: -6s; }

@keyframes faqFloat {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(18px,-16px,0); }
}

body[data-route="/faq"] .faq-hero-inner {
  padding: 110px 0 155px;
}

body[data-route="/faq"] .faq-hero-badge {
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 15px 45px rgba(0,0,0,.12);
  color: #e9fdff;
}

body[data-route="/faq"] .faq-genz-hero h1 {
  font-size: clamp(58px, 9vw, 108px) !important;
  letter-spacing: -.06em !important;
  text-shadow: 0 20px 70px rgba(0,0,0,.22);
}

body[data-route="/faq"] .faq-hero-line {
  width: 230px;
  height: 4px;
  margin-bottom: 38px;
  background: linear-gradient(90deg, transparent, #72f5ff 20%, #fff 50%, #ffbe55 80%, transparent);
  box-shadow: 0 0 25px rgba(36,203,217,.22);
}

body[data-route="/faq"] .faq-hero-line span {
  background: #ffb52f;
  box-shadow: 0 0 0 7px rgba(255,181,47,.12), 0 0 25px rgba(255,181,47,.45);
  animation: faqPulse 2s ease-in-out infinite;
}

@keyframes faqPulse {
  50% { transform: translate(-50%, -50%) scale(1.25); box-shadow: 0 0 0 11px rgba(255,181,47,.04), 0 0 32px rgba(255,181,47,.55); }
}

body[data-route="/faq"] .faq-genz-hero p {
  color: rgba(245,250,255,.82) !important;
}

body[data-route="/faq"] .faq-wave path {
  fill: var(--faq-paper);
}

body[data-route="/faq"] .faq-content {
  position: relative;
  padding: 92px 0 115px;
  background:
    radial-gradient(circle at 5% 8%, rgba(102,85,217,.08), transparent 24%),
    radial-gradient(circle at 95% 78%, rgba(36,203,217,.07), transparent 25%),
    var(--faq-paper);
}

body[data-route="/faq"] .faq-layout {
  grid-template-columns: 285px minmax(0,1fr);
  gap: 28px;
}

body[data-route="/faq"] .faq-side-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 26px;
  background:
    radial-gradient(circle at 85% 12%, rgba(36,203,217,.18), transparent 30%),
    linear-gradient(150deg, #17153e, #29235f 68%, #315cc7);
  box-shadow: 0 25px 70px rgba(34,27,87,.18);
}

body[data-route="/faq"] .faq-side-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 24px rgba(255,255,255,.025), 0 0 0 48px rgba(255,255,255,.018);
}

body[data-route="/faq"] .faq-side-card .mmt-eyebrow { color: #ffbe55; }
body[data-route="/faq"] .faq-side-card .mmt-primary-btn { position: relative; z-index: 2; }

body[data-route="/faq"] .faq-mini-stats {
  border: 1px solid rgba(41,35,95,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 14px 40px rgba(34,27,87,.07);
}

body[data-route="/faq"] .faq-mini-stats strong {
  background: linear-gradient(90deg, #29235f, #258af0, #24cbd9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-route="/faq"] .faq-list { gap: 15px; }

body[data-route="/faq"] .faq-item {
  position: relative;
  border: 1px solid rgba(41,35,95,.085);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 35px rgba(34,27,87,.045);
  backdrop-filter: blur(10px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

body[data-route="/faq"] .faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 3px;
  border-radius: 0 5px 5px 0;
  background: linear-gradient(180deg, #24cbd9, #6655d9, #ffae2b);
  opacity: 0;
  transform: scaleY(.5);
  transition: opacity .3s ease, transform .3s ease;
}

body[data-route="/faq"] .faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(102,85,217,.18);
  box-shadow: 0 18px 45px rgba(34,27,87,.085);
}

body[data-route="/faq"] .faq-item.is-open {
  border-color: rgba(102,85,217,.22);
  box-shadow: 0 20px 50px rgba(34,27,87,.10);
}

body[data-route="/faq"] .faq-item.is-open::before { opacity: 1; transform: scaleY(1); }

body[data-route="/faq"] .faq-question {
  padding: 23px 24px;
  color: #141936;
  font-size: 16px;
}

body[data-route="/faq"] .faq-question i {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(102,85,217,.12);
  background: linear-gradient(135deg, rgba(37,138,240,.09), rgba(36,203,217,.12));
  color: #6655d9;
}

body[data-route="/faq"] .faq-item.is-open .faq-question i {
  background: linear-gradient(135deg, #6655d9, #258af0);
  color: #fff;
  box-shadow: 0 7px 18px rgba(102,85,217,.22);
}

body[data-route="/faq"] .faq-answer p {
  color: #697187;
  line-height: 1.8;
}

body[data-route="/faq"] .faq-empty {
  border-color: rgba(102,85,217,.18);
  background: rgba(255,255,255,.75);
}

@media (max-width: 900px) {
  body[data-route="/startup"] .startup-hero { min-height: 620px; }
  body[data-route="/startup"] .startup-hero-content { padding-top: 95px; padding-bottom: 100px; }
  body[data-route="/startup"] .startup-feature-grid { gap: 16px; }
  body[data-route="/faq"] .faq-genz-hero { min-height: 540px; }
  body[data-route="/faq"] .faq-hero-inner { padding-top: 90px; padding-bottom: 140px; }
}

@media (max-width: 600px) {
  body[data-route="/startup"] .startup-hero { min-height: 640px; }
  body[data-route="/startup"] .startup-hero-content { padding-top: 78px; padding-bottom: 90px; }
  body[data-route="/startup"] .startup-hero h1 { font-size: clamp(44px, 13vw, 66px); }
  body[data-route="/startup"] .startup-hero p { font-size: 15px; }
  body[data-route="/startup"] .startup-intro { padding: 82px 0 75px; }
  body[data-route="/startup"] .startup-feature { min-height: 205px; border-radius: 22px; }
  body[data-route="/startup"] .startup-cta-box { padding: 34px 24px; border-radius: 24px; }

  body[data-route="/faq"] .faq-genz-hero { min-height: 500px; }
  body[data-route="/faq"] .faq-hero-inner { width: calc(100% - 28px); padding: 75px 0 125px; }
  body[data-route="/faq"] .faq-genz-hero h1 { font-size: clamp(54px, 17vw, 78px) !important; }
  body[data-route="/faq"] .faq-hero-line { width: 170px; margin-bottom: 28px; }
  body[data-route="/faq"] .faq-content { padding: 70px 0 80px; }
  body[data-route="/faq"] .faq-layout { grid-template-columns: 1fr; }
  body[data-route="/faq"] .faq-sidebar { display: none; }
  body[data-route="/faq"] .faq-question { padding: 19px 18px; font-size: 15px; gap: 12px; }
  body[data-route="/faq"] .faq-question i { width: 31px; height: 31px; }
  body[data-route="/faq"] .faq-answer p { padding-left: 18px; padding-right: 18px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  body[data-route="/startup"] .startup-orb-one,
  body[data-route="/startup"] .startup-orb-two,
  body[data-route="/faq"] .faq-orb-one,
  body[data-route="/faq"] .faq-orb-two,
  body[data-route="/faq"] .faq-orb-three,
  body[data-route="/faq"] .faq-hero-line span {
    animation: none !important;
  }
}


/* ============================================================
   MIND MARQ — UNIFIED BLUE VISUAL SYSTEM
   All internal page heroes use one consistent premium blue.
   ============================================================ */
:root {
  --mmt-unified-blue-1: #0b4f91;
  --mmt-unified-blue-2: #087ab8;
  --mmt-unified-blue-3: #10a7c7;
  --mmt-unified-gradient: linear-gradient(
    118deg,
    var(--mmt-unified-blue-1) 0%,
    var(--mmt-unified-blue-2) 52%,
    var(--mmt-unified-blue-3) 100%
  );
  --mmt-unified-glow: rgba(89, 221, 255, .22);
}

/* Main internal-page hero used by About / Services / Clients / Products /
   Contact / Blogs. */
.hero-about {
  position: relative !important;
  min-height: 430px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  isolation: isolate !important;
  padding: 0 !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.12), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(255,255,255,.10), transparent 22%),
    radial-gradient(circle at 52% 110%, rgba(11, 40, 100, .26), transparent 38%),
    var(--mmt-unified-gradient) !important;
  color: #fff !important;
}

.hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  animation: mmtGridDrift 18s linear infinite;
}

.hero-about::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -210px;
  top: -260px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255,255,255,.025),
    0 0 0 140px rgba(255,255,255,.018);
  z-index: -1;
  animation: mmtHeroOrbit 12s ease-in-out infinite;
}

.hero-about > .container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
}

.hero-about h1,
.hero-about h1 div,
.hero-about .text-white {
  color: #fff !important;
}

.hero-about h1 {
  margin: 0 !important;
  font-size: clamp(42px, 6vw, 76px) !important;
  font-weight: 800 !important;
  letter-spacing: -.045em !important;
  line-height: .98 !important;
  filter: none !important;
  text-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.hero-about h1::after {
  content: "";
  display: block;
  width: 190px;
  height: 4px;
  margin: 24px auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, #5ee7ff, #fff, #f6a21a);
  box-shadow: 0 0 24px rgba(94,231,255,.38);
}

/* FAQ and Startup now share the same blue foundation. */
.startup-hero,
.faq-genz-hero,
.mmt-inner-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(246,162,26,.16), transparent 18%),
    radial-gradient(circle at 14% 78%, rgba(255,255,255,.12), transparent 24%),
    var(--mmt-unified-gradient) !important;
}

.faq-genz-hero {
  position: relative;
  overflow: hidden;
}

.faq-genz-hero::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(246,162,26,.15), transparent 18%),
    radial-gradient(circle at 15% 75%, rgba(255,255,255,.12), transparent 25%),
    linear-gradient(135deg, rgba(5,34,90,.30), transparent 62%) !important;
}

.faq-genz-hero::after {
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) !important;
  background-size: 52px 52px !important;
  opacity: .35 !important;
}

.faq-hero-line span {
  background: linear-gradient(90deg, #5ee7ff, #ffffff, #f6a21a) !important;
}

.faq-wave path {
  fill: #f5f8ff !important;
}

/* Service/product detail pages: their top visual gets the same blue system. */
.design-container {
  position: relative !important;
  min-height: 360px !important;
  height: auto !important;
  margin-top: 0 !important;
  padding: 70px clamp(24px, 7vw, 110px) !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    radial-gradient(circle at 80% 25%, rgba(255,255,255,.11), transparent 20%),
    radial-gradient(circle at 15% 75%, rgba(246,162,26,.12), transparent 20%),
    var(--mmt-unified-gradient) !important;
}

.design-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 48px 48px;
}

.design-container h1 {
  color: #fff !important;
  filter: none !important;
  text-shadow: 0 12px 35px rgba(0,0,0,.18);
  font-weight: 800 !important;
}

.design-container .image,
.design-container .images {
  position: relative;
  z-index: 2;
  max-height: 260px;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 24px 35px rgba(0,0,0,.20));
}

/* Blog article headers use the same family without changing article content. */
.blog-container .header {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.12), transparent 20%),
    var(--mmt-unified-gradient) !important;
  color: #fff;
  padding: 55px 35px !important;
}

.blog-container .header h1 {
  color: #fff !important;
  filter: none !important;
  text-shadow: 0 10px 30px rgba(0,0,0,.16);
}

/* No hero subtitle/breadcrumb space anywhere. */
.hero-about .breadcrumb,
.hero-about + .breadcrumb,
.breadcrumb {
  display: none !important;
}

/* Make page transitions feel consistent. */
@keyframes mmtGridDrift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(52px, 52px, 0); }
}

@keyframes mmtHeroOrbit {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(22px, 18px) rotate(12deg); }
}

@media (max-width: 900px) {
  .hero-about {
    min-height: 360px !important;
  }

  .hero-about h1 {
    font-size: clamp(38px, 10vw, 58px) !important;
  }

  .design-container {
    min-height: 320px !important;
    flex-direction: column !important;
    gap: 28px !important;
    padding: 55px 24px !important;
  }

  .design-container h1 {
    margin: 0 !important;
  }

  .design-container .image,
  .design-container .images {
    width: min(70%, 330px) !important;
    margin: 0 !important;
  }
}

@media (max-width: 600px) {
  .hero-about {
    min-height: 300px !important;
  }

  .hero-about h1 {
    font-size: 38px !important;
  }

  .hero-about h1::after {
    width: 130px;
    height: 3px;
    margin-top: 18px;
  }

  .design-container {
    min-height: 285px !important;
    padding: 45px 18px !important;
  }

  .design-container .image,
  .design-container .images {
    width: min(82%, 270px) !important;
    max-height: 180px !important;
  }

  .blog-container .header {
    padding: 42px 20px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-about::before,
  .hero-about::after {
    animation: none !important;
  }
}

/* ============================================================
   MMT FINAL SAFE PATCH
   Only affects the requested wave + home Industries section.
   Existing page layouts/components remain untouched.
   ============================================================ */

/* FAQ-matched wave: same curve, height and white landing surface. */
.mmt-wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 145px;
  z-index: 8;
  line-height: 0;
  pointer-events: none;
}

.mmt-wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mmt-wave-divider path {
  fill: #fff;
}

/* Internal pages: wave is inside About, and a sibling on the other
   legacy pages. This keeps the original page spacing intact. */
.hero-about {
  position: relative;
  overflow: hidden;
}

.hero-about > .mmt-wave-divider {
  position: absolute;
}

.hero-about + .mmt-wave-divider {
  position: relative;
  height: 145px;
  margin-top: -145px;
  margin-bottom: 0;
  z-index: 8;
}

/* Keep the original FAQ-like blue family without changing content below it. */
.hero-about {
  background:
    radial-gradient(circle at 78% 20%, rgba(25,184,229,.20), transparent 24%),
    radial-gradient(circle at 12% 70%, rgba(255,255,255,.10), transparent 24%),
    linear-gradient(135deg, #0758e8 0%, #1389ef 52%, #19b8e5 100%) !important;
}

.hero-about::before {
  opacity: .20;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 42px 42px;
  animation: mmtSafeGrid 20s linear infinite;
}

.hero-about h1 {
  font-size: clamp(30px, 4vw, 50px) !important;
  letter-spacing: -.025em !important;
  line-height: 1.05 !important;
  text-shadow: 0 8px 28px rgba(0,32,100,.18);
}

.hero-about h1::after {
  width: 150px;
  height: 3px;
  margin-top: 16px;
  background: linear-gradient(90deg, #54dcff, #fff, #ffad22);
  box-shadow: 0 0 18px rgba(84,220,255,.32);
}

/* Home hero gets the exact same wave geometry. */
.page1 {
  position: relative;
  overflow: hidden;
}

.page1 .mmt-wave-divider {
  height: 145px;
}

/* Startup already owns its hero; only normalize the wave size. */
.startup-hero .mmt-wave-divider {
  height: 145px;
}

/* ============================================================
   HOME — INDUSTRIES REDESIGN
   Scoped to the home page so other pages are not affected.
   ============================================================ */
body[data-route="/"] .industries,
body[data-route="/index"] .industries {
  position: relative;
  padding: 72px 28px 92px !important;
  background: #f7fbff !important;
  background-image:
    radial-gradient(circle at 12% 12%, rgba(25,184,229,.10), transparent 22%),
    radial-gradient(circle at 90% 85%, rgba(7,88,232,.08), transparent 24%) !important;
  overflow: hidden;
}

body[data-route="/"] .industries::after,
body[data-route="/index"] .industries::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(7,88,232,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,88,232,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

body[data-route="/"] .industries-heading,
body[data-route="/index"] .industries-heading {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

body[data-route="/"] .industries-kicker,
body[data-route="/index"] .industries-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border: 1px solid rgba(7,88,232,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #086bdc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  box-shadow: 0 8px 24px rgba(7,88,232,.07);
}

body[data-route="/"] .industries-heading h2,
body[data-route="/index"] .industries-heading h2 {
  margin: 11px 0 6px !important;
  color: #10244e !important;
  font-size: clamp(24px, 3vw, 34px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.02em;
}

body[data-route="/"] .industries-heading p,
body[data-route="/index"] .industries-heading p {
  margin: 0 auto;
  max-width: 600px;
  color: #65728c;
  font-size: 13px;
  line-height: 1.6;
}

body[data-route="/"] .industries-heading .home-line,
body[data-route="/index"] .industries-heading .home-line {
  margin: 12px auto 0;
}

body[data-route="/"] .industries-container,
body[data-route="/index"] .industries-container {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px !important;
}

body[data-route="/"] .industry,
body[data-route="/index"] .industry {
  min-height: 158px;
  width: auto !important;
  padding: 22px 15px 18px !important;
  border: 1px solid rgba(15,91,190,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 30px rgba(18,72,140,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .38s cubic-bezier(.22,1,.36,1),
              box-shadow .38s ease,
              border-color .38s ease;
}

body[data-route="/"] .industry:hover,
body[data-route="/index"] .industry:hover {
  transform: translateY(-7px);
  border-color: rgba(7,88,232,.22);
  box-shadow: 0 20px 42px rgba(7,88,232,.13);
}

/* Explicit Font Awesome settings make the icons visible even when a
   generic inherited font rule is present. */
body[data-route="/"] .industry-icon,
body[data-route="/index"] .industry-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: grid;
  place-items: center;
  margin: 0 0 11px;
  border-radius: 50%;
  color: #0878ee !important;
  background: linear-gradient(145deg, #edf7ff, #d9ecff);
  box-shadow: inset 0 0 0 1px rgba(7,88,232,.09), 0 8px 20px rgba(7,88,232,.08);
  font-size: 21px;
  line-height: 1;
  transition: transform .38s cubic-bezier(.22,1,.36,1),
              color .3s ease,
              background .3s ease,
              box-shadow .3s ease;
}

body[data-route="/"] .industry-icon i,
body[data-route="/index"] .industry-icon i {
  display: inline-block !important;
  color: inherit !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body[data-route="/"] .industry:hover .industry-icon,
body[data-route="/index"] .industry:hover .industry-icon {
  transform: translateY(-3px) scale(1.09) rotate(-5deg);
  color: #fff !important;
  background: linear-gradient(145deg, #0758e8, #19b8e5);
  box-shadow: 0 12px 26px rgba(7,88,232,.22);
}

body[data-route="/"] .industry h4,
body[data-route="/index"] .industry h4 {
  margin: 0 !important;
  color: #10244e !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  text-transform: none !important;
}

body[data-route="/"] .industry p,
body[data-route="/index"] .industry p {
  margin: 6px 0 0 !important;
  max-width: 190px;
  color: #6d7b95 !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
}

@keyframes mmtSafeGrid {
  from { background-position: 0 0, 0 0; }
  to { background-position: 42px 42px, -42px -42px; }
}

@media (max-width: 1050px) {
  body[data-route="/"] .industries-container,
  body[data-route="/index"] .industries-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(760px, 100%);
  }
}

@media (max-width: 700px) {
  .mmt-wave-divider,
  .page1 .mmt-wave-divider,
  .startup-hero .mmt-wave-divider {
    height: 82px;
  }

  .hero-about + .mmt-wave-divider {
    height: 82px;
    margin-top: -82px;
  }

  .hero-about h1 {
    font-size: clamp(27px, 8vw, 40px) !important;
  }

  body[data-route="/"] .industries,
  body[data-route="/index"] .industries {
    padding: 58px 16px 72px !important;
  }

  body[data-route="/"] .industries-container,
  body[data-route="/index"] .industries-container {
    grid-template-columns: 1fr;
    gap: 12px !important;
    width: min(420px, 100%);
  }

  body[data-route="/"] .industry,
  body[data-route="/index"] .industry {
    min-height: 142px;
  }
}


/* ============================================================
   MMT FINAL POLISH — compact typography, no clipped content,
   modern services cards and blue/cyan/gold footer.
   Existing hero/wave markup is intentionally preserved.
   ============================================================ */

/* Safer global sizing: content is allowed to grow instead of being clipped. */
html, body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.static-page,
.static-page main,
.static-page section,
.static-page article,
.static-page .container,
.static-page .row {
  height: auto !important;
  min-height: 0;
}

.static-page img {
  max-width: 100%;
  height: auto;
}

/* Keep headings premium but compact. */
.static-page h1 {
  font-size: clamp(32px, 4vw, 50px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
}

.static-page h2 {
  font-size: clamp(21px, 2.1vw, 29px) !important;
  line-height: 1.2 !important;
}

.static-page h3 {
  font-size: clamp(18px, 1.7vw, 23px) !important;
  line-height: 1.25 !important;
}

.static-page p,
.static-page li {
  font-size: 14px !important;
  line-height: 1.65 !important;
}

/* ============================================================
   SERVICES — modern editorial/card layout
   ============================================================ */

body[data-route="/services"] .services-wrapper {
  position: relative;
  background:
    radial-gradient(circle at 8% 18%, rgba(23,169,216,.10), transparent 24%),
    radial-gradient(circle at 92% 42%, rgba(246,162,26,.08), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%) !important;
}

body[data-route="/services"] .services-wrapper .hero-about {
  min-height: 330px !important;
  padding: 70px 20px 115px !important;
  background:
    radial-gradient(circle at 18% 25%, rgba(23,169,216,.22), transparent 25%),
    radial-gradient(circle at 84% 28%, rgba(246,162,26,.11), transparent 20%),
    linear-gradient(135deg, #071b66 0%, #0b48ed 48%, #17a9d8 100%) !important;
}

body[data-route="/services"] .services-wrapper .hero-about .container.my-5 {
  margin: 0 auto !important;
  padding: 0 !important;
}

body[data-route="/services"] .services-wrapper .services-line {
  margin: 0 !important;
  color: #fff !important;
  text-shadow: 0 12px 35px rgba(0,0,0,.18);
}

body[data-route="/services"] .services-wrapper .services-line::after {
  width: 90px !important;
  height: 3px !important;
  margin: 12px auto 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #17a9d8, #fff, #f6a21a) !important;
}

body[data-route="/services"] .services-wrapper .mmt-wave-divider {
  position: relative !important;
  z-index: 3 !important;
  margin-top: -86px !important;
  height: 96px !important;
}

body[data-route="/services"] .service-container {
  width: min(1160px, calc(100% - 36px)) !important;
  margin: 0 auto !important;
  padding: 28px 0 72px !important;
}

body[data-route="/services"] .services-card {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, .75fr) !important;
  gap: 28px !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 22px 0 !important;
  padding: 30px 34px !important;
  overflow: visible !important;
  border: 1px solid rgba(19,82,170,.10) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,255,.94)) !important;
  box-shadow: 0 16px 45px rgba(8,46,105,.08) !important;
  isolation: isolate;
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .35s ease !important;
}

body[data-route="/services"] .services-card:nth-of-type(even) {
  grid-template-columns: minmax(220px, .75fr) minmax(0, 1.25fr) !important;
}

body[data-route="/services"] .services-card:nth-of-type(even) .services-left {
  order: 2;
}

body[data-route="/services"] .services-card:nth-of-type(even) .services-right {
  order: 1;
}

body[data-route="/services"] .services-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 5px !important;
  border-radius: 26px 0 0 26px !important;
  background: linear-gradient(180deg, #17a9d8, #0b48ed, #f6a21a) !important;
  opacity: 1 !important;
}

body[data-route="/services"] .services-card::after {
  content: "" !important;
  position: absolute !important;
  width: 120px !important;
  height: 120px !important;
  right: -36px !important;
  bottom: -58px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(23,169,216,.12), transparent 68%) !important;
  pointer-events: none !important;
}

body[data-route="/services"] .services-card:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(23,169,216,.28) !important;
  box-shadow: 0 24px 65px rgba(8,46,105,.14) !important;
}

body[data-route="/services"] .services-left,
body[data-route="/services"] .services-right {
  min-width: 0 !important;
  padding: 0 !important;
}

body[data-route="/services"] .services-left {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  text-align: left !important;
}

body[data-route="/services"] .services-left h2 {
  position: relative !important;
  margin: 0 0 12px !important;
  color: #0c1735 !important;
  font-size: clamp(20px, 2vw, 27px) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
  filter: none !important;
}

body[data-route="/services"] .services-left h2::after {
  content: "" !important;
  display: block !important;
  width: 44px !important;
  height: 3px !important;
  margin-top: 8px !important;
  border-radius: 99px !important;
  background: linear-gradient(90deg, #17a9d8, #f6a21a) !important;
}

body[data-route="/services"] .services-left p {
  max-width: 680px !important;
  margin: 0 !important;
  color: #5c6d87 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  text-align: left !important;
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}

body[data-route="/services"] .service-learn-more {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: fit-content !important;
  margin-top: 18px !important;
  padding: 9px 15px !important;
  border: 1px solid rgba(11,72,237,.14) !important;
  border-radius: 999px !important;
  background: rgba(11,72,237,.055) !important;
  color: #0b48ed !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .02em !important;
  text-decoration: none !important;
  transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease !important;
}

body[data-route="/services"] .service-learn-more::after {
  content: "→" !important;
  font-size: 15px !important;
  transition: transform .3s ease !important;
}

body[data-route="/services"] .service-learn-more:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #0b48ed, #17a9d8) !important;
  box-shadow: 0 10px 22px rgba(11,72,237,.20) !important;
  transform: translateY(-2px) !important;
}

body[data-route="/services"] .service-learn-more:hover::after {
  transform: translateX(3px) !important;
}

body[data-route="/services"] .hr-line {
  width: 48px !important;
  margin: 10px 0 0 !important;
  border-top: 1px solid rgba(19,169,216,.32) !important;
}

body[data-route="/services"] .services-right {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 210px !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 50% 35%, rgba(23,169,216,.12), transparent 52%),
    linear-gradient(145deg, #f6fbff, #edf5ff) !important;
  overflow: hidden !important;
}

body[data-route="/services"] .services-right::before {
  content: "" !important;
  position: absolute !important;
  width: 170px !important;
  height: 170px !important;
  border: 1px solid rgba(23,169,216,.16) !important;
  border-radius: 50% !important;
  animation: mmtServiceOrbit 9s linear infinite !important;
  pointer-events: none !important;
}

body[data-route="/services"] .services-right img {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: auto !important;
  max-width: min(230px, 78%) !important;
  max-height: 175px !important;
  object-fit: contain !important;
  border-radius: 14px !important;
  filter: drop-shadow(0 16px 24px rgba(9,55,111,.14)) !important;
  transform: translateY(0) !important;
  transition: transform .5s cubic-bezier(.22,1,.36,1), filter .5s ease !important;
  animation: mmtServiceFloat 5s ease-in-out infinite !important;
}

body[data-route="/services"] .services-card:hover .services-right img {
  transform: translateY(-5px) scale(1.035) !important;
  filter: drop-shadow(0 20px 30px rgba(9,55,111,.20)) saturate(1.05) !important;
}

@keyframes mmtServiceFloat {
  0%,100% { transform: translateY(2px); }
  50% { transform: translateY(-7px); }
}

@keyframes mmtServiceOrbit {
  from { transform: rotate(0deg) scale(.88); opacity: .5; }
  50% { opacity: 1; }
  to { transform: rotate(360deg) scale(.88); opacity: .5; }
}

/* ============================================================
   FOOTER — use the same blue/cyan/gold language as the heroes.
   ============================================================ */

.custom-footer {
  background:
    radial-gradient(circle at 10% 15%, rgba(23,169,216,.24), transparent 25%),
    radial-gradient(circle at 88% 75%, rgba(246,162,26,.10), transparent 20%),
    linear-gradient(135deg, #071b66 0%, #0b48ed 52%, #078fbe 100%) !important;
  background-image:
    linear-gradient(rgba(7,27,102,.80), rgba(7,27,102,.80)),
    url("../assets/footer/map.png") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.custom-footer::before {
  background:
    linear-gradient(135deg, rgba(7,27,102,.78), rgba(23,169,216,.22)) !important;
  z-index: 0 !important;
}

.custom-footer .footer-container {
  width: min(1180px, calc(100% - 48px)) !important;
  padding: 70px 0 48px !important;
}

.custom-footer .footer-grid {
  grid-template-columns: 1.1fr .9fr 1fr 1fr !important;
  gap: 46px !important;
}

.custom-footer .footer-title {
  margin-bottom: 18px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
}

.custom-footer .footer-title::after {
  display: block !important;
  width: 38px !important;
  height: 2px !important;
  margin-top: 8px !important;
  background: linear-gradient(90deg, #17a9d8, #f6a21a) !important;
  border-radius: 999px !important;
}

.custom-footer .footer-detail,
.custom-footer .footer-links a {
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.custom-footer .footer-detail {
  margin-bottom: 13px !important;
}

.custom-footer .footer-links {
  gap: 9px !important;
}

.custom-footer .footer-links a {
  padding-left: 16px !important;
}

.custom-footer .footer-socials {
  gap: 8px !important;
  margin-top: 20px !important;
}

.custom-footer .footer-social {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  font-size: 15px !important;
  border-color: rgba(255,255,255,.55) !important;
  transition: transform .3s ease, background .3s ease, color .3s ease !important;
}

.custom-footer .footer-social:hover {
  color: #0b48ed !important;
  background: #fff !important;
  transform: translateY(-4px) !important;
}

.custom-footer .footer-brand {
  margin: -8px 0 18px !important;
}

.custom-footer .footer-image {
  width: 145px !important;
}

.custom-footer .footer-description {
  max-width: 310px !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
  text-align: left !important;
}

.custom-footer .footer-bottom,
.custom-footer .footer-bottom-inner {
  height: 58px !important;
  min-height: 58px !important;
}

.custom-footer .footer-bottom {
  width: min(1180px, calc(100% - 48px)) !important;
}

.custom-footer .footer-bottom-inner p,
.custom-footer .footer-bottom-inner a {
  font-size: 12px !important;
}

/* Compact social/floating controls so they don't cover content. */
@media (min-width: 769px) {
  .social-icons,
  .social-fixed,
  .icons {
    transform: scale(.88);
    transform-origin: right center;
  }
}

@media (max-width: 900px) {
  body[data-route="/services"] .services-card,
  body[data-route="/services"] .services-card:nth-of-type(even) {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 26px 24px !important;
  }

  body[data-route="/services"] .services-card:nth-of-type(even) .services-left,
  body[data-route="/services"] .services-card:nth-of-type(even) .services-right {
    order: initial !important;
  }

  body[data-route="/services"] .services-right {
    min-height: 190px !important;
  }

  .custom-footer .footer-container {
    width: min(100% - 40px, 720px) !important;
    padding: 55px 0 40px !important;
  }

  .custom-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 34px 40px !important;
  }
}

@media (max-width: 600px) {
  .static-page h1 {
    font-size: 31px !important;
  }

  .static-page p,
  .static-page li {
    font-size: 13.5px !important;
  }

  body[data-route="/services"] .services-wrapper .hero-about {
    min-height: 260px !important;
    padding: 54px 16px 105px !important;
  }

  body[data-route="/services"] .services-wrapper .mmt-wave-divider {
    height: 78px !important;
    margin-top: -72px !important;
  }

  body[data-route="/services"] .service-container {
    width: min(100% - 24px, 520px) !important;
    padding-top: 18px !important;
    padding-bottom: 48px !important;
  }

  body[data-route="/services"] .services-card {
    margin: 15px 0 !important;
    padding: 22px 20px !important;
    border-radius: 20px !important;
  }

  body[data-route="/services"] .services-left h2 {
    font-size: 19px !important;
  }

  body[data-route="/services"] .services-left p {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  body[data-route="/services"] .services-right {
    min-height: 160px !important;
    border-radius: 17px !important;
  }

  body[data-route="/services"] .services-right img {
    max-height: 135px !important;
  }

  .custom-footer .footer-container {
    width: calc(100% - 30px) !important;
    padding: 46px 0 34px !important;
  }

  .custom-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .custom-footer .footer-title {
    font-size: 17px !important;
  }

  .custom-footer .footer-detail,
  .custom-footer .footer-links a {
    font-size: 13px !important;
  }

  .custom-footer .footer-description {
    font-size: 13px !important;
  }

  .custom-footer .footer-bottom,
  .custom-footer .footer-bottom-inner {
    height: 55px !important;
    min-height: 55px !important;
  }

  .custom-footer .footer-bottom {
    width: calc(100% - 30px) !important;
  }
}


/* ============================================================
   MMT FINAL RESPONSIVE / WAVE / ABOUT / FOOTER PATCH
   Home intentionally has NO wave. Every other page gets the
   same FAQ-style wave through common.js.
   ============================================================ */

:root {
  --mmt-blue-deep: #073b82;
  --mmt-blue: #0b68b5;
  --mmt-cyan: #14a9c7;
  --mmt-gold: #f6a21a;
  --mmt-paper: #f6faff;
}

/* Shared FAQ-style wave */
.mmt-wave-divider,
.mmt-global-wave {
  position: relative;
  width: 100%;
  height: 112px;
  margin: -1px 0 0;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.mmt-wave-divider svg,
.mmt-global-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mmt-wave-divider path,
.mmt-global-wave path {
  fill: var(--mmt-paper);
}

/* Existing sibling waves: make them part of normal document flow. */
.hero-about + .mmt-wave-divider {
  position: relative !important;
  height: 112px !important;
  margin: -1px 0 0 !important;
  z-index: 5 !important;
}

.hero-about > .mmt-wave-divider { position: absolute !important; }

/* All internal page heroes use the same blue language. */
body:not([data-route="/"]) .hero-about {
  min-height: 330px !important;
  padding: 84px 20px 116px !important;
  background:
    radial-gradient(circle at 10% 22%, rgba(255,255,255,.13), transparent 23%),
    radial-gradient(circle at 86% 12%, rgba(20,169,199,.24), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(246,162,26,.12), transparent 24%),
    linear-gradient(125deg, #073b82 0%, #0b68b5 52%, #14a9c7 100%) !important;
}

body:not([data-route="/"]) .hero-about::before {
  opacity: .16 !important;
  background-size: 44px 44px !important;
}

body:not([data-route="/"]) .hero-about h1 {
  font-size: clamp(30px, 4vw, 48px) !important;
  line-height: 1.08 !important;
}

body:not([data-route="/"]) .hero-about h1::after {
  width: 90px !important;
  height: 3px !important;
  margin-top: 13px !important;
}

/* Never let the home hero receive the internal-page wave treatment. */
body[data-route="/"] .mmt-wave-divider,
body[data-route="/"] .mmt-global-wave { display: none !important; }

/* ---------- ABOUT PAGE ---------- */
.about-modern-page { overflow: hidden; }

.about-hero-modern .about-hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto !important;
  padding: 0 !important;
}

.about-hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-eyebrow,
.about-section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: #e9fbff;
  background: rgba(255,255,255,.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.about-hero-copy h1 { margin: 13px 0 0 !important; }
.about-hero-copy p {
  max-width: 650px;
  margin: 16px auto 0;
  color: rgba(255,255,255,.84) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.about-modern-intro,
.about-modern-why {
  padding: 64px 18px 24px;
  background:
    radial-gradient(circle at 5% 12%, rgba(20,169,199,.08), transparent 23%),
    radial-gradient(circle at 95% 80%, rgba(246,162,26,.06), transparent 22%),
    var(--mmt-paper);
}

.about-modern-why { padding-top: 20px; padding-bottom: 72px; }

.about-intro-card,
.about-why-card {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 36px 40px;
  border: 1px solid rgba(9,33,69,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 18px 55px rgba(9,33,69,.09);
  backdrop-filter: blur(12px);
}

.about-intro-heading { text-align: center; }
.about-intro-heading .about-section-kicker,
.about-why-card .about-section-kicker {
  color: #0b68b5;
  border-color: rgba(11,104,181,.16);
  background: #eef9ff;
}

.about-intro-heading h2,
.about-why-card h2 {
  margin: 12px 0 14px;
  color: #0b1833;
  font-size: clamp(22px, 2.5vw, 31px) !important;
  line-height: 1.2 !important;
}

.about-card-text,
.about-why-card p {
  max-width: 900px;
  margin: 0 auto 18px !important;
  color: #607089 !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
  text-align: center !important;
}

.about-details {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin: 24px auto 18px !important;
  max-width: 760px;
}

.about-feature {
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f5fbff, #fffaf0);
  border: 1px solid rgba(11,104,181,.08);
}

.about-feature h4 {
  margin: 8px 0 !important;
  color: #17233d !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.about-feature i {
  margin-right: 8px;
  color: #0ca3c4 !important;
}

.about-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px !important;
  color: #0b68b5 !important;
  font-size: 13px !important;
  font-weight: 700;
}

.about-info i { color: var(--mmt-gold); }
.about-info span { color: #1b2942 !important; }

.about-why-card {
  position: relative;
  overflow: hidden;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255,255,255,.97), rgba(243,250,255,.96));
}

.about-why-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--mmt-cyan), #0b68b5, var(--mmt-gold));
}

.about-why-card h2 { margin-bottom: 18px; }
.about-why-card p { max-width: none; text-align: left !important; }

/* ---------- FOOTER ---------- */
.custom-footer {
  background:
    radial-gradient(circle at 12% 10%, rgba(20,169,199,.25), transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(246,162,26,.10), transparent 22%),
    linear-gradient(135deg, #073b82 0%, #0b68b5 55%, #0d96b4 100%) !important;
  background-image:
    linear-gradient(rgba(7,59,130,.78), rgba(7,59,130,.78)),
    url("../assets/footer/map.png") !important;
  background-position: center !important;
  background-size: cover !important;
}

.custom-footer .footer-container {
  width: min(1160px, calc(100% - 40px)) !important;
  padding: 62px 0 42px !important;
}

.custom-footer .footer-grid {
  grid-template-columns: 1.15fr .8fr 1fr 1.15fr !important;
  gap: 34px !important;
}

.custom-footer .footer-title {
  font-size: 17px !important;
  margin-bottom: 16px !important;
}

.custom-footer .footer-detail,
.custom-footer .footer-links a {
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.custom-footer .footer-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  min-height: 1px;
}

.custom-footer .footer-links a {
  display: block !important;
  opacity: .92;
}

.custom-footer .footer-description {
  font-size: 13px !important;
  line-height: 1.65 !important;
  max-width: 300px !important;
}

.custom-footer .footer-image { width: 145px !important; }

.custom-footer .footer-bottom,
.custom-footer .footer-bottom-inner {
  width: min(1160px, calc(100% - 40px)) !important;
  min-height: 58px !important;
  height: auto !important;
}

.custom-footer .footer-bottom-inner { font-size: 12px !important; }

/* ---------- GENERAL RESPONSIVE SAFETY ---------- */
img, video, iframe, svg { max-width: 100%; }
.static-page { width: 100%; overflow: visible !important; }

@media (max-width: 900px) {
  nav .wrapper {
    height: 82px !important;
    line-height: 82px !important;
    padding: 0 18px !important;
  }

  .wrapper .logo a img { width: 125px !important; }
  nav { height: 82px !important; min-height: 82px !important; }

  body:not([data-route="/"]) .hero-about {
    min-height: 285px !important;
    padding: 70px 18px 105px !important;
  }

  .about-intro-card,
  .about-why-card { padding: 30px 26px; }

  .custom-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }
}

@media (max-width: 650px) {
  .mmt-wave-divider,
  .mmt-global-wave,
  .hero-about + .mmt-wave-divider { height: 78px !important; }

  body:not([data-route="/"]) .hero-about {
    min-height: 245px !important;
    padding: 54px 14px 88px !important;
  }

  body:not([data-route="/"]) .hero-about h1 {
    font-size: 30px !important;
  }

  .about-eyebrow { font-size: 8px; padding: 5px 9px; }
  .about-hero-copy p { font-size: 12.5px !important; }

  .about-modern-intro { padding: 45px 12px 16px; }
  .about-modern-why { padding: 14px 12px 48px; }
  .about-intro-card,
  .about-why-card { padding: 24px 18px; border-radius: 18px; }

  .about-details { grid-template-columns: 1fr; gap: 8px; }
  .about-feature { padding: 11px 13px; }
  .about-feature h4 { font-size: 13px !important; }
  .about-card-text,
  .about-why-card p { font-size: 13px !important; line-height: 1.7 !important; }
  .about-info { font-size: 12px !important; }

  .custom-footer .footer-container {
    width: calc(100% - 28px) !important;
    padding: 46px 0 30px !important;
  }

  .custom-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .custom-footer .footer-title { font-size: 16px !important; }
  .custom-footer .footer-detail,
  .custom-footer .footer-links a { font-size: 12.5px !important; }
  .custom-footer .footer-description { font-size: 12.5px !important; }
  .custom-footer .footer-bottom,
  .custom-footer .footer-bottom-inner { width: calc(100% - 28px) !important; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}


/* ============================================================
   MMT FINAL NO-WAVE / NORMAL BOX HERO / FOOTER UPDATE
   The website now uses clean rectangular hero sections on every
   page. Home remains unchanged. Footer uses the site blue/cyan
   palette and the shared navigation links.
   ============================================================ */

/* Remove every decorative wave layer. */
.mmt-wave-divider,
.mmt-global-wave,
.faq-wave {
  display: none !important;
}

/* Internal page hero: normal rectangular blue/cyan box. */
body:not([data-route="/"]) .hero-about {
  min-height: 300px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 72px 20px !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.12), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(20,169,199,.20), transparent 25%),
    linear-gradient(125deg, #073b82 0%, #0b68b5 54%, #14a9c7 100%) !important;
}

body:not([data-route="/"]) .hero-about h1 {
  margin-bottom: 0 !important;
}

/* About page hero becomes a simple box instead of a wave landing. */
.about-hero-modern {
  min-height: 300px !important;
  padding: 72px 20px !important;
}

/* FAQ hero: compact rectangular box with no bottom wave. */
body[data-route="/faq"] .faq-genz-hero {
  min-height: 360px !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

body[data-route="/faq"] .faq-hero-inner {
  padding: 78px 20px 82px !important;
}

body[data-route="/faq"] .faq-genz-hero h1 {
  font-size: clamp(46px, 7vw, 76px) !important;
}

body[data-route="/faq"] .faq-content {
  padding-top: 58px !important;
}

/* Startup hero: rectangular blue/cyan panel. */
.startup-hero {
  min-height: 520px !important;
  padding-bottom: 72px !important;
}

/* Keep detail pages rectangular as well. */
.design-container {
  border-radius: 0 !important;
}

/* Footer: match the site's blue/cyan/gold identity instead of purple. */
.custom-footer {
  background:
    radial-gradient(circle at 10% 15%, rgba(20,169,199,.18), transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(246,162,26,.10), transparent 22%),
    linear-gradient(135deg, #073b82 0%, #0b68b5 55%, #087fae 100%) !important;
  color: #fff !important;
}

.custom-footer::before {
  background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(20,169,199,.05)) !important;
}

.custom-footer .footer-bottom {
  background: rgba(3,35,82,.34) !important;
  border-top-color: rgba(255,255,255,.18) !important;
}

.custom-footer .footer-title,
.custom-footer .footer-detail,
.custom-footer .footer-detail a,
.custom-footer .footer-links a,
.custom-footer .footer-description,
.custom-footer .footer-bottom-inner,
.custom-footer .footer-bottom-inner a {
  color: #fff !important;
}

.custom-footer .footer-detail i,
.custom-footer .footer-links a::before,
.custom-footer .footer-title::after {
  color: #f6a21a !important;
  background-color: #f6a21a !important;
}

.custom-footer .footer-title::after { display: block !important; }

.custom-footer .footer-links a:hover,
.custom-footer .footer-detail a:hover,
.custom-footer .footer-bottom-inner a:hover {
  color: #f6a21a !important;
}

/* Long address must never be clipped. */
.custom-footer .footer-contact .footer-detail:first-of-type span {
  display: block;
  max-width: 330px;
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Four-column footer on large screens; compact and stacked on phones. */
.custom-footer .footer-grid {
  grid-template-columns: 1.25fr .85fr 1.05fr 1.2fr !important;
  gap: 42px !important;
}

@media (max-width: 1050px) {
  .custom-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 38px 32px !important;
  }
}

@media (max-width: 650px) {
  body:not([data-route="/"]) .hero-about,
  .about-hero-modern {
    min-height: 230px !important;
    padding: 54px 16px !important;
  }

  body:not([data-route="/"]) .hero-about h1 {
    font-size: 30px !important;
  }

  body[data-route="/faq"] .faq-genz-hero {
    min-height: 290px !important;
  }

  body[data-route="/faq"] .faq-hero-inner {
    padding: 60px 14px !important;
  }

  body[data-route="/faq"] .faq-genz-hero h1 {
    font-size: 48px !important;
  }

  .startup-hero {
    min-height: 430px !important;
    padding-bottom: 54px !important;
  }

  .custom-footer .footer-container {
    width: min(100% - 32px, 520px) !important;
    padding: 52px 0 42px !important;
  }

  .custom-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .custom-footer .footer-title {
    font-size: 18px !important;
    margin-bottom: 18px !important;
  }

  .custom-footer .footer-detail,
  .custom-footer .footer-links a,
  .custom-footer .footer-description {
    font-size: 13px !important;
  }

  .custom-footer .footer-contact .footer-detail:first-of-type span {
    max-width: none;
  }
}

/* ============================================================
   MIND MARQ — MODERN NAVBAR + FOOTER REFRESH
   Clean glass navigation, compact typography, premium footer.
   This block intentionally overrides older navigation/footer rules.
   ============================================================ */

:root {
  --mm-ink: #081a36;
  --mm-navy: #071f4b;
  --mm-blue: #086fc2;
  --mm-cyan: #12b7d6;
  --mm-cyan-soft: #eafaff;
  --mm-orange: #f6a51a;
  --mm-white: #ffffff;
}

/* ---------- MODERN NAVBAR ---------- */
nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 84px !important;
  min-height: 84px !important;
  background: rgba(255,255,255,.88) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  border-bottom: 1px solid rgba(8,26,54,.08) !important;
  box-shadow: 0 8px 30px rgba(7,31,75,.08) !important;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease !important;
}

nav .wrapper {
  width: min(1380px, calc(100% - 42px)) !important;
  max-width: 1380px !important;
  height: 84px !important;
  min-height: 84px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  line-height: normal !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.wrapper .logo {
  height: 84px !important;
  flex: 0 0 155px !important;
  display: flex !important;
  align-items: center !important;
}

.wrapper .logo a,
.wrapper .logo a img {
  height: auto !important;
  max-height: 72px !important;
}

.wrapper .logo a {
  display: flex !important;
  align-items: center !important;
}

.wrapper .logo a img {
  width: 142px !important;
  max-width: 142px !important;
  object-fit: contain !important;
}

.wrapper .nav-links {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 2px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1 1 auto !important;
}

.nav-links li {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}

.nav-links li a {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 42px !important;
  padding: 8px 12px !important;
  border-radius: 12px !important;
  color: var(--mm-ink) !important;
  background: transparent !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: .01em !important;
  white-space: nowrap !important;
  transition: color .25s ease, background .25s ease, transform .25s ease !important;
}

.nav-links li a::after {
  content: "" !important;
  position: absolute !important;
  left: 12px !important;
  right: 12px !important;
  bottom: 5px !important;
  width: auto !important;
  height: 2px !important;
  border-radius: 10px !important;
  background: linear-gradient(90deg, var(--mm-cyan), var(--mm-orange)) !important;
  transform: scaleX(0) !important;
  transform-origin: center !important;
  transition: transform .25s ease !important;
}

.nav-links li a:hover {
  color: var(--mm-blue) !important;
  background: var(--mm-cyan-soft) !important;
  transform: translateY(-1px) !important;
}

.nav-links li a:hover::after {
  transform: scaleX(1) !important;
}

.nav-links li:has(.drop-menu) > a::before,
.nav-links li:has(.mega-box) > a::before {
  content: "⌄" !important;
  margin-left: 6px !important;
  order: 2 !important;
  font-size: 12px !important;
  color: #6b7d94 !important;
  transform: translateY(-1px) !important;
}

/* Modern service dropdown */
.nav-links .drop-menu {
  top: 76px !important;
  width: 265px !important;
  padding: 10px !important;
  border: 1px solid rgba(8,111,194,.10) !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.97) !important;
  box-shadow: 0 24px 60px rgba(7,31,75,.15) !important;
  backdrop-filter: blur(18px) !important;
}

.nav-links li:hover .drop-menu {
  top: 72px !important;
}

.drop-menu li a {
  min-height: 40px !important;
  width: 100% !important;
  padding: 9px 12px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
}

.drop-menu li a::after {
  display: none !important;
}

.drop-menu li a:hover {
  background: #eefaff !important;
  transform: translateX(3px) !important;
}

/* Modern products mega menu */
.mega-box {
  top: 78px !important;
  padding: 10px 0 0 !important;
}

.mega-box .content {
  width: min(1240px, calc(100% - 30px)) !important;
  margin: 0 auto !important;
  padding: 22px !important;
  gap: 20px !important;
  border: 1px solid rgba(8,111,194,.10) !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.98) !important;
  box-shadow: 0 25px 70px rgba(7,31,75,.16) !important;
}

.mega-box .content .row {
  line-height: 1.4 !important;
}

.row .mega-links li a {
  font-size: 12px !important;
  min-height: 34px !important;
  padding: 7px 10px !important;
  border-radius: 8px !important;
}

.row .mega-links li a::after {
  display: none !important;
}

.row .mega-links li a:hover {
  color: var(--mm-blue) !important;
  background: #eefaff !important;
}

/* Chat CTA */
.cta-button {
  margin: 0 0 0 8px !important;
  display: flex !important;
  align-items: center !important;
}

.cta-btn {
  min-height: 42px !important;
  padding: 10px 18px !important;
  border: 1px solid rgba(8,111,194,.35) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #fff, #f3fbff) !important;
  box-shadow: 0 8px 24px rgba(8,111,194,.12) !important;
  color: var(--mm-ink) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  transition: all .28s ease !important;
}

.cta-btn a {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
}

.cta-btn:hover {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--mm-blue), var(--mm-cyan)) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(8,111,194,.26) !important;
  transform: translateY(-2px) !important;
}

/* ---------- MODERN FOOTER ---------- */
.custom-footer {
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: #fff !important;
  background:
    radial-gradient(circle at 8% 12%, rgba(18,183,214,.20), transparent 25%),
    radial-gradient(circle at 92% 78%, rgba(246,165,26,.12), transparent 23%),
    linear-gradient(135deg, #061a3b 0%, #082e63 52%, #075f91 100%) !important;
  isolation: isolate !important;
}

.custom-footer::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) !important;
  background-size: 42px 42px !important;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 90%) !important;
}

.custom-footer::after {
  content: "" !important;
  position: absolute !important;
  width: 420px !important;
  height: 420px !important;
  right: -220px !important;
  top: -250px !important;
  border: 1px solid rgba(18,183,214,.22) !important;
  border-radius: 50% !important;
  box-shadow: 0 0 0 55px rgba(18,183,214,.035), 0 0 0 110px rgba(255,255,255,.02) !important;
  animation: mmFooterOrbit 12s ease-in-out infinite !important;
  pointer-events: none !important;
}

.footer-container {
  position: relative !important;
  z-index: 2 !important;
  width: min(1240px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding: 64px 0 52px !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.3fr .85fr 1.05fr 1.25fr !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.footer-column {
  min-width: 0 !important;
  padding: 24px !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.045) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05) !important;
  transition: transform .3s ease, background .3s ease, border-color .3s ease !important;
}

.footer-column:hover {
  transform: translateY(-5px) !important;
  background: rgba(255,255,255,.07) !important;
  border-color: rgba(18,183,214,.24) !important;
}

.footer-title {
  margin: 0 0 22px !important;
  padding: 0 0 10px !important;
  color: #fff !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
  font-weight: 750 !important;
  letter-spacing: .01em !important;
}

.footer-title::after {
  width: 44px !important;
  height: 3px !important;
  background: linear-gradient(90deg, var(--mm-cyan), var(--mm-orange)) !important;
}

.footer-detail {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin-bottom: 14px !important;
  color: rgba(255,255,255,.86) !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
  overflow-wrap: anywhere !important;
}

.footer-detail i {
  flex: 0 0 17px !important;
  color: #45d5ed !important;
}

.footer-detail a {
  color: rgba(255,255,255,.88) !important;
}

.footer-detail a:hover {
  color: #fff !important;
}

.footer-socials {
  display: flex !important;
  gap: 9px !important;
  margin-top: 22px !important;
}

.footer-social {
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,.055) !important;
  color: #fff !important;
  font-size: 15px !important;
  transition: all .25s ease !important;
}

.footer-social:hover {
  transform: translateY(-4px) scale(1.04) !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--mm-cyan), var(--mm-blue)) !important;
  color: #fff !important;
}

.footer-links {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 9px !important;
}

.footer-links a {
  width: 100% !important;
  padding: 8px 10px 8px 23px !important;
  border-radius: 9px !important;
  color: rgba(255,255,255,.80) !important;
  font-size: 12.5px !important;
  line-height: 1.35 !important;
  background: transparent !important;
  transition: all .25s ease !important;
}

.footer-links a::before {
  left: 8px !important;
  top: 8px !important;
  color: #45d5ed !important;
  font-size: 11px !important;
}

.footer-links a:hover {
  color: #fff !important;
  background: rgba(18,183,214,.10) !important;
  transform: translateX(3px) !important;
}

.footer-about {
  padding-left: 24px !important;
}

.footer-brand {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 0 18px !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.10) !important;
}

.custom-footer .footer-image {
  width: 140px !important;
  max-height: 82px !important;
}

.footer-description {
  max-width: none !important;
  margin: 0 !important;
  color: rgba(255,255,255,.76) !important;
  font-size: 12.5px !important;
  line-height: 1.75 !important;
}

.footer-bottom {
  position: relative !important;
  z-index: 3 !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
  background: rgba(3,14,34,.32) !important;
}

.footer-bottom-inner {
  width: min(1240px, calc(100% - 48px)) !important;
  min-height: 62px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  color: rgba(255,255,255,.65) !important;
  font-size: 12px !important;
}

.footer-bottom-inner a {
  color: #fff !important;
}

@keyframes mmFooterOrbit {
  0%,100% { transform: translate3d(0,0,0) rotate(0deg); opacity: .8; }
  50% { transform: translate3d(-20px,18px,0) rotate(10deg); opacity: 1; }
}

/* ---------- RESPONSIVE NAV + FOOTER ---------- */
@media (max-width: 1100px) {
  nav .wrapper {
    width: min(100% - 30px, 1380px) !important;
  }

  .nav-links li a {
    padding-left: 9px !important;
    padding-right: 9px !important;
    font-size: 13px !important;
  }

  .wrapper .logo {
    flex-basis: 135px !important;
  }

  .wrapper .logo a img {
    width: 125px !important;
  }

  .cta-btn {
    padding: 9px 14px !important;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 950px) {
  nav,
  nav .wrapper {
    height: 74px !important;
    min-height: 74px !important;
  }

  nav .wrapper {
    width: calc(100% - 28px) !important;
  }

  .wrapper .logo {
    position: static !important;
    transform: none !important;
    height: 74px !important;
    flex: 0 0 125px !important;
  }

  .wrapper .logo a img {
    width: 116px !important;
    max-height: 62px !important;
  }

  .wrapper .btn.menu-btn {
    position: static !important;
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(8,111,194,.14) !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: var(--mm-blue) !important;
    font-size: 18px !important;
    box-shadow: 0 6px 18px rgba(7,31,75,.08) !important;
  }

  .wrapper .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: -105% !important;
    width: min(340px, 88vw) !important;
    max-width: 340px !important;
    height: 100vh !important;
    padding: 78px 18px 28px !important;
    display: block !important;
    overflow-y: auto !important;
    background: rgba(248,252,255,.98) !important;
    box-shadow: 20px 0 55px rgba(7,31,75,.18) !important;
    transition: left .35s cubic-bezier(.2,.75,.25,1) !important;
  }

  #menu-btn:checked ~ .nav-links {
    left: 0 !important;
  }

  .nav-links .close-btn {
    display: inline-flex !important;
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    width: 38px !important;
    height: 38px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(8,111,194,.12) !important;
    border-radius: 11px !important;
    color: var(--mm-blue) !important;
    background: #fff !important;
  }

  .nav-links li {
    display: block !important;
    margin: 5px 0 !important;
  }

  .nav-links li a,
  .nav-links .mobile-item {
    width: 100% !important;
    min-height: 46px !important;
    display: flex !important;
    align-items: center !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
  }

  .nav-links li a::after {
    display: none !important;
  }

  .nav-links li a:hover,
  .nav-links .mobile-item:hover {
    background: #eafaff !important;
  }

  .nav-links li:has(.drop-menu) > a::before,
  .nav-links li:has(.mega-box) > a::before {
    display: none !important;
  }

  .nav-links .drop-menu,
  .mega-box {
    position: static !important;
    width: 100% !important;
    max-height: 0 !important;
    padding: 0 0 0 10px !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden !important;
    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
  }

  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    max-height: 900px !important;
    padding-top: 5px !important;
  }

  .drop-menu li a,
  .row .mega-links li a {
    min-height: 38px !important;
    font-size: 12.5px !important;
  }

  .mega-box .content {
    width: 100% !important;
    margin: 0 !important;
    padding: 10px !important;
    display: block !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    background: rgba(235,248,253,.65) !important;
  }

  .mega-box .content .row {
    width: 100% !important;
    margin-bottom: 8px !important;
  }

  .mega-box .content .row:nth-child(1) {
    display: none !important;
  }

  .cta-button {
    margin: 14px 0 0 !important;
  }

  .cta-btn {
    width: 100% !important;
    min-height: 44px !important;
  }

  .footer-container {
    width: min(100% - 30px, 680px) !important;
    padding: 44px 0 34px !important;
  }
}

@media (max-width: 650px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .footer-column {
    padding: 20px !important;
  }

  .footer-title {
    font-size: 16px !important;
    margin-bottom: 17px !important;
  }

  .footer-detail,
  .footer-description {
    font-size: 12px !important;
  }

  .footer-links a {
    font-size: 12px !important;
  }

  .footer-bottom-inner {
    width: calc(100% - 30px) !important;
    min-height: 58px !important;
    font-size: 11px !important;
  }
}



/* ============================================================
   FINAL NAV DROPDOWN + ICON POLISH
   Fixes desktop dropdown positioning/overlap and keeps the
   compact modern navigation intact.
   ============================================================ */
@media (min-width: 951px) {
  nav .nav-links > li {
    position: relative !important;
  }

  nav .nav-links > li > .drop-menu {
    left: 50% !important;
    right: auto !important;
    top: 70px !important;
    transform: translate(-50%, -8px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 10050 !important;
  }

  nav .nav-links > li:hover > .drop-menu,
  nav .nav-links > li:focus-within > .drop-menu {
    top: 76px !important;
    transform: translate(-50%, 0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Keep the dropdown connected to the navigation instead of the hero. */
  nav .nav-links > li:has(> .drop-menu)::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 62px !important;
    width: 265px !important;
    height: 18px !important;
    transform: translateX(-50%) !important;
  }
}

/* Proper Font Awesome chevrons instead of text glyphs. */
.nav-links li:has(.drop-menu) > a::before,
.nav-links li:has(.mega-box) > a::before {
  content: "\f078" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  margin-left: 7px !important;
  order: 2 !important;
  font-size: 9px !important;
  color: #6f8098 !important;
  transform: translateY(0) !important;
}

/* Dropdown service icons. */
.nav-links .drop-menu li a {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
}

.nav-links .drop-menu li a i {
  width: 18px !important;
  min-width: 18px !important;
  text-align: center !important;
  color: var(--mm-cyan) !important;
  font-size: 12px !important;
}

.nav-links .drop-menu li a:hover i {
  color: var(--mm-blue) !important;
}

/* Prevent nested menu list items from inheriting odd flex/positioning. */
.nav-links .drop-menu,
.nav-links .drop-menu li,
.nav-links .mega-box,
.nav-links .mega-box .content,
.nav-links .mega-box .content .row {
  box-sizing: border-box !important;
}

/* Contact information uses the same compact readable scale. */
.contact-info .text {
  overflow-wrap: anywhere !important;
  line-height: 1.55 !important;
}

/* Address icon: clean, consistent sizing on contact/footer. */
.contact-info .fas,
.custom-footer .footer-detail i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

/* Mobile: keep the new icons, but let the accordion remain natural. */
@media (max-width: 950px) {
  .nav-links .drop-menu li a {
    gap: 9px !important;
  }
  .nav-links .drop-menu li a i {
    font-size: 11px !important;
  }
}

/* Products mega-menu spans the navigation width; only the Services item
   gets a local positioning context. */
@media (min-width: 951px) {
  nav .nav-links > li:has(> .mega-box) {
    position: static !important;
  }
  nav .nav-links > li > .mega-box {
    z-index: 10050 !important;
  }
}

/* ============================================================
   FINAL OVERLAP + ICON FIX
   - Prevents footer links from inheriting global <nav> styles
   - Removes yellow icon boxes
   - Gives dropdowns a solid modern panel
   - Keeps real Font Awesome icons aligned
   ============================================================ */

/* The footer now uses div.footer-links, but keep this guard for safety. */
.custom-footer .footer-links {
  position: static !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 9px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.custom-footer .footer-links a {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 34px !important;
  padding: 6px 8px !important;
  margin: 0 !important;
  gap: 10px !important;
  border-radius: 9px !important;
  color: rgba(255,255,255,.90) !important;
  background: transparent !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  transform: none !important;
}

/* Do not draw the old yellow square/arrow pseudo-element. */
.custom-footer .footer-links a::before {
  content: none !important;
  display: none !important;
  background: transparent !important;
}

.custom-footer .footer-links a i {
  position: static !important;
  flex: 0 0 18px !important;
  width: 18px !important;
  min-width: 18px !important;
  margin: 0 !important;
  color: #55d8ee !important;
  background: transparent !important;
  font-size: 13px !important;
  line-height: 1 !important;
  text-align: center !important;
}

.custom-footer .footer-links a:hover {
  color: #fff !important;
  background: rgba(255,255,255,.075) !important;
  transform: translateX(3px) !important;
}

.custom-footer .footer-links a:hover i {
  color: #fff !important;
}

.custom-footer .footer-detail i {
  color: #55d8ee !important;
  background: transparent !important;
}

.custom-footer .footer-title::after {
  background: linear-gradient(90deg, #55d8ee, #f6a51a) !important;
  background-color: transparent !important;
}

/* ---------- Desktop service dropdown ---------- */
@media (min-width: 951px) {
  nav .nav-links > li {
    position: relative !important;
  }

  nav .nav-links > li > .drop-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 290px !important;
    max-width: 290px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 9px !important;
    display: block !important;
    overflow: visible !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 100000 !important;
    border: 1px solid rgba(8,111,194,.12) !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 20px 50px rgba(7,31,75,.18) !important;
  }

  nav .nav-links > li:hover > .drop-menu,
  nav .nav-links > li:focus-within > .drop-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  nav .nav-links > li > .drop-menu::before {
    content: "" !important;
    position: absolute !important;
    top: -7px !important;
    left: 50% !important;
    width: 14px !important;
    height: 14px !important;
    transform: translateX(-50%) rotate(45deg) !important;
    background: #fff !important;
    border-left: 1px solid rgba(8,111,194,.12) !important;
    border-top: 1px solid rgba(8,111,194,.12) !important;
  }

  nav .nav-links > li > .drop-menu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  nav .nav-links > li > .drop-menu li a,
  nav .nav-links > li > .drop-menu li a:hover {
    position: relative !important;
    width: 100% !important;
    min-height: 42px !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 11px !important;
    margin: 0 !important;
    padding: 9px 12px !important;
    border-radius: 10px !important;
    background: transparent !important;
    color: #0b1f3a !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    transform: none !important;
  }

  /* Remove every inherited pseudo icon/line from dropdown items. */
  nav .nav-links > li > .drop-menu li a::before,
  nav .nav-links > li > .drop-menu li a::after {
    content: none !important;
    display: none !important;
  }

  nav .nav-links > li > .drop-menu li a i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 20px !important;
    width: 20px !important;
    min-width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #0aa8c5 !important;
    background: transparent !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  nav .nav-links > li > .drop-menu li a:hover {
    background: #eefaff !important;
    color: #086fc2 !important;
  }

  nav .nav-links > li > .drop-menu li a:hover i {
    color: #086fc2 !important;
  }
}

/* Never let a nested footer nav accidentally inherit the header. */
.custom-footer nav.footer-links {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  backdrop-filter: none !important;
}

/* ---------- Mobile navigation ---------- */
@media (max-width: 950px) {
  nav .nav-links > li > .drop-menu {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 0 0 10px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
  }

  nav .nav-links > li > .drop-menu::before {
    display: none !important;
  }

  nav .nav-links > li > .drop-menu li a,
  nav .nav-links > li > .drop-menu li a:hover {
    min-height: 40px !important;
    padding: 8px 12px !important;
    border-radius: 9px !important;
    background: transparent !important;
    color: #17304f !important;
  }

  nav .nav-links > li > .drop-menu li a::before,
  nav .nav-links > li > .drop-menu li a::after {
    content: none !important;
    display: none !important;
  }

  nav .nav-links > li > .drop-menu li a i {
    flex: 0 0 18px !important;
    width: 18px !important;
    min-width: 18px !important;
    color: #0aa8c5 !important;
  }

  .custom-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .custom-footer .footer-column {
    width: 100% !important;
  }

  .custom-footer .footer-links a {
    width: 100% !important;
    min-height: 36px !important;
    font-size: 13px !important;
  }
}


/* ============================================================
   FINAL NAV + GOOGLE RATING POLISH
   ============================================================ */
@media (max-width: 950px) {
  nav .nav-links .desktop-item { display: none !important; }
  nav .nav-links .mobile-item { display: block !important; }
  nav .nav-links > li > .drop-menu { display: block; }
  nav .nav-links .drop-menu li a { display: flex !important; align-items: center; gap: 10px; }
}
@media (min-width: 951px) {
  nav .nav-links .mobile-item { display: none !important; }
  nav .nav-links .desktop-item { display: inline-block !important; }
}
.nav-links > li > a[href*="/blogs"] { white-space: nowrap; }
.google-rating-section { width: min(1200px, calc(100% - 40px)); margin: 10px auto 28px; padding: 0; }
.google-rating-card { position: relative; overflow: hidden; border: 1px solid rgba(15,35,75,.08); border-radius: 24px; background: rgba(255,255,255,.96); box-shadow: 0 20px 55px rgba(15,35,75,.12); padding: 28px 32px 30px; }
.google-rating-card::before { content:""; position:absolute; width:260px; height:260px; right:-110px; top:-130px; border-radius:50%; background:radial-gradient(circle,rgba(66,133,244,.14),transparent 68%); pointer-events:none; }
.google-rating-top,.google-rating-main { position:relative; z-index:1; }
.google-rating-top { display:flex; align-items:center; justify-content:space-between; gap:20px; padding-bottom:20px; border-bottom:1px solid #edf0f5; }
.google-rating-brand { display:flex; align-items:center; gap:14px; }
.google-rating-icon { width:48px; height:48px; display:inline-flex; align-items:center; justify-content:center; border-radius:14px; background:#f5f8ff; color:#4285f4; font-size:23px; }
.google-rating-kicker { display:block; margin-bottom:3px; color:#718096; font-size:11px; font-weight:700; letter-spacing:.14em; }
.google-rating-card h2 { margin:0 !important; color:#12213f !important; font-size:27px !important; font-weight:700; line-height:1.15; }
.google-rating-link { display:inline-flex; align-items:center; gap:8px; color:#4285f4 !important; font-size:13px; font-weight:700; text-decoration:none !important; }
.google-rating-main { display:grid; grid-template-columns:.8fr 1.4fr auto; align-items:center; gap:32px; padding-top:26px; }
.google-score { display:flex; flex-direction:column; gap:5px; }
.google-score strong { color:#12213f; font-size:48px; line-height:1; letter-spacing:-.04em; }
.google-score > span { color:#697386; font-size:13px; }
.google-stars { display:flex; gap:3px; color:#fbbc04; font-size:17px; }
.google-rating-summary { min-width:0; }
.rating-summary-line { display:flex; justify-content:space-between; gap:16px; margin-bottom:10px; color:#475569; font-size:14px; }
.rating-summary-line b { color:#12213f; }
.rating-summary-track { width:100%; height:8px; overflow:hidden; border-radius:99px; background:#edf1f7; }
.rating-summary-track span { display:block; height:100%; border-radius:inherit; background:linear-gradient(90deg,#fbbc04,#f5a900); }
.google-rating-summary p { margin:11px 0 0 !important; color:#697386 !important; font-size:13px !important; line-height:1.55 !important; }
.google-review-button { display:inline-flex; align-items:center; justify-content:center; gap:9px; min-height:44px; padding:0 18px; border:1px solid #d8e2f2; border-radius:12px; color:#1f2937 !important; background:#fff; box-shadow:0 7px 18px rgba(15,35,75,.07); font-size:13px; font-weight:700; text-decoration:none !important; white-space:nowrap; transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease; }
.google-review-button i { color:#4285f4; }
.google-review-button:hover { transform:translateY(-2px); border-color:#b9cdf0; box-shadow:0 12px 24px rgba(15,35,75,.11); }
@media (max-width:800px) { .google-rating-section { width:min(100% - 28px,620px); } .google-rating-card { padding:22px 20px 24px; border-radius:20px; } .google-rating-top { align-items:flex-start; flex-direction:column; } .google-rating-main { grid-template-columns:1fr; gap:20px; } .google-review-button { width:100%; } }
@media (max-width:420px) { .google-rating-brand { align-items:flex-start; } .google-rating-icon { width:42px; height:42px; border-radius:12px; } .google-rating-card h2 { font-size:23px !important; } .google-score strong { font-size:42px; } }

/* ============================================================
   FINAL 2026 NAVIGATION + GOOGLE RATING POLISH
   Fixes overlapping dropdowns, mobile duplicate Services menu,
   improves spacing, and keeps the header/footer responsive.
   ============================================================ */

/* ---------- Header shell ---------- */
nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 100000 !important;
  height: 78px !important;
  min-height: 78px !important;
  background: rgba(255,255,255,.94) !important;
  border-bottom: 1px solid rgba(10,36,75,.08) !important;
  box-shadow: 0 8px 28px rgba(10,36,75,.07) !important;
  backdrop-filter: blur(18px) saturate(145%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
}

nav .wrapper {
  width: min(1420px, calc(100% - 36px)) !important;
  height: 78px !important;
  min-height: 78px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
}

.wrapper .logo {
  flex: 0 0 145px !important;
  width: 145px !important;
  height: 78px !important;
  display: flex !important;
  align-items: center !important;
}

.wrapper .logo a,
.wrapper .logo a img {
  display: block !important;
}

.wrapper .logo a img {
  width: 132px !important;
  max-width: 132px !important;
  max-height: 70px !important;
  height: auto !important;
  object-fit: contain !important;
}

.wrapper .nav-links {
  position: static !important;
  flex: 1 1 auto !important;
  height: 78px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.nav-links > li {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  margin: 0 !important;
}

.nav-links > li > a,
.nav-links > li > .mobile-item {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  min-height: 40px !important;
  padding: 8px 12px !important;
  border-radius: 11px !important;
  color: #0b1d3a !important;
  background: transparent !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  letter-spacing: .005em !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  transition: color .22s ease, background .22s ease, transform .22s ease !important;
}

.nav-links > li > a::after,
.nav-links > li > .mobile-item::after,
.nav-links > li:has(.drop-menu) > a::before,
.nav-links > li:has(.mega-box) > a::before {
  content: none !important;
  display: none !important;
}

.nav-links > li > a:hover,
.nav-links > li > .mobile-item:hover {
  color: #0878c7 !important;
  background: #eef9ff !important;
  transform: translateY(-1px) !important;
}

.nav-link-icon {
  display: none !important;
}

.nav-chevron {
  display: inline-flex !important;
  font-size: 9px !important;
  color: #6b7d94 !important;
  transition: transform .2s ease !important;
}

.nav-links > li:hover > a .nav-chevron {
  transform: rotate(180deg) !important;
}

/* ---------- Desktop dropdowns: hidden until hover/focus ---------- */
@media (min-width: 951px) {
  nav .nav-links .mobile-item,
  nav .nav-links input[type="checkbox"] {
    display: none !important;
  }

  nav .nav-links > li > .drop-menu {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 300px !important;
    max-width: 300px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 8px !important;
    overflow: visible !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 100010 !important;
    border: 1px solid rgba(8,111,194,.12) !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 22px 55px rgba(7,31,75,.18) !important;
  }

  nav .nav-links > li:hover > .drop-menu,
  nav .nav-links > li:focus-within > .drop-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  nav .nav-links > li > .drop-menu li {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }

  nav .nav-links > li > .drop-menu li a {
    width: 100% !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 9px 11px !important;
    border-radius: 10px !important;
    color: #132846 !important;
    background: transparent !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    transform: none !important;
  }

  nav .nav-links > li > .drop-menu li a:hover {
    color: #0878c7 !important;
    background: #eef9ff !important;
    transform: none !important;
  }

  nav .nav-links > li > .drop-menu li a::before,
  nav .nav-links > li > .drop-menu li a::after {
    display: none !important;
    content: none !important;
  }

  nav .nav-links > li > .drop-menu li a i {
    flex: 0 0 20px !important;
    width: 20px !important;
    min-width: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #0aa8c5 !important;
    background: transparent !important;
  }

  /* Products mega menu */
  nav .nav-links > li > .mega-box {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: min(1120px, calc(100vw - 40px)) !important;
    padding: 0 !important;
    z-index: 100010 !important;
  }

  nav .nav-links > li:hover > .mega-box,
  nav .nav-links > li:focus-within > .mega-box {
    display: block !important;
  }

  nav .mega-box .content {
    width: 100% !important;
    margin: 0 !important;
    padding: 20px !important;
    border: 1px solid rgba(8,111,194,.12) !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.98) !important;
    box-shadow: 0 24px 60px rgba(7,31,75,.18) !important;
  }
}

/* ---------- Chat button ---------- */
.cta-button {
  display: flex !important;
  align-items: center !important;
  margin-left: 8px !important;
}

.cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(8,111,194,.30) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg,#fff,#f3fbff) !important;
  color: #0b1d3a !important;
  box-shadow: 0 8px 22px rgba(8,111,194,.10) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
}

.cta-btn a { color: inherit !important; text-decoration: none !important; }
.cta-btn:hover {
  color: #fff !important;
  border-color: #0878c7 !important;
  background: linear-gradient(135deg,#0878c7,#10b9d4) !important;
  box-shadow: 0 12px 30px rgba(8,111,194,.22) !important;
}

/* ---------- Mobile menu: one clean drawer, no duplicate dropdown ---------- */
@media (max-width: 950px) {
  body.menu-open { overflow: hidden !important; }

  nav,
  nav .wrapper {
    height: 74px !important;
    min-height: 74px !important;
  }

  nav .wrapper {
    width: calc(100% - 24px) !important;
    gap: 10px !important;
  }

  .wrapper .logo {
    flex: 0 0 126px !important;
    width: 126px !important;
    height: 74px !important;
  }

  .wrapper .logo a img {
    width: 118px !important;
    max-width: 118px !important;
    max-height: 62px !important;
  }

  .wrapper .nav-links {
    position: fixed !important;
    top: 74px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    height: calc(100vh - 86px) !important;
    max-height: none !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    display: block !important;
    padding: 14px !important;
    margin: 0 !important;
    border: 1px solid rgba(8,111,194,.12) !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,.98) !important;
    box-shadow: 0 24px 70px rgba(7,31,75,.22) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    transform: translateY(-12px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease !important;
  }

  #menu-btn:checked ~ .nav-links {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-links > li {
    display: block !important;
    height: auto !important;
    width: 100% !important;
    margin: 2px 0 !important;
  }

  .nav-links > li > a,
  .nav-links > li > .mobile-item {
    width: 100% !important;
    min-height: 46px !important;
    justify-content: flex-start !important;
    padding: 10px 13px !important;
    border-radius: 12px !important;
    color: #122541 !important;
    background: transparent !important;
    font-size: 14px !important;
    cursor: pointer !important;
  }

  .nav-links > li > a:hover,
  .nav-links > li > .mobile-item:hover {
    background: #eef9ff !important;
    color: #0878c7 !important;
    transform: none !important;
  }

  .nav-link-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 28px !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 9px !important;
    color: #0878c7 !important;
    background: #eef9ff !important;
    font-size: 12px !important;
  }

  .nav-chevron {
    margin-left: auto !important;
    font-size: 10px !important;
    color: #6c7e95 !important;
  }

  /* Critical fix: submenus are NOT always visible on mobile. */
  nav .nav-links > li > .drop-menu,
  nav .nav-links > li > .mega-box {
    display: none !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    margin: 2px 0 6px !important;
    padding: 6px 0 6px 16px !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    display: block !important;
  }

  nav .drop-menu li {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }

  nav .drop-menu li a,
  nav .mega-links li a {
    width: 100% !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
    color: #53657d !important;
    background: #f7fbfe !important;
    font-size: 12.5px !important;
  }

  nav .drop-menu li + li a,
  nav .mega-links li + li a { margin-top: 4px !important; }

  nav .drop-menu li a:hover,
  nav .mega-links li a:hover {
    color: #0878c7 !important;
    background: #eef9ff !important;
  }

  nav .mega-box .content {
    width: 100% !important;
    display: block !important;
    padding: 8px !important;
    border: 1px solid rgba(8,111,194,.08) !important;
    border-radius: 14px !important;
    background: #f8fbfe !important;
    box-shadow: none !important;
  }

  nav .mega-box .content .row:first-child { display: none !important; }
  nav .mega-box .content .row { width: 100% !important; margin: 0 !important; }
  nav .mega-box .mega-links { display: grid !important; grid-template-columns: 1fr !important; gap: 4px !important; }

  .nav-links .cta-button {
    width: 100% !important;
    margin: 10px 0 2px !important;
    padding-top: 10px !important;
    border-top: 1px solid #edf1f6 !important;
  }

  .nav-links .cta-btn {
    width: 100% !important;
    min-height: 46px !important;
    font-size: 12px !important;
  }

  .wrapper .menu-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    border: 1px solid rgba(8,111,194,.16) !important;
    border-radius: 12px !important;
    background: #f4fbff !important;
    color: #0878c7 !important;
    font-size: 17px !important;
    line-height: 1 !important;
  }

  .nav-links .close-btn {
    position: sticky !important;
    top: 0 !important;
    float: right !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    margin: 0 0 8px auto !important;
    border: 1px solid #e5edf5 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #0b1d3a !important;
    cursor: pointer !important;
  }

  #close-btn { display: none !important; }
}

/* ---------- Small phones ---------- */
@media (max-width: 480px) {
  nav .wrapper { width: calc(100% - 18px) !important; }
  .wrapper .logo { flex-basis: 112px !important; width: 112px !important; }
  .wrapper .logo a img { width: 106px !important; }
  .wrapper .nav-links { left: 8px !important; right: 8px !important; border-radius: 16px !important; }
}

/* ---------- Footer spacing + 2026 copyright ---------- */
.custom-footer .footer-bottom-inner p { margin: 0 !important; }
.custom-footer .footer-bottom-inner a { text-decoration: none !important; }

/* ---------- Google rating polish ---------- */
.google-rating-section {
  width: min(1180px, calc(100% - 32px)) !important;
  margin: 34px auto 34px !important;
}

.google-rating-card {
  padding: 30px 34px !important;
  border-radius: 24px !important;
}

.google-rating-main {
  grid-template-columns: minmax(150px,.7fr) minmax(280px,1.6fr) auto !important;
  gap: 34px !important;
}

.rating-highlight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  background: #fafcff;
  color: #526176;
  font-size: 13px;
}

.rating-highlight-row i { color: #fbbc04; margin-right: 5px; }
.rating-highlight-row strong { color: #12213f; font-size: 15px; }

@media (max-width: 800px) {
  .google-rating-section { width: min(100% - 24px, 620px) !important; margin: 24px auto !important; }
  .google-rating-card { padding: 22px 18px !important; border-radius: 18px !important; }
  .google-rating-main { grid-template-columns: 1fr !important; gap: 18px !important; }
  .google-rating-top { gap: 14px !important; }
}

/* ============================================================
   MMT 2026 DESIGN PASS — SERVICES / PRODUCTS / STARTUP
   Consistent modern visual language + responsive polish.
   ============================================================ */

:root {
  --mmt-navy: #0a2148;
  --mmt-blue2: #0b66e8;
  --mmt-cyan2: #14b8d4;
  --mmt-gold2: #f6a21a;
  --mmt-surface: #f6faff;
  --mmt-card: rgba(255,255,255,.94);
}

/* Never allow the old decorative waves to create spacing/overlap. */
.mmt-wave-divider,
.faq-wave,
.wave-divider,
.wave-separator {
  display: none !important;
}

/* ---------- Modern global page canvas ---------- */
body {
  background: #f5f9fd;
}

.static-page,
.startup-page {
  width: 100%;
  overflow: hidden;
}

.static-page a,
.startup-page a {
  -webkit-tap-highlight-color: transparent;
}

.static-page img,
.startup-page img {
  max-width: 100%;
}

/* ---------- NAVIGATION: refined desktop + tablet ---------- */
@media (min-width: 951px) {
  nav {
    position: sticky !important;
    top: 0 !important;
    z-index: 100000 !important;
    background: rgba(255,255,255,.91) !important;
    backdrop-filter: blur(18px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
    border-bottom: 1px solid rgba(8,73,145,.08) !important;
    box-shadow: 0 8px 30px rgba(7,31,75,.055) !important;
  }

  nav .wrapper {
    width: min(1480px, calc(100% - 48px)) !important;
    min-height: 78px !important;
    height: 78px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .wrapper .logo {
    flex: 0 0 170px !important;
    width: 170px !important;
  }

  .wrapper .logo a img {
    width: 145px !important;
    max-width: 145px !important;
    transition: transform .35s ease, filter .35s ease !important;
  }

  .wrapper .logo a:hover img {
    transform: translateY(-2px) scale(1.025) !important;
    filter: drop-shadow(0 8px 14px rgba(11,102,232,.12)) !important;
  }

  .nav-links {
    gap: 4px !important;
    align-items: center !important;
  }

  .nav-links > li > a,
  .nav-links > li > .desktop-item {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    min-height: 44px !important;
    padding: 9px 14px !important;
    border-radius: 13px !important;
    color: #11233f !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    transition: color .25s ease, background .25s ease, transform .25s ease !important;
  }

  .nav-links > li > a::after,
  .nav-links > li > .desktop-item::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 3px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--mmt-cyan2), var(--mmt-blue2));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
  }

  .nav-links > li > a:hover,
  .nav-links > li > .desktop-item:hover {
    color: #0873ce !important;
    background: #eef8ff !important;
    transform: translateY(-1px) !important;
  }

  .nav-links > li > a:hover::after,
  .nav-links > li > .desktop-item:hover::after {
    transform: scaleX(1);
  }

  .nav-link-icon { display: none !important; }

  .nav-chevron {
    margin-left: 1px !important;
    color: #68809c !important;
    font-size: 10px !important;
    transition: transform .25s ease !important;
  }

  .nav-links > li:hover > .desktop-item .nav-chevron {
    transform: rotate(180deg) !important;
  }

  .cta-btn {
    min-height: 48px !important;
    padding: 0 22px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    letter-spacing: .07em !important;
    box-shadow: 0 10px 28px rgba(8,111,194,.10) !important;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease !important;
  }

  .cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 34px rgba(8,111,194,.18) !important;
  }
}

@media (min-width: 951px) and (max-width: 1220px) {
  nav .wrapper { width: calc(100% - 28px) !important; }
  .wrapper .logo { flex-basis: 145px !important; width: 145px !important; }
  .wrapper .logo a img { width: 125px !important; }
  .nav-links > li > a,
  .nav-links > li > .desktop-item { padding-left: 9px !important; padding-right: 9px !important; font-size: 13px !important; }
  .cta-btn { padding: 0 15px !important; font-size: 11px !important; }
}

/* ---------- Shared hero system for Services + Products ---------- */
body[data-route="/services"] .services-wrapper,
body[data-route="/products"] .product-wrapper {
  min-height: 100%;
  background:
    radial-gradient(circle at 7% 15%, rgba(20,184,212,.10), transparent 23%),
    radial-gradient(circle at 94% 40%, rgba(11,102,232,.08), transparent 24%),
    #f6faff !important;
}

body[data-route="/services"] .services-wrapper .hero-about,
body[data-route="/products"] .product-wrapper .hero-about {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  min-height: 350px !important;
  margin: 0 !important;
  padding: 84px 24px 76px !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    radial-gradient(circle at 83% 25%, rgba(20,184,212,.24), transparent 23%),
    radial-gradient(circle at 13% 78%, rgba(246,162,26,.13), transparent 20%),
    linear-gradient(135deg, #071d46 0%, #0b55b8 52%, #0ea6c8 100%) !important;
}

body[data-route="/services"] .services-wrapper .hero-about::before,
body[data-route="/products"] .product-wrapper .hero-about::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  opacity: .18 !important;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px) !important;
  background-size: 44px 44px !important;
  animation: mmtPageGrid 22s linear infinite !important;
}

body[data-route="/services"] .services-wrapper .hero-about::after,
body[data-route="/products"] .product-wrapper .hero-about::after {
  content: "" !important;
  position: absolute !important;
  width: 520px !important;
  height: 520px !important;
  right: -250px !important;
  top: -290px !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-radius: 50% !important;
  box-shadow:
    0 0 0 55px rgba(255,255,255,.035),
    0 0 0 110px rgba(255,255,255,.025) !important;
  animation: mmtHeroRing 12s ease-in-out infinite !important;
  pointer-events: none !important;
}

body[data-route="/services"] .services-wrapper .hero-about .container,
body[data-route="/products"] .product-wrapper .hero-about .container {
  width: 100% !important;
  max-width: 1160px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

body[data-route="/services"] .services-wrapper .hero-about .row,
body[data-route="/products"] .product-wrapper .hero-about .row {
  display: block !important;
  margin: 0 !important;
}

body[data-route="/services"] .services-wrapper .hero-about .col-12,
body[data-route="/products"] .product-wrapper .hero-about .col-12 {
  padding: 0 !important;
}

body[data-route="/services"] .services-wrapper .services-line,
body[data-route="/products"] .product-wrapper .products-line {
  position: relative !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(42px, 7vw, 78px) !important;
  font-weight: 850 !important;
  letter-spacing: -.055em !important;
  line-height: .98 !important;
  text-shadow: 0 20px 50px rgba(0,20,55,.24) !important;
}

body[data-route="/services"] .services-wrapper .services-line::before,
body[data-route="/products"] .product-wrapper .products-line::before {
  display: block;
  margin: 0 auto 18px;
  width: fit-content;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #dff9ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

body[data-route="/services"] .services-wrapper .services-line::before { content: "WHAT WE DO"; }
body[data-route="/products"] .product-wrapper .products-line::before { content: "WHAT WE BUILD"; }

body[data-route="/services"] .services-wrapper .services-line::after,
body[data-route="/products"] .product-wrapper .products-line::after {
  content: "" !important;
  display: block !important;
  width: 120px !important;
  height: 4px !important;
  margin: 20px auto 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #57e9ff, #fff, #f6a21a) !important;
  box-shadow: 0 0 25px rgba(87,233,255,.30) !important;
}

/* ---------- Shared card language ---------- */
body[data-route="/services"] .service-container,
body[data-route="/products"] .product-wrapper {
  width: 100% !important;
}

body[data-route="/services"] .service-container {
  width: min(1160px, calc(100% - 36px)) !important;
  margin: 0 auto !important;
  padding: 58px 0 88px !important;
}

body[data-route="/services"] .services-card,
body[data-route="/products"] .products-card {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, .88fr) !important;
  align-items: center !important;
  gap: clamp(28px, 5vw, 62px) !important;
  width: 100% !important;
  min-height: 330px !important;
  margin: 0 0 24px !important;
  padding: clamp(28px, 4vw, 46px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(13,77,154,.09) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 90% 10%, rgba(20,184,212,.07), transparent 24%),
    linear-gradient(145deg, #fff 0%, #f8fbff 100%) !important;
  box-shadow: 0 16px 45px rgba(10,48,96,.075) !important;
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .35s ease !important;
}

body[data-route="/services"] .services-card:nth-of-type(even),
body[data-route="/products"] .products-card:nth-of-type(even) {
  grid-template-columns: minmax(260px, .88fr) minmax(0, 1.12fr) !important;
}

body[data-route="/services"] .services-card:nth-of-type(even) .services-left,
body[data-route="/products"] .products-card:nth-of-type(even) .products-left { order: 2; }
body[data-route="/services"] .services-card:nth-of-type(even) .services-right,
body[data-route="/products"] .products-card:nth-of-type(even) .right { order: 1; }

body[data-route="/services"] .services-card::before,
body[data-route="/products"] .products-card::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 4px !important;
  height: auto !important;
  border-radius: 28px 0 0 28px !important;
  background: linear-gradient(180deg, var(--mmt-cyan2), var(--mmt-blue2), var(--mmt-gold2)) !important;
}

body[data-route="/services"] .services-card::after,
body[data-route="/products"] .products-card::after {
  content: "" !important;
  position: absolute !important;
  width: 230px !important;
  height: 230px !important;
  right: -125px !important;
  bottom: -130px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(20,184,212,.10), transparent 68%) !important;
  pointer-events: none !important;
}

body[data-route="/services"] .services-card:hover,
body[data-route="/products"] .products-card:hover {
  transform: translateY(-9px) !important;
  border-color: rgba(20,184,212,.24) !important;
  box-shadow: 0 28px 70px rgba(10,48,96,.14) !important;
}

body[data-route="/services"] .services-left,
body[data-route="/products"] .products-left {
  min-width: 0 !important;
  padding: 0 !important;
  display: block !important;
}

body[data-route="/services"] .services-left h2,
body[data-route="/products"] .products-left h2 {
  margin: 0 0 14px !important;
  color: #0b1f42 !important;
  font-size: clamp(22px, 2.35vw, 31px) !important;
  line-height: 1.15 !important;
  font-weight: 850 !important;
  letter-spacing: -.035em !important;
}

body[data-route="/services"] .services-left h2::after,
body[data-route="/products"] .products-left h2::after {
  content: "" !important;
  display: block !important;
  width: 52px !important;
  height: 3px !important;
  margin-top: 10px !important;
  border-radius: 99px !important;
  background: linear-gradient(90deg, var(--mmt-cyan2), var(--mmt-gold2)) !important;
}

body[data-route="/services"] .services-left p,
body[data-route="/products"] .products-left p {
  max-width: 720px !important;
  margin: 0 !important;
  color: #63738d !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
  text-align: left !important;
  overflow: visible !important;
  max-height: none !important;
}

body[data-route="/services"] .service-learn-more,
body[data-route="/products"] .products-learn-more {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  margin-top: 20px !important;
  padding: 10px 16px !important;
  border: 1px solid rgba(11,102,232,.16) !important;
  border-radius: 999px !important;
  background: #f1f8ff !important;
  color: #0968d9 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease !important;
}

body[data-route="/services"] .service-learn-more::after,
body[data-route="/products"] .products-learn-more::after {
  content: "↗" !important;
  font-size: 14px !important;
  transition: transform .3s ease !important;
}

body[data-route="/services"] .service-learn-more:hover,
body[data-route="/products"] .products-learn-more:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #0b66e8, #14b8d4) !important;
  box-shadow: 0 12px 26px rgba(11,102,232,.20) !important;
  transform: translateY(-2px) !important;
}

body[data-route="/services"] .service-learn-more:hover::after,
body[data-route="/products"] .products-learn-more:hover::after { transform: translate(2px,-2px); }

body[data-route="/services"] .services-right,
body[data-route="/products"] .products-card .right {
  position: relative !important;
  min-width: 0 !important;
  min-height: 245px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 22px !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 40%, rgba(20,184,212,.13), transparent 50%),
    linear-gradient(145deg, #f3faff, #eaf3ff) !important;
  border: 1px solid rgba(11,102,232,.08) !important;
}

body[data-route="/services"] .services-right::before,
body[data-route="/products"] .products-card .right::before {
  content: "" !important;
  position: absolute !important;
  width: 170px !important;
  height: 170px !important;
  border: 1px solid rgba(11,102,232,.13) !important;
  border-radius: 50% !important;
  box-shadow: 0 0 0 28px rgba(20,184,212,.035), 0 0 0 56px rgba(11,102,232,.025) !important;
  animation: mmtImageOrbit 11s linear infinite !important;
}

body[data-route="/services"] .services-right img,
body[data-route="/products"] .products-card .right img {
  position: relative !important;
  z-index: 2 !important;
  width: auto !important;
  max-width: 84% !important;
  max-height: 210px !important;
  object-fit: contain !important;
  border-radius: 16px !important;
  filter: drop-shadow(0 20px 28px rgba(6,44,91,.14)) !important;
  animation: mmtImageFloat 5.5s ease-in-out infinite !important;
  transition: transform .5s cubic-bezier(.22,1,.36,1), filter .5s ease !important;
}

body[data-route="/services"] .services-card:hover .services-right img,
body[data-route="/products"] .products-card:hover .right img {
  transform: translateY(-8px) scale(1.045) !important;
  filter: drop-shadow(0 26px 36px rgba(6,44,91,.21)) saturate(1.06) !important;
}

/* ---------- Startup redesign ---------- */
body[data-route="/startup"] .startup-page {
  background:
    radial-gradient(circle at 7% 20%, rgba(20,184,212,.08), transparent 24%),
    radial-gradient(circle at 93% 48%, rgba(246,162,26,.07), transparent 22%),
    #f6faff !important;
}

body[data-route="/startup"] .startup-hero {
  position: relative !important;
  min-height: 600px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    radial-gradient(circle at 76% 38%, rgba(20,184,212,.22), transparent 25%),
    radial-gradient(circle at 18% 82%, rgba(246,162,26,.11), transparent 22%),
    linear-gradient(135deg, #071c40 0%, #0a4f8d 58%, #0ca2be 100%) !important;
}

body[data-route="/startup"] .startup-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  opacity: .18 !important;
  background-image:
    linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px) !important;
  background-size: 46px 46px !important;
  animation: mmtPageGrid 22s linear infinite !important;
}

body[data-route="/startup"] .startup-hero::after {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  width: min(44vw, 600px) !important;
  height: min(44vw, 600px) !important;
  right: clamp(-150px, -6vw, -40px) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 32% 68% 58% 42% / 44% 42% 58% 56% !important;
  box-shadow:
    0 0 0 35px rgba(255,255,255,.025),
    0 0 0 75px rgba(20,184,212,.035),
    inset 0 0 80px rgba(255,255,255,.04) !important;
  animation: mmtStartupBlob 12s ease-in-out infinite !important;
  pointer-events: none !important;
}

body[data-route="/startup"] .startup-hero-content {
  position: relative !important;
  z-index: 3 !important;
  width: min(1180px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding: 105px 0 105px !important;
}

body[data-route="/startup"] .startup-hero-content::after {
  content: "STARTUP GROWTH SYSTEM" !important;
  position: absolute !important;
  right: 4% !important;
  top: 20% !important;
  width: 290px !important;
  height: 180px !important;
  padding: 24px !important;
  display: flex !important;
  align-items: flex-end !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 22px !important;
  color: rgba(255,255,255,.82) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .16em !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.025)) !important;
  box-shadow: 0 30px 70px rgba(0,0,0,.18) !important;
  backdrop-filter: blur(10px) !important;
  animation: mmtDashboardFloat 6s ease-in-out infinite !important;
  pointer-events: none !important;
}

body[data-route="/startup"] .startup-hero .mmt-eyebrow {
  position: relative !important;
  z-index: 4 !important;
  border-color: rgba(255,255,255,.26) !important;
  background: rgba(255,255,255,.09) !important;
  color: #dffaff !important;
}

body[data-route="/startup"] .startup-hero h1 {
  position: relative !important;
  z-index: 4 !important;
  max-width: 720px !important;
  margin: 18px 0 0 !important;
  color: #fff !important;
  font-size: clamp(42px, 6vw, 76px) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
  text-shadow: 0 20px 50px rgba(0,0,0,.22) !important;
}

body[data-route="/startup"] .startup-hero h1 span {
  color: #67eaff !important;
}

body[data-route="/startup"] .startup-hero p {
  position: relative !important;
  z-index: 4 !important;
  max-width: 620px !important;
  margin: 22px 0 0 !important;
  color: rgba(255,255,255,.84) !important;
  font-size: clamp(15px, 1.5vw, 18px) !important;
  line-height: 1.7 !important;
}

body[data-route="/startup"] .startup-hero-actions {
  position: relative !important;
  z-index: 4 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 30px !important;
}

body[data-route="/startup"] .startup-hero .mmt-primary-btn {
  background: linear-gradient(135deg, #0b7de5, #16c0d8) !important;
}

body[data-route="/startup"] .startup-hero .mmt-ghost-btn {
  border: 1px solid rgba(255,255,255,.28) !important;
  background: rgba(255,255,255,.07) !important;
  color: #fff !important;
  border-radius: 14px !important;
  backdrop-filter: blur(8px) !important;
  transition: transform .3s ease, background .3s ease, border-color .3s ease !important;
}

body[data-route="/startup"] .startup-hero .mmt-ghost-btn:hover {
  transform: translateY(-3px) !important;
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.45) !important;
}

body[data-route="/startup"] .startup-floating-card {
  z-index: 5 !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.10) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 20px 45px rgba(0,0,0,.18) !important;
  border-radius: 18px !important;
  color: #fff !important;
  animation: mmtDashboardFloat 5s ease-in-out infinite !important;
}

body[data-route="/startup"] .startup-floating-card.card-b { animation-delay: -2.2s !important; }

body[data-route="/startup"] .startup-intro {
  padding: 90px 24px 80px !important;
}

body[data-route="/startup"] .startup-feature-grid {
  width: min(1120px, 100%) !important;
  margin: 38px auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  gap: 18px !important;
}

body[data-route="/startup"] .startup-feature {
  position: relative !important;
  min-height: 230px !important;
  padding: 28px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(13,77,154,.09) !important;
  box-shadow: 0 16px 42px rgba(10,48,96,.07) !important;
  overflow: hidden !important;
}

body[data-route="/startup"] .startup-feature::after {
  content: "" !important;
  position: absolute !important;
  width: 100px !important;
  height: 100px !important;
  right: -42px !important;
  top: -42px !important;
  border-radius: 50% !important;
  background: rgba(20,184,212,.08) !important;
}

body[data-route="/startup"] .startup-feature i {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  margin: 0 0 18px !important;
  border-radius: 15px !important;
  color: #0874d5 !important;
  background: #eaf7ff !important;
  box-shadow: inset 0 0 0 1px rgba(11,102,232,.08) !important;
}

body[data-route="/startup"] .startup-feature h3 {
  margin: 0 0 8px !important;
  color: #0b1f42 !important;
  font-size: 19px !important;
  font-weight: 850 !important;
}

body[data-route="/startup"] .startup-feature p {
  margin: 0 !important;
  color: #667792 !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

body[data-route="/startup"] .startup-details {
  padding: 70px 24px 90px !important;
  background: #eef6fc !important;
}

body[data-route="/startup"] .startup-detail-list {
  width: min(1120px,100%) !important;
  margin: 38px auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  gap: 18px !important;
}

body[data-route="/startup"] .startup-detail {
  display: grid !important;
  grid-template-columns: 52px minmax(0,1fr) !important;
  gap: 17px !important;
  padding: 25px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(13,77,154,.09) !important;
  background: #fff !important;
  box-shadow: 0 14px 38px rgba(10,48,96,.065) !important;
}

body[data-route="/startup"] .startup-detail .detail-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 16px !important;
  display: grid !important;
  place-items: center !important;
  background: linear-gradient(135deg,#0b73df,#13b8d2) !important;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(11,102,232,.18) !important;
}

body[data-route="/startup"] .startup-detail h3 {
  margin: 4px 0 8px !important;
  color: #0b1f42 !important;
  font-size: 18px !important;
}

body[data-route="/startup"] .startup-detail p {
  margin: 0 !important;
  color: #687993 !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

body[data-route="/startup"] .startup-cta {
  padding: 0 24px 90px !important;
  background: #eef6fc !important;
}

body[data-route="/startup"] .startup-cta-box {
  width: min(1120px,100%) !important;
  margin: 0 auto !important;
  padding: 48px !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: linear-gradient(135deg,#071d46,#0a63bb 58%,#10a9c4) !important;
  box-shadow: 0 28px 70px rgba(7,44,90,.18) !important;
}

/* ---------- Shared section-heading polish ---------- */
.startup-page .section-heading h2 {
  color: #0b1f42 !important;
  font-size: clamp(30px, 4vw, 46px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.045em !important;
}

.startup-page .section-heading h2 span { color: #0b78db !important; }
.startup-page .section-heading p { color: #687993 !important; }

/* ---------- Full responsive safety ---------- */
@media (max-width: 950px) {
  nav {
    position: sticky !important;
    top: 0 !important;
    z-index: 100000 !important;
  }

  .static-page,
  .startup-page { overflow-x: hidden !important; }

  body[data-route="/services"] .services-wrapper .hero-about,
  body[data-route="/products"] .product-wrapper .hero-about {
    min-height: 300px !important;
    padding: 74px 20px 65px !important;
  }

  body[data-route="/services"] .services-wrapper .services-line,
  body[data-route="/products"] .product-wrapper .products-line {
    font-size: clamp(38px, 10vw, 58px) !important;
  }

  body[data-route="/services"] .service-container {
    width: min(100% - 28px, 720px) !important;
    padding-top: 36px !important;
  }

  body[data-route="/services"] .services-card,
  body[data-route="/products"] .products-card,
  body[data-route="/services"] .services-card:nth-of-type(even),
  body[data-route="/products"] .products-card:nth-of-type(even) {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    min-height: 0 !important;
    padding: 25px !important;
    border-radius: 22px !important;
  }

  body[data-route="/services"] .services-card .services-left,
  body[data-route="/services"] .services-card:nth-of-type(even) .services-left,
  body[data-route="/products"] .products-card .products-left,
  body[data-route="/products"] .products-card:nth-of-type(even) .products-left {
    order: 1 !important;
  }

  body[data-route="/services"] .services-card .services-right,
  body[data-route="services"] .services-card:nth-of-type(even) .services-right,
  body[data-route="/products"] .products-card .right,
  body[data-route="/products"] .products-card:nth-of-type(even) .right {
    order: 2 !important;
  }

  body[data-route="/services"] .services-right,
  body[data-route="/products"] .products-card .right {
    min-height: 210px !important;
  }

  body[data-route="/startup"] .startup-hero {
    min-height: 560px !important;
  }

  body[data-route="/startup"] .startup-hero-content {
    width: min(100% - 36px, 720px) !important;
    padding: 82px 0 90px !important;
  }

  body[data-route="/startup"] .startup-hero-content::after {
    right: -50px !important;
    top: 16% !important;
    opacity: .5 !important;
  }

  body[data-route="/startup"] .startup-feature-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }

  body[data-route="/startup"] .startup-detail-list {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 650px) {
  .static-page h1 { font-size: 36px !important; }
  .static-page h2 { font-size: 22px !important; }

  body[data-route="/services"] .services-wrapper .hero-about,
  body[data-route="/products"] .product-wrapper .hero-about {
    min-height: 270px !important;
    padding: 60px 16px 50px !important;
  }

  body[data-route="/services"] .services-wrapper .services-line,
  body[data-route="/products"] .product-wrapper .products-line {
    font-size: 39px !important;
    letter-spacing: -.045em !important;
  }

  body[data-route="/services"] .services-wrapper .services-line::before,
  body[data-route="/products"] .product-wrapper .products-line::before {
    margin-bottom: 13px !important;
    font-size: 8px !important;
  }

  body[data-route="/services"] .services-wrapper .services-line::after,
  body[data-route="/products"] .product-wrapper .products-line::after {
    width: 88px !important;
    height: 3px !important;
    margin-top: 14px !important;
  }

  body[data-route="/services"] .service-container {
    width: calc(100% - 20px) !important;
    padding: 25px 0 60px !important;
  }

  body[data-route="/services"] .services-card,
  body[data-route="/products"] .products-card {
    gap: 18px !important;
    margin-bottom: 16px !important;
    padding: 21px !important;
    border-radius: 19px !important;
  }

  body[data-route="/services"] .services-left h2,
  body[data-route="/products"] .products-left h2 {
    font-size: 21px !important;
  }

  body[data-route="/services"] .services-left p,
  body[data-route="/products"] .products-left p {
    font-size: 13px !important;
    line-height: 1.68 !important;
  }

  body[data-route="/services"] .services-right,
  body[data-route="/products"] .products-card .right {
    min-height: 175px !important;
    padding: 15px !important;
    border-radius: 17px !important;
  }

  body[data-route="/services"] .services-right img,
  body[data-route="/products"] .products-card .right img {
    max-height: 150px !important;
    max-width: 82% !important;
  }

  body[data-route="/startup"] .startup-hero {
    min-height: 590px !important;
  }

  body[data-route="/startup"] .startup-hero-content {
    width: calc(100% - 28px) !important;
    padding: 72px 0 80px !important;
  }

  body[data-route="/startup"] .startup-hero-content::after,
  body[data-route="/startup"] .startup-hero::after {
    display: none !important;
  }

  body[data-route="/startup"] .startup-hero h1 {
    font-size: clamp(40px, 12vw, 58px) !important;
  }

  body[data-route="/startup"] .startup-hero p {
    font-size: 14px !important;
  }

  body[data-route="/startup"] .startup-hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  body[data-route="/startup"] .startup-hero-actions a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  body[data-route="/startup"] .startup-floating-card {
    transform: scale(.82) !important;
  }

  body[data-route="/startup"] .startup-floating-card.card-a { right: -8px !important; top: 58% !important; }
  body[data-route="/startup"] .startup-floating-card.card-b { left: -12px !important; bottom: 8% !important; }

  body[data-route="/startup"] .startup-intro,
  body[data-route="/startup"] .startup-details {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body[data-route="/startup"] .startup-feature-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body[data-route="/startup"] .startup-feature {
    min-height: 0 !important;
    padding: 23px !important;
  }

  body[data-route="/startup"] .startup-detail {
    grid-template-columns: 44px minmax(0,1fr) !important;
    padding: 20px !important;
  }

  body[data-route="/startup"] .startup-detail .detail-icon {
    width: 44px !important;
    height: 44px !important;
  }

  body[data-route="/startup"] .startup-cta {
    padding-left: 14px !important;
    padding-right: 14px !important;
    padding-bottom: 60px !important;
  }

  body[data-route="/startup"] .startup-cta-box {
    padding: 30px 22px !important;
    border-radius: 22px !important;
  }
}

@media (max-width: 390px) {
  body[data-route="/services"] .services-wrapper .services-line,
  body[data-route="/products"] .product-wrapper .products-line { font-size: 34px !important; }
  body[data-route="/services"] .services-card,
  body[data-route="/products"] .products-card { padding: 18px !important; }
}

/* ---------- Motion ---------- */
@keyframes mmtPageGrid {
  from { background-position: 0 0, 0 0; }
  to { background-position: 44px 44px, 44px 44px; }
}

@keyframes mmtHeroRing {
  0%,100% { transform: translate(0,0) rotate(0deg) scale(.96); opacity: .55; }
  50% { transform: translate(-28px,22px) rotate(14deg) scale(1.04); opacity: 1; }
}

@keyframes mmtImageFloat {
  0%,100% { transform: translateY(2px); }
  50% { transform: translateY(-9px); }
}

@keyframes mmtImageOrbit {
  from { transform: rotate(0deg) scale(.86); }
  50% { opacity: .9; }
  to { transform: rotate(360deg) scale(.86); }
}

@keyframes mmtStartupBlob {
  0%,100% { border-radius: 32% 68% 58% 42% / 44% 42% 58% 56%; transform: translateY(-50%) rotate(0deg); }
  50% { border-radius: 55% 45% 38% 62% / 54% 38% 62% 46%; transform: translateY(-50%) rotate(8deg) scale(1.035); }
}

@keyframes mmtDashboardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (prefers-reduced-motion: reduce) {
  .startup-hero::before,
  .startup-hero::after,
  .startup-hero-content::after,
  .startup-floating-card,
  .services-right::before,
  .products-card .right::before,
  .services-right img,
  .products-card .right img,
  .hero-about::before,
  .hero-about::after {
    animation: none !important;
  }
}


/* ============================================================
   FINAL RESPONSIVE STABILITY PATCH — 2026
   Fixes mobile navigation overlap, product/service card stacking,
   industry text spacing and 3-column client layout.
   ============================================================ */

/* Global box sizing / overflow safety */
html { overflow-x: hidden; }
body { overflow-x: hidden; }
img, video, iframe { max-width: 100%; }

/* ---------- Navigation ---------- */
nav .wrapper {
  min-width: 0;
}

.nav-links > li,
.nav-links > li.has-submenu {
  min-width: 0;
}

.nav-links .drop-menu,
.nav-links .mega-box {
  z-index: 10001;
}

@media (max-width: 950px) {
  nav {
    height: 74px !important;
  }

  nav .wrapper {
    height: 74px !important;
    padding: 0 18px !important;
  }

  .wrapper .logo {
    left: 18px !important;
    transform: none !important;
  }

  .wrapper .logo a img {
    width: 108px !important;
    max-height: 62px;
  }

  .wrapper .btn.menu-btn {
    right: 14px !important;
    top: 16px !important;
    width: 42px;
    height: 42px;
    display: grid !important;
    place-items: center;
    border: 1px solid #d7e8f7;
    border-radius: 12px;
    background: #fff;
    color: #0874d5;
    box-shadow: 0 8px 22px rgba(12, 73, 130, .10);
  }

  .wrapper .nav-links {
    width: min(340px, 88vw) !important;
    max-width: none !important;
    height: calc(100dvh - 74px) !important;
    top: 74px !important;
    left: -110% !important;
    padding: 18px 14px 30px !important;
    background: rgba(248, 252, 255, .98) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow-y: auto !important;
    overflow-x: hidden !important;
    box-shadow: 12px 0 40px rgba(7, 39, 78, .14) !important;
  }

  #menu-btn:checked ~ .nav-links {
    left: 0 !important;
  }

  .nav-links > li {
    margin: 4px 0 !important;
  }

  .nav-links > li > a,
  .nav-links .mobile-item {
    min-height: 46px;
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 13px !important;
    border-radius: 12px;
    font-size: 15px !important;
    line-height: 1.2 !important;
    color: #17345f !important;
  }

  .nav-links > li > a:hover,
  .nav-links .mobile-item:hover {
    background: #eaf6ff !important;
  }

  .nav-link-icon {
    width: 22px;
    flex: 0 0 22px;
    text-align: center;
    color: #0b8bc7;
  }

  .nav-chevron {
    margin-left: auto;
    font-size: 11px;
  }

  /* Critical: submenu boxes remain in normal document flow and are closed
     until their checkbox is explicitly selected. */
  .nav-links .drop-menu,
  .nav-links .mega-box {
    position: static !important;
    width: 100% !important;
    max-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    transition: max-height .35s ease, margin .25s ease !important;
  }

  #showDrop:checked ~ .drop-menu {
    max-height: 55vh !important;
    margin: 2px 0 8px !important;
    overflow-y: auto !important;
  }

  #showMega:checked ~ .mega-box {
    max-height: 58vh !important;
    margin: 2px 0 8px !important;
    overflow-y: auto !important;
  }

  .drop-menu li,
  .mega-box .content .row,
  .row .mega-links li {
    margin: 0 !important;
  }

  .drop-menu li a,
  .mega-box .content .row a,
  .row .mega-links li a {
    min-height: 38px;
    display: flex !important;
    align-items: center;
    padding: 8px 12px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    border-radius: 9px;
    color: #58708f !important;
  }

  .drop-menu li a i,
  .mega-box .content .row a i {
    width: 20px;
    margin-right: 8px;
    color: #0b8bc7;
  }

  .mega-box .content {
    display: block !important;
    width: 100% !important;
    padding: 4px 0 !important;
    background: #fff !important;
    border: 1px solid #e3edf6;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(16, 57, 99, .08) !important;
  }

  .mega-box .content .row {
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .mega-box .content .row:first-child {
    display: none !important;
  }

  .content .row .mega-links {
    padding: 3px 8px !important;
    margin: 0 !important;
    border: 0 !important;
  }

  .cta-button {
    display: block !important;
    margin: 14px 0 0 !important;
    padding: 0 !important;
  }

  .cta-btn {
    width: 100% !important;
    min-height: 46px;
    border-radius: 14px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
  }
}

/* ---------- Industries ---------- */
.industries-container {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  width: min(1180px, calc(100% - 40px));
  margin: 30px auto 0 !important;
}

.industry {
  width: auto !important;
  min-width: 0;
  padding: 28px 22px !important;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 34px rgba(17, 57, 100, .08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.industry:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(17, 57, 100, .13);
}

.industry h4 {
  margin: 16px 0 8px !important;
  color: #102a55 !important;
  line-height: 1.3 !important;
}

.industry p {
  max-width: 250px;
  margin: 0 auto !important;
  color: #657a98 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  text-align: center !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

@media (max-width: 992px) {
  .industries-container { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 600px) {
  .industries { padding: 58px 0 !important; }
  .industries-container {
    width: calc(100% - 28px) !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 24px !important;
  }
  .industry {
    padding: 24px 18px !important;
  }
  .industry p {
    max-width: 310px !important;
    font-size: 13.5px !important;
    line-height: 1.7 !important;
  }
}

/* ---------- Services + Products: hard responsive card layout ---------- */
body[data-route="/services"] .services-card,
body[data-route="/products"] .products-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, .85fr) !important;
  align-items: stretch !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

body[data-route="/services"] .services-card > *,
body[data-route="/products"] .products-card > * {
  min-width: 0 !important;
}

body[data-route="/services"] .services-left,
body[data-route="/products"] .products-left {
  min-width: 0 !important;
  overflow-wrap: anywhere;
}

body[data-route="/services"] .services-left p,
body[data-route="/products"] .products-left p {
  overflow-wrap: anywhere;
  word-break: normal;
}

body[data-route="/services"] .services-right,
body[data-route="/products"] .products-card > .right {
  min-width: 0 !important;
  min-height: 240px;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body[data-route="/services"] .services-right img,
body[data-route="/products"] .products-card > .right img {
  display: block !important;
  width: auto !important;
  max-width: min(100%, 320px) !important;
  max-height: 260px !important;
  height: auto !important;
  object-fit: contain !important;
}

@media (max-width: 950px) {
  body[data-route="/services"] .services-card,
  body[data-route="/products"] .products-card {
    grid-template-columns: 1fr !important;
  }

  body[data-route="/services"] .services-left,
  body[data-route="/products"] .products-left { order: 1 !important; }
  body[data-route="/services"] .services-right,
  body[data-route="/products"] .products-card > .right { order: 2 !important; }
}

@media (max-width: 600px) {
  body[data-route="/services"] .services-card,
  body[data-route="/products"] .products-card {
    width: calc(100% - 8px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 18px !important;
    gap: 14px !important;
    border-radius: 18px !important;
  }

  body[data-route="/services"] .services-left,
  body[data-route="/products"] .products-left { padding: 0 !important; }

  body[data-route="/services"] .services-left h2,
  body[data-route="/products"] .products-left h2 {
    font-size: 20px !important;
    line-height: 1.3 !important;
    overflow-wrap: anywhere;
  }

  body[data-route="/services"] .services-left p,
  body[data-route="/products"] .products-left p {
    font-size: 13.5px !important;
    line-height: 1.7 !important;
  }

  body[data-route="/services"] .services-right,
  body[data-route="/products"] .products-card > .right {
    min-height: 170px !important;
    padding: 12px !important;
  }

  body[data-route="/services"] .services-right img,
  body[data-route="/products"] .products-card > .right img {
    max-width: 90% !important;
    max-height: 155px !important;
  }
}

/* ---------- Clients: 3 cards per row on desktop ---------- */
.clients-grid {
  width: min(1200px, calc(100% - 40px));
  margin: 28px auto 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  grid-auto-rows: max-content;
}

.clients-grid .clients-card {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  align-self: start !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: rgba(255,255,255,.97) !important;
}

.clients-grid .clients-card .left,
.clients-grid .clients-card .right {
  width: 100% !important;
  min-width: 0 !important;
  flex: none !important;
  padding: 18px !important;
  text-align: center !important;
}

.clients-grid .clients-card .right {
  order: -1 !important;
  min-height: 118px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(180deg, #f7fbff, #eef7ff);
}

.clients-grid .clients-card .right img {
  width: auto !important;
  max-width: 170px !important;
  max-height: 92px !important;
  object-fit: contain !important;
}

.clients-grid .clients-card .left h1 {
  font-size: 21px !important;
  line-height: 1.25 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  margin-bottom: 8px !important;
}

.clients-grid .clients-card .left p {
  margin: 0 !important;
  color: #667792 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  text-align: center !important;
  overflow-wrap: anywhere;
}

.clients-grid .button-container {
  display: flex !important;
  justify-content: center !important;
  margin-top: 14px !important;
}

.clients-grid .client-website-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 40px !important;
  padding: 9px 14px !important;
  border: 1px solid rgba(11,72,237,.22) !important;
  background: rgba(11,72,237,.055) !important;
  color: var(--mm-blue) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease !important;
}

.clients-grid .client-website-link:hover {
  transform: translateY(-2px) !important;
  background: var(--mm-blue) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(11,72,237,.18) !important;
}

.clients-grid .client-website-disabled {
  cursor: default !important;
  opacity: .72 !important;
}

.clients-grid .client-website-disabled:hover {
  transform: none !important;
  background: rgba(11,72,237,.055) !important;
  color: var(--mm-blue) !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  .clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .clients-grid {
    width: calc(100% - 24px) !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 40px !important;
  }

  .clients-grid .clients-card .left,
  .clients-grid .clients-card .right { padding: 15px !important; }
}

/* ---------- Shared motion polish ---------- */
.mm-motion-card {
  transition: opacity .55s ease var(--mm-delay), transform .55s cubic-bezier(.2,.7,.2,1) var(--mm-delay), box-shadow .35s ease !important;
}
.mm-motion-card:not(.mm-visible) {
  opacity: 0;
  transform: translateY(22px);
}
.mm-motion-card.mm-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .mm-motion-card,
  .mm-motion-card:not(.mm-visible) { transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* Admin navigation item */
.nav-links .admin-nav-item a {
  position: relative;
}
.nav-links .admin-nav-item .nav-link-icon { color: var(--mm-blue, #0b48ed); }
@media (max-width: 950px) {
  .nav-links .admin-nav-item a { color: #162b4e; }
}


/* Contact form is intentionally available only on contact.php. */
.contactForm:not(form[data-contact-page="true"]) { }
