html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  min-width: 290px;
}

body,
div,
section,
button {
  font-family: 'Montserrat';
}

/*Scroll Animation Style Section*/

/* On refersh animate */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(200px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Base state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(0) translateX(0);
  transition: transform 0.7s ease, opacity 0.7s ease;
  will-change: transform, opacity;
}

/* From left */
.animate-on-scroll.from-left {
  transform: translateX(-50px);
}

/* From right */
.animate-on-scroll.from-right {
  transform: translateX(50px);
}

/* From bottom */
.animate-on-scroll.from-bottom {
  transform: translateY(100px);
}

/* Active (visible) state */
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

@media (max-width: 1000px) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: none;
  }

  /* From left */
  .animate-on-scroll.from-left {
    transform: none;
  }

  /* From right */
  .animate-on-scroll.from-right {
    transform: none;
  }

  /* From bottom */
  .animate-on-scroll.from-bottom {
    transform: none;
  }

  /* Active (visible) state */
  .animate-on-scroll.visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 599px) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: none;
  }

  /* From left */
  .animate-on-scroll.from-left {
    transform: none;
  }

  /* From right */
  .animate-on-scroll.from-right {
    transform: none;
  }

  /* From bottom */
  .animate-on-scroll.from-bottom {
    transform: none;
  }

  /* Active (visible) state */
  .animate-on-scroll.visible {
    opacity: 1;
    transform: none;
  }
}

/*Scroll Animation Style Section*/


/*Loading Section*/

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}

.flower {
  position: fixed;
  width: 150px;
  height: 150px;
  margin-top: 100px;
}

/* petal containers (position only) */
.petal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
}

/* actual petal image (scales) */
.petal img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  transform: translate(-50%, -100%);
  animation: pulse 1s alternate infinite;
}

/* place petals around flower */
.petal1 {
  transform: translate(-50%, -50%) translateY(-60px);
}

.petal2 {
  transform: translate(50%, -50%) translateY(-60px);
}

.petal3 {
  transform: translate(-50%, 50%) translateY(-60px);
}

.petal4 {
  transform: translate(50%, 50%) translateY(-60px);
}

/* delays for sequential pulsing */
.petal1 img {
  animation-delay: 0s;
}

.petal2 img {
  animation-delay: 0.25s;
}

.petal3 img {
  animation-delay: 0.5s;
}

.petal4 img {
  animation-delay: 0.75s;
}

/* pulse animation */
@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -100%) scale(0.5);
  }

  50% {
    transform: translate(-50%, -100%) scale(1.2);
  }
}



/* Trail numbers */
.trail {
  position: fixed;
  font-size: 14px;
  font-weight: bold;
  pointer-events: none;
  opacity: 1;
  transform: translate(-50%, -50%);
  animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-20px);
  }
}


/*Mouse Effect On Section */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E64626;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease-out;
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cursor-dot.hovering-interactive {
  transform: translate(-50%, -50%) scale(1.5);
}

.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #E64626;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.cursor-area {
  height: 100vh;
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1000px) {

  .cursor-dot,
  .cursor-circle,
  .cursor-area {
    display: none;
  }
}

@media screen and (max-width: 599px) {

  .cursor-dot,
  .cursor-circle,
  .cursor-area {
    display: none;
  }
}

/*Mouse Effect On Section */
.ScrollToTop {
  margin: auto;
  max-width: 1400px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0 50px 0 0;
}

/* base */
#scrollToTop {
  position: fixed;
  bottom: 23%;
  right: 30px;
  border-radius: 50%;
  padding: 15px;
  background-color: white;
  color: black;
  border: none;
  cursor: pointer;
  z-index: 1000;
  mix-blend-mode: difference;
  display: flex;
  align-items: center;
  justify-content: center;

  /* composite transform via CSS variables so hover doesn't clobber translate */
  --y: 20px;
  /* slide offset when hidden */
  --s: 1;
  /* scale */
  transform: translateY(var(--y)) scale(var(--s));
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.45s cubic-bezier(.2, .8, .2, 1),
    transform 0.45s cubic-bezier(.2, .8, .2, 1),
    filter 0.35s ease-in-out;
}

/* visible state: slide up & show */
#scrollToTop.visible {
  --y: 0;
  --s: 1;
  opacity: 1;
  pointer-events: auto;
}

/* hover/tap scale - composes with translate because we only change --s */
#scrollToTop:hover,
#scrollToTop:active {
  --s: 1.08;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
}

/* svg icon sizing */
#scrollToTop svg {
  width: 15px;
  height: 15px;
}

#scrollToTop svg path {
  fill: black;
  transition: fill 0.3s ease;
}

/* desktop responsive tweak stays same but avoid re-declaring transform/transition */
@media (max-width: 1000px) {
  #scrollToTop {
    bottom: 11.2%;
  }
}

@media screen and (max-width: 599px) {
  #scrollToTop {
    mix-blend-mode: difference;
    bottom: 27%;
    right: 30px;
    padding: 15px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none
  }
}

/* ============Header Logo================ */
body {
  margin: 0;
  font-family: 'Montserrat';
  background-color: #0c0f14;
  color: white;


  /* disable text copy */
  -webkit-user-select: none;
  /* Safari, iOS */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Standard */
}

.navbar {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  background-color: #E7E6E6;
  padding: 10px 10px;
  color: black;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

/* Mobile view */
@media (max-width: 600px) {
  .logo-desktop {
    margin-left: 20px;
    max-height: 45px;
  }
}

/* ============Navbar================ */
.nav-links {
  display: flex;
  gap: 30px;
  background-color: transparent;
  /* padding: 20px 60px; */
  padding: 20px 0px;
  font-size: 17px;
  font-weight: 500;
  align-items: center;
}

.hover-buffer {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.dropdown-grid::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.dropdown {
  position: relative;
}

.nav-item {
  cursor: pointer;
  color: #767171;
  padding: 10px 5px;
  position: relative;
  font-family: 'Montserrat';
  font-weight: bold;
}

.nav-item.active {
  color: #e64626;
}

.mobile-nav a.active {
  color: #f55b16;
  font-weight: bold;
}

.nav-item::after {
  content: "▾";
  margin-left: 5px;
  font-size: 15px;
}

.nav-item:hover::after {
  content: "▴";
}

.gradientDiv {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(228.8deg,
      rgba(37, 46, 58, 0.86) 0%,
      rgba(26, 31, 37, 0.85) 50%,
      rgba(26, 31, 37, 0.85) 100%);

  z-index: -900;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown:hover .gradientDiv {
  opacity: 1;
  visibility: visible;
}

.dropdown-grid {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 20%;

  max-width: 1400px;
  margin: auto auto 20% auto;

  z-index: 1000;
  padding: 40px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-content: start;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown:hover .dropdown-grid {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-card {
  background-color: #1A1F25;
  padding: 20px;
  border-radius: 8px;
  color: white;
  display: flex;
  flex-direction: column;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.dropdown-card:hover {
  transform: translateY(-5px);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.icon_CSD {
  width: 65px;
  height: 35px;
  background-image: url(Resources/Custom_Software_developmenr.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_UIUX {
  width: 25px;
  height: 35px;
  background-image: url(Resources/UI_UX.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_MVP {
  width: 35px;
  height: 35px;
  background-image: url(Resources/MVP.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_integration {
  width: 30px;
  height: 35px;
  background-image: url(Resources/Integration.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.card-title h4 {
  font-size: 0.8rem;
  color: whitesmoke;
  margin: 0;
}

.dropdown-card p {
  flex-grow: 1;
  font-size: 0.75rem;
  color: gray;
}

.dropdown-card a {
  color: #f55b16;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
}

.dropdown-card a:hover {
  filter: brightness(1.5);
}

.nav-item:hover {
  color: #f55b16;
}

/* Product list style (multi-column) */
.product-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}

.column_Product {
  flex: 1;
  margin: 0 40px;
}

.list_Product {
  list-style: none;
  padding-left: 10px;
  margin: 0;
}

.list_Product li {
  position: relative;
  color: #ccc;
  margin-bottom: 18px;
  padding-left: 22px;
  font-size: 13px;
  font-weight: normal;
}

.list_Product li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 2px;
  color: #e64626;
  font-size: 10px;
  line-height: 1;
}

.subtext_Product {
  display: block;
  color: grey;
  font-size: 0.85em;
  margin-top: 3px;
}

.icon_AutoBOM {
  width: 65px;
  height: 35px;
  background-image: url(Resources/AutoBOM_LOGO.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_Mcc {
  width: 65px;
  height: 35px;
  background-image: url(Resources/MCCBOM.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_Mechatronics {
  width: 65px;
  height: 35px;
  background-image: url(Resources/Mech_ArmLogo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_Embedded {
  width: 65px;
  height: 35px;
  background-image: url(Resources/Embedded\ Solution.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Technology */
/* Technology list style (multi-column 2 items each) */
.technology-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.column_Tech {
  flex: 1;
  margin: 0 40px;
  cursor: pointer;
}

.column_Tech ul {
  list-style: none;
  padding-left: 10px;
  margin: 0;
}

.column_Tech li {
  position: relative;
  color: #ccc;
  margin-bottom: 18px;
  padding-left: 22px;
  font-size: 12px;
  font-weight: normal;
}

.column_Tech li:hover {
  color: #f55b16;
  font-weight: bold;
}

.column_Tech li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 2px;
  color: #e64626;
  font-size: 10px;
  line-height: 1;
}


.column_Product {
  flex: 1;
  margin: 0 20px;
}

.list_Product {
  list-style: none;
  padding-left: 10px;
}

.list_Product li {
  position: relative;
  color: #ccc;
  margin-bottom: 30px;
  padding-left: 25px;
  font-size: 12px;
  font-weight: normal;
}

.list_Product li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0;
  color: #E1402C;
  font-size: 10 px;
  line-height: 1;
}

.subtext_Product {
  color: grey;
  font-size: 0.9em;
}

.dropdown-grid_Techno {

  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(228.8deg,
      rgba(37, 46, 58, 0.86) 0%,
      rgba(26, 31, 37, 0.85) 50%,
      rgba(26, 31, 37, 0.85) 100%);

  z-index: 1000;
  padding: 40px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-content: start;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.icon_Helth {
  width: 65px;
  height: 35px;
  background-image: url(Resources/Health.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_Robo {
  width: 65px;
  height: 35px;
  background-image: url(Resources/Robotics.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_InduEng {
  width: 65px;
  height: 35px;
  background-image: url(Resources/IndustrialEngg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_SRL {
  width: 65px;
  height: 35px;
  background-image: url(Resources/Scientific_lab.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_AboutUs {
  width: 65px;
  height: 35px;
  background-image: url(Resources/AboutUS.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_VMV {
  width: 65px;
  height: 35px;
  background-image: url(Resources/VMV.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_Career {
  width: 65px;
  height: 35px;
  background-image: url(Resources/Carrer.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon_ContactUs {
  width: 65px;
  height: 35px;
  background-image: url(Resources/ContactUS_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============Contact Us================ */
.contact-btn {
  background-color: #e64626;
  height: 40px;
  width: 120px;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  margin-right: 55px;
  text-decoration: none;
  font-weight: bold;
  border-color: white;
  margin-top: 10px;
  cursor: pointer;
  font-family: 'Montserrat';
}

.contact-btn-Services {
  background-color: transparent;
  height: 40px;
  width: 120px;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  margin-right: 55px;
  text-decoration: none;
  font-weight: bold;
  border-color: white;
  margin-top: 10px;
  cursor: pointer;
  font-family: 'Montserrat';
}

/* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 10001;
}

.hamburger .bar {
  display: block;
  width: 28px;
  height: 4px;
  margin: 5px auto;
  background-color: #222;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active .bar {
  background: #f55b16;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* Mobile menu hidden by default */

body.menu-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #1e2127;
  position: absolute;
  top: 70px;
  right: 0;
  width: 220px;
  padding: 20px;
  z-index: 3000;
  max-height: calc(100vh - 45vh);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* higher than dropdowns (yours are at 1000) */
}

.mobile-nav a {
  color: white;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
  color: #f55b16;
  font-weight: bold;
  font-size: larger;
}

.mobile-nav.active {
  display: flex;
}

/* tablet breakpoint */
@media (max-width: 1000px) {

  .nav-links,
  .contact-btn,
  .contact-btn-Services {
    display: none;
  }

  .hamburger {
    display: block;
    margin-right: 20px;
  }

  .mobile-nav {
    /* width: 350px; */
    width: 70%;
  }
}

/* Mobile breakpoint */
@media (max-width: 599px) {

  .nav-links,
  .contact-btn,
  .contact-btn-Services {
    display: none;
  }

  .hamburger {
    display: block;
  }
}



/* ============Footer================ */
.details {
  margin: 0;
  height: 300px;
  background: linear-gradient(150deg, #1e2125 40%, #2c3441 100%);
  color: white;
  padding: 20px 20px;
  align-content: left;
  position: relative;
  z-index: 1;
}

.footer,
.footer * {
  cursor: none;
}

.details-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  align-self: center;
}

.details-column {
  flex: 1 1 0px;
  margin: 10px;
}

.details-column h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #d9d9d9;
}

.details-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 15px;
}

.details-column ul li {
  margin-bottom: 8px;
  font-size: 12px;
  color: #d9d9d9;
  list-style: disc;
}

.details-column ul li::marker {
  font-size: 1rem;
}

.details-column a li:hover {
  transform: translateX(15px);
  color: #f55b16;
  transition: all .45s ease;
  font-weight: 600;
}

.social-icons {
  margin-top: 100px;
  margin-left: -40px;
  display: flex;
  justify-content: start;
  gap: 20px;
  position: relative;
}

.social-icons img {
  height: 25px;
  width: 25px;
  cursor: pointer;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: brightness(1.5);
}

.details-container button {
  position: absolute;
  margin-top: 30px;
  margin-left: 0px;
  background-color: #e64626;
  height: 40px;
  width: 120px;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  margin-right: 55px;
  text-decoration: none;
  font-weight: bold;
  border-color: white;
  cursor: pointer;
  font-family: 'Montserrat';
}

.details-container button:hover {
  background-color: #F0642C;
}

#coming-soon-tooltip {
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 0);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 9999;
}

#coming-soon-tooltip.show {
  opacity: 1;
  transform: translate(-50%, 6px);
}

/*============Copy Right================*/
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0c0f14;
  height: 40px;
  position: relative;
}

.copyright img {
  width: 15px;
  height: 15px;
  margin-left: 70px;
}

.copyright p {
  position: absolute;
  margin-left: 90px;
  font-size: 12px;
  color: #AFABAB;
}

@media (max-width: 1000px) {
  .details {
    padding: 30px 20px;
    height: auto;
  }

  .details-column {
    /* flex: 1 1 250px; */
    flex: 1 1 auto;
    margin: 15px;
  }

  .details-column h3 {
    font-size: 20px;
  }

  .details-column ul li {
    font-size: 13px;
  }

  .details-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr)
  }

  .details-container button {
    position: relative;
    margin-top: 100px;
    float: right;
  }

  .social-icons {
    margin-top: 175px;
    justify-content: left;
    flex-wrap: wrap;
  }
}

@media (max-width: 599px) {
  .details-container {
    display: grid;
    flex-direction: column;
    align-items: center;
    grid-template-columns: repeat(1, 1fr)
  }

  .details-column {
    width: 100%;
    text-align: left;
  }

  .social-icons {
    margin-top: 105px;
    gap: 15px;
    margin-right: 40px;
    justify-content: right;
  }

  .details-container button {
    display: block;
    margin: 30px 65px 10px 35px;
    float: right;
  }

}

@media (max-width: 599px) {
  .details-column h3 {
    font-size: 16px;
  }

  .details-column ul li {
    font-size: 12.5px;
  }

  .social-icons img {
    height: 22px;
    width: 22px;
  }

  .copyright {
    flex-direction: row;
    height: auto;
    padding: 10px 0px;
    text-align: center;
  }

  .copyright img {
    margin: 0 auto;
  }

  .copyright p {
    position: relative;
    margin: 0px auto 0;
    font-size: 10.5px;
  }
}

/*============Index Section / Home Page================*/
.hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70px 60px;
  background-color: #0c0f14;
  height: 350px;
  z-index: 10;
  cursor: none;
  width: auto;
  margin: auto;
  max-width: 1400px;
}

#hero-particles-js {
  width: 90%;
  height: 100%;
  position: absolute;
  z-index: 1;
  margin: auto;
}

.hero-text {
  max-width: 40%;
  /* margin-top: 120px; */
  margin-top: -50px;
  align-self: center;
}

.hero-text h1 {
  position: absolute;
  color: #e64626;
  font-size: 36px;
  margin-left: 10px;
  /* margin-top: -105px; */
}

.hero-text p {
  position: absolute;
  color: #aaa;
  margin-left: 10px;
  margin-top: 45px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-left: 200px;
}

.robot-arm_And_Binary {
  position: relative;
  width: 840px;
  height: 350px;
  background-image: url(Resources/Robo-ARM_And_Binary.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: -20px 0 0 0;
}

@media (max-width: 1000px) {
  .hero {
    height: 250px;
    justify-content: flex-start;
  }

  #hero-particles-js {
    width: 92%;
  }

  .hero .hero-text {
    margin-top: 50px;
  }

  .hero-text h1 {
    position: relative;
    font-size: 28px;
    margin: 0 0 5px 0;
    text-align: left;
  }

  .hero-text p {
    position: relative;
    font-size: 14px;
    margin: 0 0 50px 0;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    position: absolute;
    margin-left: 250px;
  }

  .robot-arm_And_Binary {
    width: 500px;
    height: 250px;
    margin: auto;
  }
}

@media (max-width: 599px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px;
    height: auto;
    position: relative;
  }

  #hero-particles-js {
    top: 0%;
  }

  .hero .hero-text {
    max-width: 100%;
    margin-top: 0;
    position: relative;
  }

  .hero-text h1 {
    position: relative;
    font-size: 28px;
    text-align: left;
  }

  .hero-text p {
    position: relative;
    font-size: 16px;
    margin: 0 0 20px 0;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    width: 100%;
    position: relative;
  }

  .robot-arm_And_Binary {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 200px;
    margin: auto;
  }
}

/* Intoduction Section */
.sec2_FontColour {
  color: #e64626;
  font-weight: bold;
}

.introduction {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 60px;
  background-color: #D9D9D9;
  background-image: url(Resources/footerBackground.svg);
  height: auto;
  margin-top: -50px auto;
}

.fontColor {
  color: #5F5F60;
}

.intro-para-1 {
  color: #5F5F60;
  margin-left: 100px;
  margin-bottom: 5px;
  /* margin-top: -10px; */
  font-size: 14px;
  font-family: 'Montserrat';
}

.intro-para-1::marker {
  color: #5F5F60;
}

.list-bullet-color {
  margin-right: 10px;
}

.intro-text-1 {
  width: 800px;
  text-align: justify;
  color: #5F5F60;
}


@media (max-width: 1000px) {
  .intro-text-1 {
    width: 90%;
  }

  .intro-text-1 h3 {
    font-size: 18px;
  }

  .intro-para-1 {
    margin-left: 40px;
    font-size: 14px;
    font-family: 'Montserrat';
  }
}

@media (max-width: 599px) {
  .introduction {
    padding: 40px 30px;
    background-size: cover;
    background-position: center;
  }

  .intro-text-1 {
    width: 100%;
    text-align: left;
  }

  /* .fontColor,
  .sec2_FontColour {
    font-size: 20px;
  } */

  .intro-para-1 {
    margin-left: 0;
    font-size: 13px;
    line-height: 1.6;
  }
}

@media (max-width: 599px) {
  .introduction {
    padding: 20px 15px;
  }

  /* .fontColor,
  .sec2_FontColour {
    font-size: 18px;
  } */

  .intro-para-1 {
    font-size: 12.5px;
    margin-left: 25px;
  }
}

.Less-Smart-Solutions {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 60px;
  background-color: #D9D9D9;
  background-image: url(Resources/footerBackground.svg);
  height: auto;
}

.Smart_Solutions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: #fff;
  /* change if needed */
}

.Smart_Solutions-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/*============Services Page================*/
/*============Servics Section 1st================*/
.promo-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #1A1F25; */
  color: white;
  padding: 160px 0px 40px 0px;
  font-family: 'Montserrat';
  flex-wrap: wrap;
  scroll-margin-top: 80px;
  max-width: 1400px;
  margin: auto;
}

.promo-content {
  flex: 1 1 500px;
  margin-top: -180px;
  margin-left: 100px;
  max-width: 650px;
  animation: fadeInLeft 1s ease-in-out;
}

.promo-content h1 {
  font-size: 28px;
  margin-bottom: 21px;
  color: #BFBFBF;
  /* margin-left: -150px; */
  text-align: left;
  font-family: 'Montserrat';
}

.promo-content p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #bfbfbf;
  font-family: 'Montserrat';
}

.contact-btn:hover {
  background-color: #F0642C;
}

.contact-btn-Services:hover {
  background-color: #e64626;
}

.promo-visual {
  flex: 1 1 400px;
  text-align: center;
  /* animation: fadeInRight 1s ease-in-out; */
}

.promo-visual img {
  max-width: 18cm;
  height: 12cm;
  margin-left: -600px;
  margin-top: -150px;
}

/* Tablet (up to 1024px) */
@media (max-width: 1000px) {
  .promo-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 40px 40px 0px 40px;
    gap: 20px;
    /* margin-bottom: 70px; */
    margin-bottom: 0px;
  }

  .promo-content {
    flex: 1 1 60%;
    max-width: 60%;
    margin-top: 0px;
    margin-left: 10;
  }

  .promo-content p {
    font-size: 14px;
  }

  .promo-visual {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
  }

  .promo-visual img {
    max-width: 190%;
    height: auto;
    margin-bottom: 5px;
    margin-top: 0;
    margin-right: 70px;
  }
}

/* Mobile (up to 600px) */
@media (max-width: 599px) {
  .promo-section {
    gap: 10px;
    padding: 20px 20px;
    /* margin-bottom: 70px; */
    margin-bottom: 0px;
  }

  .promo-content {
    max-width: 50%;
    margin-top: 20px;
    margin-left: 90px;
  }

  .promo-content h1 {
    font-size: 18px;
    text-align: left;
    margin-left: -90px;
  }

  .promo-content p {
    font-size: 12.5px;
    margin-left: -90px;
  }

  .contact-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .promo-visual {
    flex: 1 1 50%;
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .promo-visual img {
    max-width: 300%;
    margin-bottom: 20px;
    margin-top: 15%;
    margin-right: 0;
  }
}

/*============Services Section 2nd================*/
.roadmap-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* background-color: #1A1F25; */
  color: white;
  padding: 20px 80px;
  font-family: 'Montserrat';
  gap: 50px;
  margin-top: -100px;
  max-width: 1400px;
  margin: auto;
}

.roadmap-left,
.roadmap-right {
  flex: 1 1 400px;
  /* height: 8.5cm; */
  width: 100%;
  background-color: #1A1F25;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.roadmap-left:hover,
.roadmap-right:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.roadmap-left h2,
.roadmap-right h2 {
  color: #BFBFBF;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
  font-style: italic;
  /* font-weight: normal; */
  font-weight: bold;
  font-family: 'Montserrat';
}

.roadmap-left li,
.roadmap-right li {
  position: relative;
  padding-left: 20px;
  text-indent: -20px;
  /* text-align: justify; */
  margin-bottom: 12px;
  font-size: 14px;
  color: #BFBFBF;
  font-family: 'Montserrat';
}

.sub-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 10px;
  margin-left: 10px;
  font-size: 15px;
  color: #BFBFBF;
  font-family: 'Montserrat';
}

.sub-list li {
  list-style: circle;
}

.sub-list li::marker {
  color: #BFBFBF;
  /* bullet color */
}

.roadmap-left li,
.roadmap-right li {
  font-size: 12.5px;
}

.roadmap-left li::marker {
  color: #BFBFBF;
  /* bullet color */

}

.roadmap-right li::marker {
  color: #BFBFBF;
  /* bullet color */

}

.highlight_1 {
  color: #e64626;
}

.content-section_1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.text-section_1 {
  flex: 1;
  margin-left: 50px;
  min-width: 250px;
  padding-left: 10px;
}

.heading-orange_1 {
  font-size: 28px;
  color: #e64626;
  text-align: left;
  font-family: 'Montserrat';
}

.text-section_1 h1 {
  width: 500px;
}

.heading-light_1 {
  font-size: 28px;
  color: #b0b0b0;
  text-align: left;
  margin-top: -20px;
  font-family: 'Montserrat';
}

.image-section_1 {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}

.image-section_1 img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  /* margin-right: 50px; */
  opacity: 0.7;

}

@media (max-width: 1000px) {
  .container_00 {
    padding: 40px;
  }

  .heading-orange_1,
  .heading-light_1 {
    font-size: 28px;
  }

  .roadmap-left li,
  .roadmap-right li {
    font-size: 14px;
  }

  .text-section_1 {
    margin-left: 20px;
    margin-top: 50px;
  }

  .image-section_1 img {
    max-height: 300px;
    margin-right: 20px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 599px) {
  .container_00 {
    padding: 20px;
  }

  .content-section_1 {
    flex-direction: column;
    /* stack vertically */
    text-align: center;
    position: relative;
  }

  .text-section_1 {
    margin-left: 0;
    padding-left: 0;
    position: relative;
    align-self: anchor-center;
    justify-self: anchor-center;
  }

  .text-section_1 .heading-orange_1,
  .heading-light_1 {
    text-align: center;
    font-size: 18px;
    margin-top: 0;
  }

  .image-section_1 {
    display: none;
  }
}

/* Small Phones (≤480px) */
@media (max-width: 599px) {
  .text-section_1 .heading-orange_1 {
    font-size: 18px;
  }

  .text-section_1 .heading-light_1 {
    font-size: 18px;
    margin-top: -15px;
  }

  .image-section_1 {
    display: none;
  }
}

@media (max-width: 1000px) {
  .roadmap-section {
    padding: 40px 40px;
    gap: 40px;
  }

  .roadmap-left,
  .roadmap-right {
    flex: 1 1 100%;
    height: auto;
    max-width: 90%;
    margin: 0 auto;
  }

  .roadmap-left h2,
  .roadmap-right h2 {
    font-size: 18px;
  }

  .roadmap-left p,
  .roadmap-right p,
  .sub-list {
    font-size: 14px;
    padding-left: 15px;
  }

  .sub-list {
    padding-left: 20px;
  }

  .text-section_1 h1 {
    width: 300px;
    font-size: 28px;
  }
}

@media (max-width: 599px) {
  .roadmap-section {
    padding: 30px 20px;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .roadmap-left,
  .roadmap-right {
    padding: 25px;
    border-radius: 16px;
    max-width: 80%;
  }

  .roadmap-left h2,
  .roadmap-right h2 {
    font-size: 16px;
  }

  .roadmap-left p,
  .roadmap-right p,
  .sub-list {
    font-size: 13.5px;
  }

  .sub-list {
    padding-left: 25px;
  }
}

@media (max-width: 599px) {
  .roadmap-section {
    padding: 20px 10px;
    gap: 30px;
  }

  .roadmap-left h2,
  .roadmap-right h2 {
    font-size: 14px;
  }

  .roadmap-left p,
  .roadmap-right p,
  .sub-list {
    font-size: 12.5px;
    padding-left: 10px;
  }

  .sub-list {
    padding-left: 18px;
  }
}

/*============Services Section 3rd================*/
.services-section {
  /* background-color: #1A1F25; */
  padding: 50px 80px;
  margin-top: -30px;
  max-width: 1400px;
  margin: -30px auto auto auto;
}

.services-grid {
  display: flex;
  gap: 50px;
  height: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card,
.service-card1 {
  flex: 1 1 400px;
  background-color: #1A1F25;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.service-card:hover,
.service-card1:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}


.service-card1 {
  margin-top: 50px;
}

.service-card h3,
.service-card1 h3 {
  color: #BFBFBF;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
  font-style: italic;
  /* font-weight: normal; */
  font-weight: bold;
  font-family: 'Montserrat';
}

.service-card p,
.service-card1 p {
  padding-left: 20px;
  font-size: 14px;
  color: #BFBFBF;
  margin-bottom: 15px;
  font-family: 'Montserrat';
  /* text-align: justify; */
}

.services-section h2 {
  color: #e64626;
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Montserrat';
}

.sub-list1 {
  list-style: disc;
  padding-left: 30px;
  margin-top: 10px;
  font-size: 14px;
  color: #bfbfbf;
  font-family: 'Montserrat';
}

.sub-list1 li::marker {
  color: #BFBFBF;
}

.sub-list1 li {
  margin-top: 10px;
  font-size: 14px;
  color: #BFBFBF;
  font-family: 'Montserrat';
}

/* 🌐 Responsive Enhancements */
@media (max-width: 1000px) {
  .services-section {
    padding: 40px 40px;
  }

  .services-grid {
    gap: 30px;
    height: auto;
  }

  .service-card,
  .service-card1 {
    flex: 1 1 100%;
    max-width: 90%;
    margin: 0 auto;
  }

  .service-card1 {
    margin-top: 40px;
  }

  .service-card h3,
  .service-card1 h3 {
    font-size: 18px;
  }

  .services-section h2 {
    font-size: 28px;
  }

  .service-card p,
  .service-card1 p {
    font-size: 14px;
  }
}

@media (max-width: 599px) {
  .services-section {
    padding: 30px 20px;
  }

  .services-section h2 {
    font-size: 18px;
  }

  .service-card,
  .service-card1 {
    max-width: 80%;
  }

  .service-card h3,
  .service-card1 h3 {
    font-size: 14px;
  }

  .service-card p,
  .service-card1 p,
  .sub-list1 {
    font-size: 12.5px;
    padding-left: 15px;
  }

  .sub-list1 {
    padding-left: 25px;
  }

  .sub-list1 li {
    font-size: 12.5px;
  }
}

@media (max-width: 599px) {
  .services-section {
    padding: 20px 10px;
  }

  .services-section h2 {
    font-size: 18px;
    font-family: 'Montserrat'
  }

  .service-card h3,
  .service-card1 h3 {
    font-size: 14px;
  }

  .service-card p,
  .service-card1 p,
  .sub-list1 {
    font-size: 12.5px;
    padding-left: 10px;
  }

  .sub-list1 {
    padding-left: 20px;
  }
}


/*============Services Section 4th================*/
.tech-stack-section {
  height: auto;
  /* background-color:#1A1F25; */
  padding-top: 1;
  padding-bottom: 60px;
}

.SoftwareDevlop {
  font-size: 28px;
  color: #e64626;
  /* padding: 20px; */
  text-align: center;
  font-family: 'Montserrat';
}

.teckStack {
  /* color: #e64626; */
  color: #D9D9D9;
}

.tech-stack_container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  text-align: center;
}

.tech-stack_container img {
  max-width: 85%;
  height: auto;
}


/* Tech-Stack for mobile view */

.tech-stack-section-mobile {
  display: none;
}

.SoftwareDevlop_Mobile {
  color: #e64626;
  text-align: center;
}

@media (max-width: 1000px) {

  .SoftwareDevlop {
    font-size: 28px;
    margin: 0;
    padding: 0 0 20px 0;
  }

  .tech-stack-section {
    padding: 0px 40px 20px 40px;
  }

  .tech-stack-section-mobile {
    display: none;
  }

  .tech-stack_container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: auto;
    text-align: center;
  }

  .tech-stack_container img {
    max-width: 100%;
  }
}

@media (max-width: 599px) {
  :root {
    --scroll-direction: reverse;
  }

  .tech-stack-section {
    display: none;
  }

  .SoftwareDevlop_Mobile {
    font-size: 18px;
  }

  .tech-stack-section-mobile {
    margin: 0 20px 20px 20px;
    display: block;
  }

  .tech-stack-section-mobile h2 {
    font-size: 18px;
  }

  .slider {
    overflow: hidden;
    position: relative;
    width: auto;
  }

  .slider-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: scroll 40s linear infinite;
    animation-direction: var(--scroll-direction);
  }

  .slider-track .skill-card {
    background: #D0CECE;
    border-radius: 12px;
    padding: 15px;
    margin: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
  }

  .skill-header {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
    text-align: left;
    font-family: 'Montserrat';
  }

  .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .logos img {
    height: 40px;
    width: 50px;
    transition: transform 0.2s ease-in-out;
  }

  .logos img:hover {
    transform: scale(1.1);
  }

  /* Keyframes for smooth infinite scroll */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

/*============Services Section 5th================*/
.uiux_s2 {
  background: #0c0f14;
  min-height: auto;
  max-width: 1400px;
  margin: auto;
  /* margin-bottom: 20px; */
}

.grid-section {
  /* margin-top: -20px; */
  background-color: #2E373C;
  background-image:
    linear-gradient(#4C5459 1px, transparent 1px),
    linear-gradient(to right, #4C5459 1px, transparent 1px);
  background-size: 14px 14px;
  padding: 80px 60px;
  /* min-height: calc(100vh - 60px); */
  box-sizing: border-box;
}

.grid-section .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.left-heading {
  /* margin-top: -118px; */
  align-self: center;
}

.left-heading h1 {
  font-size: 28px;
  margin: 0;
  color: #D9D9D9;
  font-family: 'Montserrat';
}

.highlight {
  color: #e64626;
}

.right-image img {
  height: 350px;
  max-width: 100%;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

/* Tablet (up to 1024px) */
@media (max-width: 1000px) {
  .grid-section {
    padding: 60px 40px;
    min-height: auto;
  }

  .uiux_s2 {
    margin-top: 40px;
  }

  .content {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  .left-heading {
    margin-top: 0;
    flex: 1 1 50%;
    text-align: left;
  }

  .left-heading h1 {
    font-size: 28px;
  }

  .right-image {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
  }

  .right-image img {
    height: 280px;
  }
}

/* Mobile (up to 600px) */
@media (max-width: 600px) {
  .grid-section {
    padding: 40px 20px;
  }

  .uiux_s2 {
    height: auto;
  }

  .content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .left-heading {
    margin-top: 0;
  }

  .left-heading h1 {
    font-size: 18px;
  }

  .right-image img {
    height: auto;
    width: 80%;
    max-width: 300px;
  }
}


/*========================Services Section UI/UX Key Benifits==============================*/
.uiux_s3 {
  /* background-color: #1A1F25; */
  padding: 0px 80px 50px 80px;
  margin-top: -30px;
  max-width: 1400px;
  margin: -20px auto auto auto;
}

.services_uiux_B-grid {
  display: flex;
  gap: 50px;
  height: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.service_uiux_B-card,
.service_uiux_B-card1 {
  flex: 1 1 400px;
  background-color: #1A1F25;
  padding: 30px;
  border-radius: 16px;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.service_uiux_B-card:hover,
.service_uiux_B-card1:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.service_uiux_B-card h3,
.service_uiux_B-card1 h3 {
  color: #BFBFBF;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
  font-style: italic;
  /* font-weight: normal; */
  font-weight: bold;
}

.service_uiux_B-card p,
.service_uiux_B-card1 p {
  padding-left: 20px;
  font-size: 15px;
  color: #BFBFBF;
  margin-bottom: 15px;
  font-family: 'Montserrat';
  text-align: justify;
}

.uiux_s3 h2 {
  color: #BFBFBF;
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}

.uiux_s3 h2 span {
  color: #e64626;
}

@media (max-width: 1000px) {
  .uiux_s3 {
    padding: 40px 40px;
  }

  .uiux_s3 h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .services_uiux_B-grid {
    gap: 30px;
    height: auto;
  }

  .service_uiux_B-card,
  .service_uiux_B-card1 {
    flex: 1 1 100%;
    margin: 0 auto;
  }

  .service_uiux_B-card h3,
  .service_uiux_B-card1 h3 {
    font-size: 18px;
  }

  .service_uiux_B-card p,
  .service_uiux_B-card1 p {
    font-size: 14px;
  }
}

@media (max-width: 599px) {
  .uiux_s3 {
    padding: 30px 20px;
  }

  .uiux_s3 h2 {
    font-size: 18px;
  }

  .service_uiux_B-card h3,
  .service_uiux_B-card1 h3 {
    font-size: 18px;
  }

  .service_uiux_B-card p,
  .service_uiux_B-card1 p {
    font-size: 12.5px;
    padding-left: 15px;
  }
}

@media (max-width: 599px) {
  .uiux_s3 {
    padding: 60px 10px 20px 10px;
  }

  .uiux_s3 h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .service_uiux_B-card,
  .service_uiux_B-card1 {
    flex: 1 1 100%;
    max-width: 80%;
    margin: 0 auto;
  }

  .service_uiux_B-card h3,
  .service_uiux_B-card1 h3 {
    font-size: 14px;
  }

  .service_uiux_B-card p,
  .service_uiux_B-card1 p {
    font-size: 12.5px;
    padding-left: 10px;
  }
}



/* ======================= Services Section 5th UI/UX Design Process (Sub-Values) DP ============================ */
.backButton1,
.nextButton1 {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  z-index: 10;
}

.backButton1 {
  left: 1%;
}

.nextButton1 {
  right: 1%;
}

.DesignProcess {
  position: relative;
  /* padding-top: 20px; */
  max-width: 1400px;
  margin: auto;
}

.DesignProcess-section {
  /* background-color: #1A1F25; */
  padding: 10px 50px;
  font-family: 'Montserrat';
  color: white;
  /* height: 380px; */
  height: auto;
}

.DesignProcess-title {
  font-size: 28px;
  color: #d9d9d9;
  text-align: left;
  margin-left: 10px;
}

/* ============================== Empethesize ============================ */

.DesignProcess-card {
  padding: 50px 150px;
}

.DesignProcess-header {
  display: flex;
  align-items: center;
}

.DesignProcess-header img {
  width: 40px;
  height: 40px;
}

.DesignProcess-content {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.DesignProcess-content h3 {
  color: #bfbfbf;
  font-size: 13px;
  margin-top: 6px;
  font-family: 'Montserrat';
}

.DesignProcess-details {
  flex: 1;
  margin-top: -45px;
}

.DesignProcess-description {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: #bfbfbf;
  font-family: 'Montserrat';
}

.DesignProcess-list {
  list-style: disc;
  font-size: 12px;
  color: #bfbfbf;
  margin: 0;
  padding-left: 20px;
  font-family: 'Montserrat';
}

.DesignProcess-list li::marker {
  color: #e64626;
  /* bullet color */
}


/* ============================== Define ============================ */
.DesignProcess-card1 {
  padding: 50px 150px;
}

.DesignProcess-header1 {
  display: flex;
  align-items: center;
}

.DesignProcess-header1 img {
  width: auto;
  height: 40px;
}

.DesignProcess-content1 {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.DesignProcess-content1 h3 {
  color: #BFBFBF;
  font-size: 13px;
  margin-top: 6px;
}

.DesignProcess-description1 {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: #bfbfbf;
}

.DesignProcess-list1 {
  list-style: disc;
  font-size: 12px;
  color: #bfbfbf;
  margin: 0;
  padding-left: 20px;
}

.DesignProcess-list1 li::marker {
  color: #e64626;
  /* bullet color */
}

/* ================================ Ideate ===================================== */
.DesignProcess-card2 {
  padding: 50px 150px;
}

.DesignProcess-header2 {
  display: flex;
  align-items: center;
}

.DesignProcess-header2 img {
  width: auto;
  height: 40px;
}

.DesignProcess-content2 h3 {
  color: #bfbfbf;
  font-size: 13px;
  /* margin-left: 5px; */
  margin-top: 6px;
}

.DesignProcess-content2 {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.DesignProcess-description2 {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: #bfbfbf;
}

.DesignProcess-list2 {
  list-style: disc;
  font-size: 12px;
  color: #bfbfbf;
  margin: 0;
  padding-left: 20px;
}

.DesignProcess-list2 li::marker {
  color: #e64626;
  /* bullet color */
}

/* ================================ Prototype ===================================== */
.DesignProcess-card3 {
  padding: 50px 150px;
}

.DesignProcess-header3 {
  display: flex;
  align-items: center;
}

.DesignProcess-header3 img {
  width: auto;
  height: 40px;
}

.DesignProcess-content3 {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.DesignProcess-content3 h3 {
  color: #bfbfbf;
  font-size: 13px;
  /* margin-left: -10px; */
  margin-top: 6px;
}

.DesignProcess-description3 {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: #bfbfbf;
}

.DesignProcess-list3 {
  list-style: disc;
  font-size: 12px;
  color: #bfbfbf;
  margin: 0;
  padding-left: 20px;
}

.DesignProcess-list3 li::marker {
  color: #e64626;
  /* bullet color */
}

/* ================================ Test ===================================== */
.DesignProcess-card4 {
  padding: 50px 150px;
}

.DesignProcess-header4 {
  display: flex;
  align-items: center;
}

.DesignProcess-header4 img {
  width: auto;
  height: 40px;
}

.DesignProcess-content4 {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.DesignProcess-description4 {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: #bfbfbf;
}

.DesignProcess-content4 h3 {
  color: #bfbfbf;
  font-size: 13px;
  /* margin-left: 12px; */
  margin-top: 6px;
}

.DesignProcess-list4 {
  list-style: disc;
  font-size: 12px;
  color: #bfbfbf;
  margin: 0;
  padding-left: 20px;
}

.DesignProcess-list4 li::marker {
  color: #e64626;
  /* bullet color */
}

/* ================= 📱 Responsive Styles ================= */

@media (max-width: 992px) {

  /* .values-section {
    padding: 40px 40px;
    height: auto;
  } */
  .DesignProcess-section {
    height: 300px;
  }

  .DesignProcess-details {
    margin-top: -20px;
  }

  .DesignProcess-card,
  .DesignProcess-card1,
  .DesignProcess-card2,
  .DesignProcess-card3,
  .DesignProcess-card4 {
    padding: 10px 30px;
  }

  .DesignProcess-content,
  .DesignProcess-content1,
  .DesignProcess-content2,
  .DesignProcess-content3,
  .DesignProcess-content4 {
    flex-direction: column;
    gap: 20px;
  }

  .DesignProcess-content h3,
  .DesignProcess-content1 h3,
  .DesignProcess-content2 h3,
  .DesignProcess-content3 h3,
  .DesignProcess-content4 h3 {
    font-size: 16px;
    text-align: center;
    margin-left: 0;
  }

  .DesignProcess-description,
  .DesignProcess-description1,
  .DesignProcess-description2,
  .DesignProcess-description3,
  .DesignProcess-description4,
  .DesignProcess-description5 {
    font-size: 14.5px;
  }

  .DesignProcess-header img,
  .DesignProcess-header1 img,
  .DesignProcess-header2 img,
  .DesignProcess-header3 img,
  .DesignProcess-header4 img {
    width: auto;
    height: 40px;
  }

  .DesignProcess-list,
  .DesignProcess-list1,
  .DesignProcess-list2,
  .DesignProcess-list3,
  .DesignProcess-list4 {
    font-size: 14px;
  }

  .backButton1,
  .nextButton1 {
    top: 210px;
  }
}

@media (max-width: 600px) {
  .DesignProcess-section {
    padding: 10px 20px;
    height: 260px;
  }

  .DesignProcess-details {
    margin-top: -20px;
  }

  .DesignProcess-title,
  .DesignProcess-title1,
  .DesignProcess-title2,
  .DesignProcess-title3,
  .DesignProcess-title4 {
    font-size: 18px;
    text-align: start;
  }

  .DesignProcess-content h3,
  .DesignProcess-content1 h3,
  .DesignProcess-content2 h3,
  .DesignProcess-content3 h3,
  .DesignProcess-content4 h3 {
    font-size: 14px;
    text-align: center;
    margin-left: 0;
  }

  .DesignProcess-description,
  .DesignProcess-description1,
  .DesignProcess-description2,
  .DesignProcess-description3,
  .DesignProcess-description4,
  .DesignProcess-description5 {
    font-size: 14px;
    text-align: justify;
  }

  .DesignProcess-list,
  .DesignProcess-list1,
  .DesignProcess-list2,
  .DesignProcess-list3,
  .DesignProcess-list4 {
    font-size: 12.5px;
  }

  .backButton1,
  .nextButton1 {
    /* top: 50%; */
    top: 190px;
    bottom: auto;
    transform: translateY(-50%);
    position: absolute;
    font-size: 28px;
    padding: 10px;
    color: #e64626;
    background: transparent;
    border: none;
    z-index: 10;
  }

  .backButton1 {
    left: 1%;
  }

  .nextButton1 {
    right: 1%;
  }
}

/*============Services Section 6th================*/

.shi_S3 {
  background: #0c0f14;
  padding-top: 20px;
  height: auto;
  scroll-margin-top: 70px;

  max-width: 1400px;
  margin: auto;
}

/* .breadcrumb_S3 {
  color: #BFBFBF;
  padding: 20px;
  font-size: 16px;
} */

/* .breadcrumb_S3 span {
  color: #E57200;

} */

.grid-section_S3 {
  background-color: #2E373C;
  background-image:
    linear-gradient(#4C5459 1px, transparent 1px),
    linear-gradient(to right, #4C5459 1px, transparent 1px);
  background-size: 14px 14px;
  padding: 100px 40px;
  /* min-height: calc(100vh - 60px); */
  box-sizing: border-box;
}

.integration-layout_S3 {
  /* margin-top: 50px; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.left-box_S3 {
  /* background-color: #1a1f25; */
  background-color: transparent;
  height: 120px;
  width: 370px;

}

.left-box_S3 h1 {
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.3;
  margin: 0;
}

.orange_S3 {
  color: #e64626;
}

.gray_S3 {
  color: #BFBFBF;
}

.right-image_S3 img {
  margin-right: 20px;
  /* height: 270px; */
  height: 300px;

  /* width: 600px; */
  /* filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.6)); */
}


/* Responsive Styles */
@media (max-width: 1000px) {
  .shi_S3 {
    padding: 40px 0px 0px 0px;
    height: auto;
  }

  .integration-layout_S3 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -10px;
    gap: 0;
  }

  .grid-section_S3 {
    padding: 20px;
  }

  .left-box_S3 {
    width: 100%;
    max-width: 500px;
  }

  .right-image_S3 img {
    width: 100%;
    max-width: 600px;
    margin-top: -30px;
  }

  .left-box_S3 h1 {
    font-size: 28px;
    padding: 5%;
  }
}

@media (max-width: 599px) {
  .shi_S3 {
    max-height: 300px;
    padding: 20px 0px;
  }

  .integration-layout_S3 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  .grid-section_S3 {
    /* padding: 40px 20px; */
    padding: 20px 20px;
  }

  /* .breadcrumb_S3 {
    font-size: 14px;
    padding: 15px;
  } */

  .left-box_S3 h1 {
    font-size: 18px;
  }

  .right-image_S3 {
    margin-top: 20px;
  }
}

@media (max-width: 599px) {
  .integration-layout_S3 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 5%;
  }

  .left-box_S3 h1 {
    font-size: 18px;
    padding: 0%;
  }

  .right-image_S3 img {
    height: auto;
    margin-top: -130px;
  }

  /* .breadcrumb_S3 {
    font-size: 13px;
    padding: 10px;
  } */
}

/* ========================= MVP Development ==============*/

.MVP_layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 80px;
}

.left-box_MVP {
  flex: 1 1 50%;
  /* margin-left: -220px; */
}

.left-box_MVP h1 {
  font-size: 34px;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}

.right-image_mvpdev {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.right-image_mvpdev img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


.MVP_Section {
  background: #2E373C;
  background-image: linear-gradient(#4C5459 1px, transparent 1px),
    linear-gradient(to right, #4C5459 1px, transparent 1px);
  background-size: 14px 14px;
  min-height: auto;
  margin-bottom: 20px;
  max-width: 1400px;
  margin: auto auto 20px auto;
}

.orange_MVP {
  color: #e64626;
}

.gray_MVP {
  color: #BFBFBF;
}

.mvp_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  min-height: 14cm;
  padding: 20px 80px;
  /* background-color: #1A1F25; */
  margin-top: -20px;
  font-family: 'Montserrat';
  color: white;

  max-width: 1400px;
  margin: -20px auto auto auto;
}

/*mvp Example*/

.container_example {
  padding: 30px 80px;
  /* background-color: #1A1F25; */
  max-width: 1400px;
  margin: auto;
}

.highlight_example {
  color: #e64626;
}

.title_example {
  text-align: center;
  font-size: 28px;
  margin: 20px 0;
}

.orange_example {
  color: #e64626;
}

.light_example {
  color: #bfbfbf;
}

.content-section_example {
  display: flex;
  justify-content: center;
  padding: 20px;
  background-color: #1A1F25;
  border-radius: 10px;
  gap: 40px;
  flex-wrap: wrap;

  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.content-section_example:hover {
  transform: scale(1.02);
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.image-section_example img {
  max-width: 600px;
  border-radius: 10px;
  object-fit: cover;
  margin-top: 20px;
  margin-right: 20px;
}

/* .text-section_example {
  max-width: 400px;
} */

.description_example {
  color: #bfbfbf;
  font-size: 15px;
  /* line-height: 1.6; */
  margin-bottom: 20px;
  font-family: 'Montserrat';
}

.applications_example {
  padding-left: 20px;
}

.applications_example .apps-title_example {
  /* text-decoration: underline; */
  color: #bfbfbf;
  font-size: 12px;
  font-style: italic;
  margin-bottom: 10px;
}

.apps-list_example {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* two equal columns */
  list-style: disc;
  padding-left: 20px;
  column-gap: 40px;
  /* space between columns */
}

.apps-list_example li {
  font-size: 12px;
  color: #bfbfbf;
  list-style-position: inside;
}

.apps-list_example li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.apps-list_example li:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.apps-list_example li:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}

.apps-list_example li:nth-child(4) {
  grid-column: 2;
  grid-row: 1;
}

.apps-list_example li:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.apps-list_example li:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}

@media (max-width: 1024px) {}

/* Large Tablets */
@media (max-width: 1000px) {
  .container_example {
    padding: 20px 40px;
  }

  /* .MVP_Section {
    background: #2E373C;
    background-image: linear-gradient(#4C5459 1px, transparent 1px),
      linear-gradient(to right, #4C5459 1px, transparent 1px);
    background-size: 14px 14px;
    min-height: 30%;
    margin-bottom: 20px;
  } */

  .title_example {
    font-size: 24px;
  }

  .image-section_example img {
    max-width: 500px;
  }

  .description_example {
    font-size: 14px;
  }

  .text-section_example {
    max-width: fit-content;
  }

  .applications_example .apps-title_example {
    font-size: 14px;
    font-weight: normal;
  }

  .MVP_layout {
    padding: 0;
  }

  .apps-list_example li {
    font-size: 14px;
  }
}

/* Tablets - max width 786px */
@media (max-width: 599px) {
  .container_example {
    padding: 0px 20px 20px 20px;
  }

  .title_example {
    font-size: 14px;
  }

  .content-section_example {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .MVP_Section {
    align-content: center;
    height: 150px;
  }

  .MVP_layout {
    padding: 40px 0px;
  }

  .image-section_example img {
    max-width: 100%;
  }

  .text-section_example {
    max-width: 100%;
    text-align: start;
  }

  .applications_example {
    padding-left: 0;
  }

  .apps-list_example {
    padding-left: 0;
  }

  .applications_example .apps-title_example {
    font-size: 12.5px;
    font-weight: normal;
  }
}

/* Mobile - max width 600px */
@media (max-width: 600px) {
  .title_example {
    font-size: 14px;
  }

  .description_example {
    font-size: 12.5px;
  }

  .apps-list_example li {
    font-size: 12.5px;
  }

  .content-section_example {
    padding: 15px;
  }

  .image-section_example img {
    border-radius: 8px;
  }
}

/*mvp Example*/

.mvp_card_left,
.mvp_card_right {
  flex: 0 1 calc(45% - 20px);
  /* Two cards per row with gap */
  min-height: 12cm;
  box-sizing: border-box;
  background-color: #1A1F25;
  padding: 40px;
  margin-top: 40px;
  border-radius: 10px;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;

}

.mvp_card_right,
.mvp_card_left {
  flex: 1 1 400px;
  height: auto;
  width: 100%;
  background-color: #1A1F25;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.mvp_card_right:hover,
.mvp_card_left:hover {
  transform: scale(1.02);
  box-shadow:
    0 -10px 20px rgba(0, 0, 0, 0.2),
    /* top glow */
    0 10px 20px rgba(0, 0, 0, 0.2);
  /* bottom glow */
  position: relative;
}

.mvp_card_right h2,
.mvp_card_left h2 {
  color: #BFBFBF;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
  font-style: italic;
  font-weight: bold;
  font-family: 'Montserrat';
}

.mvp_card_left li,
.mvp_card_right li {
  position: relative;
  text-align: justify;
  margin-bottom: 12px;
  font-size: 15px;
  color: #BFBFBF;
  font-family: 'Montserrat';
}

.mvp_card_left_li {
  color: #BFBFBF;
}

.mvp_card_left_para {
  color: #BFBFBF;
  position: relative;
  text-align: justify;
  margin-bottom: 12px;
  font-size: 15px;
  font-family: 'Montserrat';
}

.mvp_card_left_para::before {
  color: #BFBFBF;
  content: "• ";
  position: absolute;
  left: -17;
  top: 0;
  font-weight: bold;
}

.mvp_card_left_br {
  left: -0px;
  color: #BFBFBF;
  list-style: none;
  text-align: justify;
  margin-bottom: 12px;
  margin-top: -13px;
  font-size: 15px;
  font-family: 'Montserrat';
}

.mvp_card_right li::marker {
  color: #BFBFBF;
}

.mvp_card_left_li::marker {
  color: #BFBFBF;
}

.keySkillsMVP_Description {
  margin-top: -8px;
  font-size: 14px;
  color: #BFBFBF;
  font-family: 'Montserrat';
  list-style: none;
}

.keySkillsMVP {
  font-size: 15px;
  color: #BFBFBF;
  font-family: 'Montserrat';
  list-style: disc;
}


/* ============== Tablet View  ================= */
@media (min-width: 601px) and (max-width: 1000px) {
  .mvp_grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 40px;
    gap: 40px;
    min-height: auto;
  }

  .mvp_card_left,
  .mvp_card_right {
    flex: 1 1 calc(50% - 20px);
    height: auto;
    padding: 30px;
    margin-top: 30px;
  }

  .mvp_card_left h2,
  .mvp_card_right h2 {
    font-size: 18px;
  }

  .mvp_card_left li,
  .mvp_card_right li,
  .mvp_card_left_para,
  .keySkillsMVP,
  .keySkillsMVP_Description {
    font-size: 14px;
  }

  .left-box_MVP {
    flex: 1 1 50%;
    margin-left: -0px;
  }

  .left-box_MVP h1 {
    font-size: 28px;
    padding-left: 50px;
  }
}

/* =============== Mobile View ================== */
@media (max-width: 600px) {
  .mvp_grid {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
    min-height: auto;
  }

  .mvp_card_left,
  .mvp_card_right {
    flex: 1 1 100%;
    height: auto;
    min-height: auto;
    padding: 20px;
    margin-top: 20px;
  }

  .mvp_card_right {
    flex: 1 1 100%;
    height: auto;
    padding: 20px;
    margin-top: 20px;
  }

  .mvp_card_left h2,
  .mvp_card_right h2 {
    font-size: 14px;
  }

  .mvp_card_left ul,
  .mvp_card_right ul {
    padding: 20px;
    font-size: 12.5px;
  }

  .mvp_card_left li,
  .mvp_card_right li,
  .mvp_card_left_para,
  .keySkillsMVP,
  .keySkillsMVP_Description {
    font-size: 12.5px;
  }

  .right-image_mvpdev {
    display: none;
    /* Hide image on mobile View */
  }

  .left-box_MVP {
    flex: auto;
    margin-left: auto;
  }

  .left-box_MVP h1 {
    font-size: 18px;
    text-align: center;
  }
}

/* =============== Our Strength Integration ===============*/
.integration_Strength {
  /* background-color: #1A1F25; */
  color: white;
  padding: 40px 80px;
  font-family: 'Montserrat';
  display: flex;
  justify-content: center;

  max-width: 1400px;
  margin: auto;
}

.integration_card {
  background-color: #1A1F25;
  padding: 30px;
  border-radius: 10px;
  /* max-width: 1200px; */
  width: 100%;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.integration_card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.integration_card h3 {
  color: #BFBFBF;
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: normal;
  font-family: 'Montserrat';
}

.Strength_Para {
  font-size: 15px;
  color: #BFBFBF;
  font-family: 'Montserrat';
  text-align: justify;
  margin-bottom: 20px;
  margin-left: 20px;
  list-style: none;
  line-height: 1.6;
  width: 50%;
}

.integration_content_row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  font-family: 'Montserrat';
}

.integrationData_div {
  flex: 1 1 45%;
  min-width: auto;
}

.right_image_IntegrationCard {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.right_image_IntegrationCard img {
  max-width: 110%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-left: -50px;
  margin-top: -110px;
}

.strength_UL,
.strength_skills {
  color: #BFBFBF;
  font-family: 'Montserrat';
  margin-left: 10px;
}

.strength_UL {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: -5px;
  font-size: 15px;
}

.strength_skills {
  list-style-type: circle;
  padding-left: 50px;
  margin-top: -10px;
  font-size: 14px;
}

.strength_UL li {
  margin-bottom: 2px;
}

.strength_skills li {
  margin-bottom: 1px;
}

.strength_UL li::marker,
.strength_skills li::marker {
  color: #BFBFBF;
}

.integration_card h3 {

  margin-top: 10px;
  margin-bottom: 30px;
  font-weight: bold;
}

/*=========================================== Tablet View =====================================*/

@media (max-width: 1000px) {
  .integration_Strength {
    padding: 50px 40px;
  }

  .integration_card {
    padding: 20px;
    /* margin-top: 30%; */
  }

  .integration_card h3 {
    font-size: 18px;
  }

  .Strength_Para {
    font-size: 14px;
    margin-left: 0px;
  }

  .integration_content_row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .integrationData_div {
    flex: 1 1 45%;
    min-width: auto;
  }

  .right_image_IntegrationCard {
    flex: 1 1 40%;
    justify-content: center;
  }

  .right_image_IntegrationCard img {
    max-width: 100%;
    /* margin-top: -240px;
    margin-left: 340px; */
  }

  .strength_UL,
  .strength_skills {
    font-size: 14px;
  }
}

/*=========================================== Mobile View =====================================*/
@media (max-width: 599px) {
  .integration_Strength {
    padding: 20px 50px;
  }

  .integration_card {
    padding: 30px;
    text-align: left;
  }

  .integration_card h3 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .Strength_Para {
    font-size: 12.5px;
    margin-bottom: 25px;
    text-align: left;
    width: 100%;
  }

  .integration_content_row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }

  .integrationData_div {
    flex: 1 1 55%;
    padding-right: 20px;
  }

  .right_image_IntegrationCard {
    flex: 1 1 40%;
    justify-content: center;
  }

  .right_image_IntegrationCard img {
    display: none;
  }

  .strength_UL {
    font-size: 12.5px;
    padding-left: 20px;
    text-align: left;
    line-height: 20px;
  }

  .strength_skills {
    font-size: 12.5px;
    padding-left: 40px;
    text-align: left;
  }
}


/* ======Services Section 7th======= */
.research-lab {
  padding: 40px 80px;
  background-color: #0c0f14;
}

.research-lab1 {
  padding: 40px 0px;
  max-width: 1400px;
  margin: auto;
}

.Servicescard {
  background-color: #1A1F25;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.Servicescard:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.Servicestext-section {
  width: 100%;
  text-align: left;
}

.Servicesubtitle {
  color: #d9d9d9;
  font-size: 20px;
  margin-bottom: 20px;
  font-style: italic;
  font-family: 'Montserrat', sans-serif;
}

.Servicesfeatures {
  list-style: disc;
  padding-left: 20px;
  color: #BFBFBF;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.Servicesfeatures li::marker {
  color: #e64626;
}

.Servicesimage-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: -30px;

}

.M_bmp {
  height: 350px;
  object-fit: contain;
  border-radius: 12px;
  width: 50%;
  padding: 8px;
}

.Dicom_img {
  height: 350px;
  object-fit: contain;
  border-radius: 12px;
  width: 50%;
  padding: 8px;
}

@media (max-width: 1000px) {
  .Servicescard {
    padding: 30px;
  }

  .Servicesimage-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* flex-wrap: wrap; */
    width: 100%;
    margin-top: -30px;
  }

  .M_bmp {
    height: 210px;
    object-fit: contain;
    border-radius: 12px;
    width: 50%;
    background-color: transparent;
    padding: 8px;
  }

  .Dicom_img {
    height: 210px;
    object-fit: contain;
    border-radius: 12px;
    width: 50%;
    background-color: transparent;
    padding: 8px;
  }

  .Servicesubtitle {
    font-size: 18px;
  }

  .Servicesfeatures li {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .research-lab {
    padding: 20px;
  }

  .Servicescard {
    padding: 20px;
  }

  .Servicestext-section {
    text-align: left;
  }

  .Servicesfeatures {
    font-size: 14px;
    padding-left: 20px;
    list-style-position: outside;
  }

  .Servicesimage-section {
    flex-direction: column;
    gap: 10px;
  }

  .Servicesubtitle {
    text-align: center;
    font-size: 14px;
  }

  .Servicesfeatures {
    font-size: 12.5px;
  }

  .M_bmp {
    height: 180px;
    width: 100%;
    align-self: center;
    background-color: transparent;
  }

  .Dicom_img {
    height: 180px;
    width: 100%;
    align-self: center;
    background-color: transparent;
  }
}


/*============ContactUs Page================*/
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #1e2127;
  color: white;
  padding: 60px 40px;
  font-family: 'Montserrat';
  gap: 100px;
  margin: auto;
  max-width: 1400px;
}

.contact-left {
  border-radius: 10px;
  /* flex: 1 1 400px; */
  flex: 1;
  /* max-width: 12.88cm; */
  width: 50%;
  margin-left: 50px;
  background-color: #F2F2F2;
}

.contact-right {
  /* flex: 1 1 400px; */
  flex: 1;
  /* width: 13.61cm; */
  width: 50%;
  /* height: 12.72cm; */
  /* margin-left: 100px; */
}

.contact-left h2 {
  font-size: 28px;
  color: #3B3838;
  margin-bottom: 20px;
}

.contact-left h2 span {
  color: #e64626;
  margin-left: 40px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input[type="text"],
form input[type="tel"],
form input[type="email"],
form input[type="file"] {
  padding: 10px 14px;
  border: 1.2px groove #767171;
  margin: 0px 40px;
  border-color: #767171;
  border-radius: 6px;
  background-color: transparent;
  color: black;
}

form input[type="text"]:focus,
form input[type="tel"]:focus,
form input[type="email"]:focus,
form input[type="file"]:focus {
  border: 1.5px groove black;
  outline: none;
}

form input::placeholder {
  color: #bbb;
  font-family: 'Montserrat';
}

textarea {
  resize: none;
  border: 1.2px groove #767171;
  border-radius: 6px;
  /* width: 405px; */
  width: auto;
  margin: 0px 40px;
  outline: none;
  font-size: 14px;
  font-family: 'Montserrat';
  background: transparent;
  padding: 10px 14px;
  color: black;
}

textarea:focus {
  /* border-color: red; */
  border: 1.5px groove black;
  outline: none;
}

textarea::placeholder {
  color: #bbb;
}

form button {
  padding: 12px 20px;
  background-color: #e64626;
  margin: 0px 40px;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #f55b16;
}

.inline-fields {
  flex-direction: row;
}

.inline-fields input {
  width: 100%;
}

.contact-details p {
  margin-top: 20px;
  margin-left: 20px;
  font-size: 14px;
  color: #3B3838;
}

.info-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 15px;
  margin-bottom: 30px;
}

.info-list li {
  color: #D9D9D9;
  /* text color */
}

.info-list li::marker {
  color: #e64626;
  /* bullet color */
}

.contact-right img {
  max-width: 90%;
  height: auto;
}

@media (max-width: 600px) {
  .contact-left h2 span {
    margin-left: 0px;
  }

  .contact-left h2 {
    font-size: 18px;
  }

  .contact-details p {
    font-size: 12.5px;
  }
}

/* =========================================FAQ=================================================== */
.faq-section {
  /* background-color: #1A1F25; */
  color: white;
  /* padding: 1px 200px 60px 200px; */
  padding: 40px 80px 60px 80px;
  font-family: 'Montserrat';
  margin: auto;
  max-width: 1400px;
}

.faq-section h2 {
  font-size: 25px;
  color: #e64626;
  margin-bottom: 10px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #444;
  padding: 20px 0;
}

.faq-question {
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #D9D9D9;
}

.faq-answer {
  display: none;
  font-size: 12px;
  margin-top: 10px;
  color: #bfbfbf;
  line-height: 1.6;
  text-align: justify;
}

.toggle {
  font-size: 24px;
  color: #e64626;
  font-weight: bold;
}

.toggle:hover {
  color: #f55b16;
}


/* ========== Responsive Styles ========== */
@media (max-width: 1000px) {
  .contact-section {
    flex-direction: row;
    align-items: center;
    padding: 40px;
    gap: 40px;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
    margin: 0;
  }

  .contact-right {
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: anchor-center;
    max-height: 400px;
  }

  .faq-section h2 {
    font-size: 28px;
  }

  .contact-right img {
    max-width: 80%;
  }

  .faq-section {
    padding: 40px 40px;
  }

  .info-list li {
    font-size: 14px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
    padding-right: 25px;
  }
}

@media (max-width: 599px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    padding: 40px;
  }

  .contact-left {
    margin: 0 0 0 -10px;
    padding: 20px;
    width: 95%;
  }

  .contact-right {
    width: 100%;
    /* padding-bottom: 40px; */
  }

  .contact-right img {
    width: auto;
  }

  textarea {
    resize: none;
    border: 1.2px groove #767171;
    border-radius: 6px;
    width: 100%;
    margin: 0px;
    outline: none;
    font-size: 14px;
    font-family: 'Montserrat';
    background: transparent;
    padding: 10px 14px;
    color: black;
  }

  form input[type="text"],
  form input[type="tel"],
  form input[type="email"],
  form input[type="file"],
  form button {
    margin: 0;
    width: 100%;
    font-size: 12.5px;
  }

  #feedback {
    font-size: 12.5px;
  }

  .inline-fields {
    flex-direction: column;
    gap: 12px;
  }

  .inline-fields input {
    margin-left: 0 !important;
    width: 100%;
  }

  .faq-section {
    padding: 30px 20px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 12.5px;
  }
}

@media (max-width: 599px) {
  h2 {
    font-size: 22px;
  }

  .faq-section h2 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 12.5px;
    padding: 0 25px 0 0;
  }

  .info-list {
    font-size: 12.5px;
    padding-left: 15px;
    text-align: left;
  }
}



/* =======================================Company ================================================= */
/* ====================================Who and What we are======================================= */
/* .aboutUs-section {
  background: url('Resources/Binary-Background.svg') center/cover no-repeat ;
  background-color: #1A1F25;
  color: white;
  padding: 80px 80px;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
} */

.aboutUs-section {
  position: relative;
  /* background-color: #1A1F25; */
  color: white;
  padding: 80px 130px;
  font-family: 'Montserrat';
  overflow: hidden;

  max-width: 1400px;
  margin: auto;
}


.aboutUs-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('Resources/Binary-Background.svg') center/cover no-repeat;
  opacity: 0.7;
  z-index: 0;
}

.overlay {
  position: relative;
  z-index: 10;
}

/* Lamp container */
.lamps {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin-left: 60px;
  margin-top: -80px;
}

.lamps img {
  max-width: 120px;
  /* replaces cm */
  height: auto;
}

/* Text container */
.intro-text-2 {
  /* max-width: 800px;
  width: 100%;
  margin-top: -40px;
  padding: 20px 50px 0px 50px;
  color: #5F5F60; */

  max-width: 1400px;
  width: 100%;
  margin-top: -40px;
  padding: 20px 0px 50px 0px;
  color: #5F5F60;
}

.intro-list {
  list-style-type: disc;
  margin-left: 50px;
  padding-left: 0;
  color: #bfbfbf;
}

.intro-list li {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Montserrat';
  margin-bottom: -4px;
  /* matches your negative spacing */
}

.intro-fontColor1 {
  color: #e64626;
  /* padding-top: 20px; */
  font-size: 28px;
}

.sec2_FontColour2 {
  color: #D9D9D9;
}

.intro-para-2 {
  color: #bfbfbf;
  margin-left: 50px;
  margin-top: -10px;
  font-size: 16px;
  font-family: 'Montserrat';
}

/* Tablet adjustments */
@media (max-width: 1000px) {
  .aboutUs-section {
    padding: 60px 40px;
  }

  .lamps {
    margin-left: 20px;
    margin-top: -60px;
    gap: 20px;
  }

  .lamps img {
    max-width: 100px;
  }

  .intro-text-2 {
    padding: 15px 20px;
  }

  .intro-para-2 {
    margin-left: 20px;
    font-size: 14px;
  }

  .intro-list li {
    font-size: 14px;
  }
}

/* Mobile adjustments */
@media (max-width: 599px) {
  .aboutUs-section {
    padding: 0px 20px;
  }

  .lamps {
    justify-content: left;
    margin-left: 0;
    margin-top: 0;
  }

  .lamps img {
    max-width: 80px;
  }

  .intro-text-2 {
    /* margin-top: 20px; */
    padding: 10px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .intro-para-2 {
    /* margin-left: 0; */
    font-size: 12.5px;
    text-align: justify;
    padding-right: 20px;
  }

  .intro-fontColor1 {
    font-size: 18px;
  }

  .intro-list {
    margin-left: 15px;
  }

  .intro-list li {
    font-size: 12.5px;
    text-align: justify;
    padding-right: 20px;
    line-height: 1.5;
  }
}



/*================= Director Section===================== */
.director-section {
  background-color: #0F1219;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  font-family: "Montserrat";
  color: #fff;
  /* margin-top: 30px; */
  margin-bottom: 50px;
}

.card-container {
  perspective: 1200px;
}

.flip-card {
  width: 900px;
  height: 450px;
  position: relative;
  transition: transform 1s;
  transform-style: preserve-3d;
}

.flip-card.is-flipped {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  background-color: #2A2D34;
  box-sizing: border-box;
  overflow: hidden;
}

/* FRONT SIDE */
.flip-card-front {
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flip-card-front .profile-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  /* background-color: #fff; */
  margin-bottom: 15px;
  background-size: cover;
  background-position: center;
  margin: auto;
  background-image: url(Resources/Abhishek_Profile.jpg);
}

.name-heading-front {
  margin-top: 15px;
  color: #fff;
  font-weight: 500;
  align-self: center;
}

.name-heading-back {
  margin-top: 5px;
  color: #fff;
  font-weight: 500;
  align-self: center;
}

.designation-front {
  color: #E64626;
  font-size: 15px;
  margin-bottom: 10px;
  align-self: center;
}

.designation-back {
  color: #E64626;
  font-size: 15px;
  margin-bottom: 5px;
  margin-top: 0px;
  align-self: center;
}

.bio {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin: 0 0 20px 0;
  text-align: justify;
}

a {
  color: #E64626;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

a:hover {
  color: #E64626;
}

/* BACK SIDE */
.flip-card-back {
  transform: rotateY(180deg);
  padding: 35px;
  height: auto;
}

.back-layout {
  display: flex;
  gap: 30px;
  height: 100%;
}

/* LEFT SIDE */
.left-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.left-side .profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  background-size: cover;
  background-position: center;
  margin-left: 20%;
  background-image: url(Resources/Abhishek_Profile.jpg);
}

/* RIGHT SIDE */
.right-side {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.experience h5,
.skills h5 {
  color: #E64626;
  margin-bottom: 10px;
  font-size: 16px;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.exp-box {
  background: #111214;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 13px;
  color: #eee;
}

.exp-box span {
  color: #aaa;
  font-size: 12.5px;
}

.skills ul {
  padding-left: 20px;
}

.skills li {
  font-size: 13px;
  margin-bottom: 8px;
  color: #ccc;
}

#backBtn {
  margin-top: 15px;
  align-self: center;
  cursor: pointer;
}

#readMore {
  align-self: center;
  cursor: pointer;
}

/* ---------- MOBILE OPTIMIZED (BACK SIDE FIXED) ---------- */
@media (max-width: 1000px) {
  .card-container {
    width: 100%;
    padding: 0 10px;
  }

  .flip-card {
    width: 100%;
    height: 550px;
    min-height: 45vh;
    position: relative;
  }

  .name-heading-front {
    font-size: 18px;
  }

  .designation-front {
    font-size: 16px;
  }

  .name-heading-back {
    font-size: 18px;
  }

  .designation-back {
    font-size: 16px;
  }

  .exp-box {
    font-size: 14px;
  }

  .exp-box span {
    font-size: 14px;
  }
}

@media (max-width: 599px) {
  body {
    height: auto;
    min-height: 100vh;
    align-items: flex-start;
    padding: 10px 0;
    overflow-y: auto;
  }

  .card-container {
    width: 100%;
    padding: 0 10px;
  }

  .flip-card {
    width: 100%;
    height: auto;
    min-height: 85vh;
    position: relative;
  }

  /* Mobile fix: both sides absolute removed */
  .flip-card-front,
  .flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 85vh;
    border-radius: 12px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* FRONT */
  .name-heading-front {
    font-size: 18px;
  }

  .designation-front {
    font-size: 16px;
  }

  .flip-card-front {
    padding: 25px 15px;
  }

  .flip-card-front .profile-img {
    width: 250px;
    height: 250px;
  }

  .bio {
    text-align: justify;
    font-size: 12.5px;
  }

  /* BACK */
  .flip-card-back {
    transform: rotateY(180deg);
    display: block;
    padding: 25px 15px;
    background-color: #1a1c1f;
  }

  .back-layout {
    flex-direction: column;
    align-items: center;
    gap: 0;
    height: auto;
  }

  .left-side {
    align-items: center;
    text-align: center;
    width: 100%;
    display: none;
  }

  .left-side .profile-img {
    margin: 0 auto 10px auto;
    display: none;
  }

  .right-side {
    width: 100%;
  }

  .exp-grid {
    grid-template-columns: 1fr;
  }

  .exp-box {
    font-size: 12.5px;
  }

  .skills li {
    font-size: 12.5px;
    text-align: justify;
  }

  .name-heading-back {
    font-size: 18px;
  }

  .experience h5,
  .skills h5 {
    font-size: 14px;
  }

  .designation-back {
    font-size: 16px;
  }

  h3 {
    font-size: 17px;
  }

  .designation {
    font-size: 14px;
  }

  #backBtn {
    align-self: center;
    margin-top: 20px;
    font-size: 14px;
  }

  .experience,
  .skills {
    width: 100%;
    text-align: left;
  }

  .skills ul {
    padding-left: 18px;
  }

  /* Key Fix: ensure card keeps both faces stacked properly */
  .flip-card.is-flipped .flip-card-front {
    visibility: hidden;
  }

  .flip-card.is-flipped .flip-card-back {
    visibility: visible;
    z-index: 2;
    position: relative;
  }
}


/* ==========================================Our Vision & Mission====================================================== */

/* .vision-mission {
    font-family: 'Segoe UI', sans-serif;
    padding: 0px 80px;
    background: url('Resources/Section2_Background\(orange\).svg') no-repeat center right;
    background-color: #1A1F25;

    height: 300px;
    background-size: cover;
    align-content: center;
} */

.vision-mission {
  position: relative;
  font-family: 'Montserrat';
  padding: 0px 80px;
  /* background-color: #1A1F25; */
  /* height: 300px; */
  align-content: center;
  overflow: hidden;
  margin-top: 120px;

  max-width: 1400px;
  margin: 120px auto auto auto;
}

.vision-mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('Resources/Section2_Background(orange).svg') no-repeat center right;
  background-size: cover;
  opacity: 0.5;
  z-index: 0;
}

.vision-mission * {
  position: relative;
  z-index: 1;
}

.vm-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  max-width: 1000px;
}

.vm-label {
  width: 180px;
  font-size: 28px;
  font-weight: bold;
  flex-shrink: 0;
  padding: 0 50px;
}

.vm-label span {
  color: #e64626;
}

.vm-label .highlight {
  color: #D9D9D9;
  font-weight: bold;
}

.vm-text {
  font-size: 16px;
  line-height: 1.6;
  margin-left: -40px;
  color: #bfbfbf;
}



/* 🔧 Responsive Media Queries */
@media (max-width: 992px) {
  .vision-mission {
    padding: 40px 40px 0px 40px;
    margin-top: 0px;
  }

  .vm-label {
    padding: 0 20px;
    font-size: 28px;
    width: auto;
  }

  .first_row {
    gap: 30px;
  }

  .intro-text h3 {
    font-size: 24px;
  }

  .descriptionClass {
    font-size: 15px;
  }

  .column1 {
    max-width: 160px;
  }

  .column1 img {
    max-width: 100px;
  }

  .column1 p {
    font-size: 13px;
  }

  .vm-text {
    margin-left: -5px;
    font-size: 14px;
  }
}

@media (max-width: 599px) {
  .vision-mission {
    padding: 20px 20px 0px 20px;
    margin-top: 0px;
  }

  .vm-label {
    padding: 0 10px;
    font-size: 18px;
  }

  .intro-text h3 {
    font-size: 22px;
  }

  .descriptionClass {
    font-size: 14px;
  }

  .column1 {
    max-width: 140px;
  }

  .column1 img {
    max-width: 80px;
  }

  .column1 p {
    font-size: 12.5px;
  }

  .vm-row {
    display: flow;
    align-items: flex-start;
    margin-bottom: 60px;
    max-width: 1000px;
  }

  .vm-text {
    margin-left: 30px;
    font-size: 12.5px;
  }
}

@media (max-width: 599px) {
  .first_row {
    flex-direction: column;
    align-items: center;
  }

  .column1 {
    max-width: 100%;
  }

  .column1 img {
    max-width: 70px;
  }

  .column1 p {
    font-size: 12px;
  }

  .intro-text h3 {
    font-size: 20px;
  }

  .descriptionClass {
    font-size: 13px;
  }

  .vm-row {
    display: flow;
    align-items: flex-start;
    margin-bottom: 20px;
    max-width: 1000px;
  }
}


/* ====================================Vision/ Mision/ Values======================================= */
/* .VMV_Section{
    background-image: url('Resources/Binary-Background.svg');
    background-size: cover;
    background-position: top;
    height: 380px;
    background-color: #1A1F25;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    } */

.VMV_Section {
  position: relative;
  height: 380px;
  background-color: #1A1F25;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.VMV_Section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('Resources/Binary-Background.svg') no-repeat top center;
  background-size: cover;
  opacity: 0.7;
  z-index: 0;
}

.VMV_Section * {
  position: relative;
  z-index: 1;
}

.VMV_Section img {
  width: auto;
  height: 150px;
  border-radius: 8px;
}

/* On tablet */
@media (max-width: 1000px) {
  .VMV_Section {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 150px;
    padding: 30px;
  }

  .VMV_Section img {
    height: 120px
  }
}

/* On mobile */
@media (max-width: 599px) {
  .VMV_Section {
    flex-direction: column;
    align-items: baseline;
    /* justify-content: left; */
    height: auto;
    padding: 0px 20%;
  }

  .VMV_Section img {
    height: 120px;
  }
}

/* .column {
      float: left;
      width: auto;
      padding: 5px 120px;
      height: auto;
    }

    .row{
      margin-top: -80px;
      padding: 0px 0px;
      margin-bottom: 10%;
    }

    .vision
    {
        background-image: url("Resources/Vision.png");
        display: inline-block;
        margin: 0;
        background-repeat: no-repeat;
        background-size: 140PX;
        background-position: left;
        color: transparent;
        background-clip: text;
        -webkit-background-clip: text;
        background-repeat: repeat;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: 100px;
        text-align: center;
        font-family: 'Steelfish Rg', 'helvetica neue',
                        helvetica, arial, sans-serif;
        font-weight: 550;
        -webkit-font-smoothing: antialiased;
    }

    .vision_1
    {
        background-image: url("Resources/Vision.png");
        display: inline-block;
        margin: 0;
        background-repeat: no-repeat;
        background-size: 180PX;
        background-position: left;
        color: transparent;
        background-clip: text;
        -webkit-background-clip: text;
        background-repeat: repeat;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: 100px;
        text-align: center;
        font-family: 'Steelfish Rg', 'helvetica neue',
                        helvetica, arial, sans-serif;
        font-weight: 550;
        -webkit-font-smoothing: antialiased;
    }

    .mision
    {
        background-image: url("Resources/Mision.jpg");
        display: inline-block;
        margin: 0;
        background-repeat: no-repeat;
        background-size: 120px;
        background-position: left;
        color: transparent;
        background-clip: text;
        -webkit-background-clip: text;
        background-repeat: repeat;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: 100px;
        text-align: center;
        font-family: 'Steelfish Rg', 'helvetica neue',
                        helvetica, arial, sans-serif;
        font-weight: 550;
        -webkit-font-smoothing: antialiased;
    }

    .mission_1
    {
        background-image: url("Resources/Mision.jpg");
        display: inline-block;
        margin: 0;
        background-repeat: no-repeat;
        background-size: 70px;
        background-position: left;
        color: transparent;
        background-clip: text;
        -webkit-background-clip: text;
        background-repeat: repeat;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: 100px;
        margin-left: -10px;
        text-align: center;
        font-family: 'Steelfish Rg', 'helvetica neue',
                        helvetica, arial, sans-serif;
        font-weight: 550;
        -webkit-font-smoothing: antialiased;
    }

    .value
    {
        background-image: url("Resources/Value.png");
        display: inline-block;
        margin: 0;
        background-repeat: no-repeat;
        background-size: 275px;
        background-position: right;
        color: transparent;
        background-clip: text;
        -webkit-background-clip: text;
        background-repeat: repeat;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: 100px;
        text-align: center;
        font-family: 'Steelfish Rg', 'helvetica neue',
                        helvetica, arial, sans-serif;
        font-weight: 550;
        -webkit-font-smoothing: antialiased;
    }

    .value_1
    {

        background-image: url("Resources/Value.png");
        display: inline-block;
        margin: 0;
        background-repeat: no-repeat;
        background-size: 160px;
        background-position: top;
        color: transparent;
        background-clip: text;
        -webkit-background-clip: text;
        background-repeat: repeat;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: 100px;
        font-size: 120px;
        text-align: center;
        font-family: 'Steelfish Rg', 'helvetica neue',
                        helvetica, arial, sans-serif;
        font-weight: 550;
        -webkit-font-smoothing: antialiased;
    }

    .Readmore
    {
        font-size: 13px;
        color: #E1402C;
    }







@media (max-width: 1200px) {
  .column {
    padding: 5px 60px;
  }

  .vision,
  .mision,
  .value {
    font-size: 140px;
  }

  .vision_1,
  .mission_1,
  .value_1 {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .column {
    width: 100%;
    text-align: center;
    padding: 20px;
  }

  .vision,
  .mision,
  .value {
    font-size: 120px;
    margin-top: 60px;
  }

  .vision_1,
  .mission_1,
  .value_1 {
    font-size: 36px;
  }

  .VMV_Section {
    height: auto;
  }
}

@media (max-width: 599px) {
  .VMV_Section {
    padding: 80px 20px;
    background-size: cover;
    height: auto;
  }

  .vision,
  .mision,
  .value {
    font-size: 90px;
    margin-top: 50px;
  }

  .vision_1,
  .mission_1,
  .value_1 {
    font-size: 28px;
  }

  .Readmore {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    padding: 0 150px 0 0;
  }
}

@media (max-width: 599px) {
  .vision,
  .mision,
  .value {
    font-size: 70px;
  }

  .vision_1,
  .mission_1,
  .value_1 {
    font-size: 24px;
  }

  .VMV_Section {
    padding: 60px 15px;
  }
} */


/* ==========================================Values====================================================== */
.binary-orange {
  color: #bfbfbf;
}

.binary-orange1 {
  color: #e64626;
}

.Our_Values {
  background-image: url('Resources/Binary-Background.svg');
  background-color: #1A1F25;
  background-size: contain;
  background-position: center;
  margin-top: -180px;
  height: 600px;
  padding: 0 80px;
}

/* .mainDIV{
  margin-left: 70px;
} */

.fontColor1 {
  color: #D0CECE;
  padding-top: 50px;


}

.intro-text {
  width: auto;
  color: #5F5F60;
  /* margin-left: 150px; */
  padding: 50px 50px 0px 50px;
}

.column1 {
  float: left;
  width: 25%;
  padding: 0px;
  margin-top: -20px;

}

.column1 a {
  text-decoration: none;
}

.column1 img {
  cursor: pointer;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.column1 img:hover {
  /* transform: scale(1.1); */
  transform: scale(1.1);
  filter: brightness(1.5);
}

.column2 {
  float: left;
  width: 25%;
  padding: 0px 0px;
  margin-top: 80px;

}


.first_row {
  margin-left: 270px;
  margin-top: 100px;
  margin-bottom: 300px;
}

.second_row {
  margin-left: 270px;
  margin-top: 100px;
}

.Logo_Openness {
  color: #808794;
  font-size: 14px;
  margin-left: -5px;
  margin-top: 5px;
}

.Logo_Customer {
  color: #808794;
  font-size: 14px;
  margin-left: -25px;
  margin-top: -0px;
}

.Logo_Freedom {
  color: #808794;
  font-size: 14px;
  margin-left: -5px;

}

.Logo_Social {
  color: #808794;
  font-size: 14px;
  margin-left: -40px;
}

.Logo_Courage {
  color: #808794;
  font-size: 14px;

}

.Logo_Passion {
  color: #808794;
  font-size: 14px;
}

.Logo_Learning {
  color: #808794;
  font-size: 14px;
}

.Logo_trust {

  color: #808794;
  font-size: 14px;
  text-align: justify;
}

.img_Openness {
  margin-bottom: 0px;
  margin-top: 5px;
  height: 50px;
  width: 50px;
  margin-bottom: 8px;
}

.img_Customer {
  width: 75px;
  height: 75px;
  margin-top: -5px;
  margin-bottom: 0px;
}

.img_Freedom {
  height: 50px;
  width: 50px;
  margin-bottom: 8px;
}

.img_Social {
  height: 50px;
  width: 50px;
  margin-bottom: 8px;
}

.img_Passion {
  height: 40px;
  width: 40px;
}

.img_Learning {
  height: 40px;
  width: 40px;
}

.img_trust {
  height: 40px;
  width: 40px;
}

.img_Courage {
  height: 40px;
  width: 50px;
}

.descriptionClass {
  margin-left: 130px;
  margin-top: -50px;
  color: #808794;
  font-size: 14px;
}

/* @media (max-width: 599px) {
  .intro-text {
    margin-left: 0px;
  }
} */

/* Tablet: 3 per row */
@media (max-width: 992px) {
  .first_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-left: 0 !important;
    /* remove desktop offset */
  }

  .first_row .column1 {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    margin-left: 0 !important;
  }

  .Our_Values {
    display: none;
  }
}

/* Mobile: 2 per row */
@media (max-width: 599px) {

  /* .first_row {
    gap: 20px;
  }
  .first_row .column1 {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin-left: 0 !important;
  }
    .intro-text {
    margin-left: 0px;
  } */
  .Our_Values {
    display: none;
  }
}



/* =============================Main Values(Next Back Button)=========================== */
.Main_Values {
  position: relative;
  max-height: 40%;
}

.backButton,
.nextButton {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
}

.backButton {
  left: 1%;
}

.nextButton {
  right: 1%;
}

.buttonchange {
  color: #e64626;
  border: none;
  font-size: xx-large;
  background-color: transparent;
  padding: 18px 10px;
  cursor: pointer;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.buttonchange:hover {
  filter: brightness(1.5);
}

/* =============================Sub-Values(Openness)=========================== */
.values-section {
  /* background-color: #1A1F25; */
  padding: 0px 80px;
  font-family: 'Montserrat';
  color: white;
  height: 400px;

  max-width: 1400px;
  margin: auto;
}

.values-title {
  font-size: 30px;
  color: #e64626;
  text-align: left;
}

.value-card {
  padding: 50px 150px;
}

.value-header {
  display: flex;
  align-items: center;
}

.value-header img {
  width: 52px;
  height: 35px;
}


.value-content {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.value-content h3 {
  color: #D9D9D9;
  font-size: 13px;
  margin-left: -10px;
  margin-top: 0px;
}

.value-details {
  flex: 1;
  margin-top: -45px;
}

.value-description {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: #bfbfbf;
}

.value-list {
  list-style: disc;
  font-size: 12px;
  color: #bfbfbf;
  margin: 0;
  padding-left: 20px;
}

.value-list li::marker {
  color: #e64626;
  /* bullet color */
}

/* =============================Sub-Values(Customer-oriented)=========================== */

.values-title1 {
  font-size: 30px;
  color: #e64626;
  text-align: left;
}

.value-card1 {
  padding: 50px 150px;
}

.value-header1 {
  display: flex;
  align-items: center;
}

.value-header1 img {
  width: 106px;
  height: 33px;
}


.value-content1 {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.value-content1 h3 {
  color: #bfbfbf;
  font-size: 13px;
  margin-left: -10px;
  margin-top: 8px;
}

.value-details1 {
  flex: 1;
  margin-top: -45px;
}

.value-description1 {
  margin-top: 10px;
  margin-left: -5px;
  font-size: 12px;
  color: #bfbfbf;
}

/* =============================Sub-Values(Freedom)=========================== */
.values-title2 {
  font-size: 30px;
  color: #e64626;
  text-align: left;
}

.value-card2 {
  padding: 50px 150px;
}

.value-header2 {
  display: flex;
  align-items: center;
}

.value-header2 img {
  width: 52px;
  height: 43px;
}


.value-content2 {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.value-content2 h3 {
  color: #bfbfbf;
  font-size: 13px;
  margin-left: -10px;
  margin-top: 0px;
}

.value-details2 {
  flex: 1;
  margin-top: -45px;
}

.value-description2 {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: #bfbfbf;
}

.value-list2 {
  list-style: disc;
  font-size: 12px;
  color: #bfbfbf;
  margin: 0;
  padding-left: 20px;
}

.value-list2 li::marker {
  color: #E57200;
  /* bullet color */
}

/* =============================Sub-Values(Social Responsibility)=========================== */
.values-title3 {
  font-size: 30px;
  color: #e64626;
  text-align: left;
}

.value-card3 {
  padding: 50px 150px;
}

.value-header3 {
  display: flex;
  align-items: center;
}

.value-header3 img {
  width: 42px;
  height: 53px;
}


.value-content3 {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.value-content3 h3 {
  color: #bfbfbf;
  font-size: 13px;
  margin-left: -10px;
  margin-top: 0px;
}

.value-details3 {
  flex: 1;
  margin-top: -50px;
}

.value-description3 {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: #bfbfbf;
}

/* =============================Sub-Values(Courage)=========================== */
.values-title4 {
  font-size: 30px;
  color: #e64626;
  text-align: left;
}

.value-card4 {
  padding: 50px 150px;
}

.value-header4 {
  display: flex;
  align-items: center;
}

.value-header4 img {
  width: 76px;
  height: 60px;
}


.value-content4 {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.value-content4 h3 {
  color: #bfbfbf;
  font-size: 13px;
  margin-left: 7px;
  margin-top: 0px;
}

.value-details4 {
  flex: 1;
  margin-top: -70px;
}

.value-description4 {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: #bfbfbf;
}

.value-list4 {
  list-style: disc;
  font-size: 12px;
  color: #bfbfbf;
  margin-top: 20px;
  padding-left: 20px;
}

.value-list4 li::marker {
  color: #e64626;
  /* bullet color */
}

/* =============================Sub-Values(Passion)=========================== */
.values-title5 {
  font-size: 30px;
  color: #e64626;
  text-align: left;
}

.value-card5 {
  padding: 50px 150px;
}

.value-header5 {
  display: flex;
  align-items: center;
}

.value-header5 img {
  width: 26px;
  height: 37px;
}


.value-content5 {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.value-content5 h3 {
  color: #bfbfbf;
  font-size: 13px;
  margin-left: -15px;
  margin-top: 0px;
}

.value-details5 {
  flex: 1;
  margin-top: -45px;
}

.value-description5 {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: #bfbfbf;
}

.value-list5 {
  list-style: disc;
  font-size: 12px;
  color: #bfbfbf;
  margin-top: 20px;
  padding-left: 20px;
}

.value-list5 li::marker {
  color: #e64626;
  /* bullet color */
}

/* =============================Sub-Values(Learning)=========================== */
.values-title6 {
  font-size: 30px;
  color: #e64626;
  text-align: left;
}

.value-card6 {
  padding: 50px 150px;
}

.value-header6 {
  display: flex;
  align-items: center;
}

.value-header6 img {
  width: 37px;
  height: 31px;
}

.value-content6 {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.value-content6 h3 {
  color: #bfbfbf;
  font-size: 13px;
  margin-left: -13px;
  margin-top: 0px;
}

.value-details6 {
  flex: 1;
  margin-top: -45px;
}

.value-description6 {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: #bfbfbf;
}

.value-list6 {
  list-style: disc;
  font-size: 12px;
  color: #bfbfbf;
  margin-top: 20px;
  padding-left: 20px;
}

.value-list6 li::marker {
  color: #e64626;
  /* bullet color */
}

/* =============================Sub-Values(Trust)=========================== */
.values-title7 {
  font-size: 30px;
  color: #e64626;
  text-align: left;
}

.value-card7 {
  padding: 50px 150px;
}

.value-header7 {
  display: flex;
  align-items: center;
}

.value-header7 img {
  width: 53px;
  height: 53px;
}

.value-content7 {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.value-content7 h3 {
  color: #bfbfbf;
  font-size: 13px;
  margin-left: 8px;
  margin-top: 0px;
}

.value-details7 {
  flex: 1;
  margin-top: -60px;
}

.value-description7 {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: #bfbfbf;
}

.value-list7 {
  list-style: disc;
  font-size: 12px;
  color: #bfbfbf;
  margin-top: 20px;
  padding-left: 20px;
}

.value-list7 li::marker {
  color: #e64626;
  /* bullet color */
}


/* ================= 📱 Responsive Styles ================= */

@media (max-width: 992px) {
  .values-section {
    padding: 0px 40px 40px 40px;
    height: auto;
  }

  .Main_Values {
    max-height: 100%;
  }

  .value-card,
  .value-card1,
  .value-card2,
  .value-card3,
  .value-card4,
  .value-card5,
  .value-card6,
  .value-card7 {
    padding: 30px 30px;
  }

  .value-details,
  .value-details1,
  .value-details2,
  .value-details3,
  .value-details4,
  .value-details5,
  .value-details6,
  .value-details7 {
    margin-top: -20px;
  }

  .value-content,
  .value-content1,
  .value-content2,
  .value-content3,
  .value-content4,
  .value-content5,
  .value-content6,
  .value-content7 {
    flex-direction: column;
    gap: 20px;
  }

  .value-content h3,
  .value-content1 h3,
  .value-content2 h3,
  .value-content3 h3,
  .value-content4 h3,
  .value-content5 h3,
  .value-content6 h3,
  .value-content7 h3 {
    font-size: 16px;
    margin-top: 7px;
  }

  .value-header img,
  .value-header1 img,
  .value-header2 img,
  .value-header3 img,
  .value-header4 img,
  .value-header5 img,
  .value-header6 img,
  .value-header7 img {
    max-width: 60px;
    height: auto;
  }

  .value-description,
  .value-description1,
  .value-description2,
  .value-description3,
  .value-description4,
  .value-description5,
  .value-description6,
  .value-description7 {
    font-size: 14px;
  }

  .value-list,
  .value-list1,
  .value-list2,
  .value-list3,
  .value-list4,
  .value-list5,
  .value-list6,
  .value-list7 {
    font-size: 14px;
  }

  .backButton,
  .nextButton {
    top: 150px;
  }
}

@media (max-width: 600px) {
  .values-section {
    padding: 0px 40px 40px 20px;
    height: auto;
  }

  .value-details,
  .value-details1,
  .value-details2,
  .value-details3,
  .value-details4,
  .value-details5,
  .value-details6,
  .value-details7 {
    margin-top: -20px;
  }

  .values-title,
  .values-title1,
  .values-title2,
  .values-title3,
  .values-title4,
  .values-title5,
  .values-title6,
  .values-title7 {
    font-size: 20px;
    text-align: start;
  }

  .value-content h3,
  .value-content1 h3,
  .value-content2 h3,
  .value-content3 h3,
  .value-content4 h3,
  .value-content5 h3,
  .value-content6 h3,
  .value-content7 h3 {
    font-size: 14px;
    text-align: center;
    margin-left: 0;
  }

  .value-description,
  .value-description1,
  .value-description2,
  .value-description3,
  .value-description4,
  .value-description5,
  .value-description6,
  .value-description7 {
    font-size: 12.5px;
    text-align: justify;
  }

  .value-list,
  .value-list1,
  .value-list2,
  .value-list3,
  .value-list4,
  .value-list5,
  .value-list6,
  .value-list7 {
    font-size: 12.5px;
  }

  .backButton,
  .nextButton {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    position: absolute;
    font-size: 28px;
    padding: 10px;
    color: #e64626;
    background: transparent;
    border: none;
    /* z-index: 1; */
  }

  .backButton {
    left: 1%;
  }

  .nextButton {
    right: 1%;
  }
}

/*============Industries================*/
body {
  margin: 0;
  background-color: #1a1d21;
  font-family: 'Montserrat';
  color: #ccc;
}

.container_00 {
  max-width: 1400px;
  margin: auto;
  /* padding: 20px 20px; */
  padding: 40px 80px;
}

/* .breadcrumb {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 16px;
}

.breadcrumb span {
  color: #E57200;
} */

.highlight_1 {
  color: #e64626;
}

.content-section_1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.content-section_1 .text-section_1 {
  flex: 1;
  margin-left: 0;
  min-width: 250px;
  /* padding-left: 60px; */
}

.heading-orange_1 {
  font-size: 28px;
  color: #e64626;
  text-align: left;
  font-family: 'Montserrat';
}

.heading-light_1 {
  font-size: 28px;
  color: #b0b0b0;
  text-align: left;
  margin-top: -20px;
  font-family: 'Montserrat';
}

.image-section_1 {
  /* flex: 1; */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}

.image-section_1 img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  /* margin-right: 50px; */
  opacity: 0.7;
}

@media (max-width: 1000px) {
  .container_00 {
    padding: 40px;
  }

  .heading-orange_1,
  .heading-light_1 {
    font-size: 28px;
  }

  .text-section_1 {
    margin-left: 0px;
    margin-top: 50px;
    padding-left: 20px;
  }


  .content-section_1 .image-section_1 img {
    max-height: 300px;
    margin-right: 20px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 599px) {
  .container_00 {
    padding: 20px 20px 0 20px;
  }

  .content-section_1 {
    flex-direction: column;
    /* stack vertically */
    text-align: center;
    position: relative;
  }

  .text-section_1 {
    margin: 10px 0 -20px 0;
    padding-left: 0;
    position: relative;
    align-self: anchor-center;
    justify-self: anchor-center;
  }

  .heading-orange_1,
  .heading-light_1 {
    text-align: center;
    font-size: 28px;
    margin-top: 0;
  }

  .image-section_1 {
    padding-right: 0;
  }

  .content-section_1 .image-section_1 {
    display: flex;
  }

  .content-section_1 .image-section_1 img {
    max-height: 400px;
    margin-right: 0;
  }
}

/* Small Phones (≤480px) */
@media (max-width: 599px) {
  .heading-orange_1 {
    font-size: 28px;
  }

  .heading-light_1 {
    font-size: 28px;
    margin-top: -15px;
  }

  .image-section_1 {
    display: none;
  }
}

/* ======Industries sec2======= */
.container_1 {
  max-width: 1400px;
  margin-left: 10px;
  margin: auto;
  /* padding: 20px 20px; */
  padding: 20px 80px;
}

/* .breadcrumb_1 {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 30px;
}

.breadcrumb_1 span {
  color: #E57200;
} */

h1 {
  font-size: 28px;
  margin-top: 0;
  color: #ccc;
  text-align: center;
  font-family: 'Montserrat';
}

.highlight_1 {
  color: #e64626;
}

/* h1, .subheading_1 {
  text-align: center;
} */
.subheading_1 {
  font-size: 22px;
  margin-top: -20px;
  color: #ccc;
  text-align: center;
}

.content_1 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
  align-items: flex-start;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.content_1:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.dicom-box_1 {
  background-color: #1A1F25;
  padding: 0px 30px;
  border-radius: 20px;
  flex: 1;
  min-width: 100px;
  max-width: 500px;
  color: #fff;
}

.dicom-box_1 h3 {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Montserrat';
  color: #d9d9d9
}

.dicom-box_1 ol {
  padding-left: 12px;
  line-height: 1.6;
  list-style: disc;
  font-size: 14px;
  padding-top: 2px;
  padding-bottom: 20px;
  font-family: 'Montserrat';
  color: #BFBFBF
}

li::marker {
  color: #e64626;
}

.image_1 {
  flex: 2;
  min-width: 250px;
}

.image_1 img {
  width: 100%;
  /* height: 400px; */
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

/* Tablets (up to 1024px) */
@media (max-width: 1000px) {
  .container_1 {
    padding: 0px 40px 40px 40px;
  }

  h1 {
    font-size: 28px;
  }

  .subheading_1 {
    font-size: 22px;
  }

  .dicom-box_1 {
    /* padding: 20px; */
    max-width: 100%;
    background: none;
  }

  .dicom-box_1 h3 {
    font-size: 18px;
  }

  .content_1 {
    gap: 20px;
    background: #1A1F25;
    border-radius: 10px;
  }

  .image_1 img {
    max-height: 350px;
    box-shadow: none;
  }

  .image_1 {
    padding: 20px 20px 0 0;
    display: none;
  }

  .dicom-box_1 ol {
    font-size: 14px;
  }
}

/* Mobile (up to 768px) */
@media (max-width: 599px) {
  .container_1 {
    padding: 0px 20px 20px 20px;
  }

  .content_1 {
    flex-direction: column;
    /* stack vertically */
    align-items: center;
    text-align: center;
  }

  h1 {
    font-size: 28px;
  }

  .subheading_1 {
    font-size: 18px;
    margin-top: -20px;
  }

  .dicom-box_1 {
    text-align: left;
  }

  .dicom-box_1 h3 {
    text-align: center;
  }

  .image_1 img {
    max-height: 300px;
  }
}

/* Small phones (up to 480px) */
@media (max-width: 599px) {
  h1 {
    font-size: 28px;
  }

  .content-section_1 {
    gap: 10px;
  }

  .subheading_1 {
    font-size: 22px;
  }

  .dicom-box_1 {
    /* padding: 15px; */
    font-size: 14px;
  }

  .dicom-box_1 h3 {
    font-size: 14px;
    margin: 20px 0px;
  }

  .dicom-box_1 ol {
    font-size: 12.5px;
  }

  .image_1 img {
    max-height: 250px;
  }
}

/* ======Industries sec3======= */
body {
  margin: 0;
  padding: 0;
  background-color: #1a1d21;
  font-family: 'Montserrat';
  color: #ccc;
}

.container_2 {
  max-width: 1400px;
  margin: auto;
  /* padding: 0px 20px; */
  padding: 20px 80px;
}

/* .breadcrumb_2 {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 30px;
}

.breadcrumb_2 span {
  color: #E57200;
} */

.heading_2 {
  text-align: center;
  margin-bottom: 20px;
}

.heading_2 h1 {
  font-size: 28px;
  margin: 0;
}

.highlight_2 {
  color: #e64626;
}

.subheading_2 {
  font-size: 25px;
  color: #d9d9d9;
  margin-top: 10px;
  font-family: 'Montserrat';
}

.image-box_2 {
  background-color: #1A1F25;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.image-box_2:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.image-box_2 img {
  width: 100%;
  max-width: 1200px;
  border-radius: 10px;
  /* box-shadow: 0 0 12px rgba(255, 255, 255, 0.1); */
}

/* Tablets (up to 1024px) */
@media (max-width: 1000px) {
  .container_2 {
    padding: 0 40px;
  }

  .heading_2 h1 {
    font-size: 24px;
  }

  .subheading_2 {
    font-size: 28px;
  }

  .image-box_2 {
    padding: 15px;
  }

  .image-box_2 img {
    max-width: 900px;
  }
}

/* Mobile (up to 768px) */
@media (max-width: 599px) {
  .container_2 {
    padding: 20px;
  }

  .heading_2 h1 {
    font-size: 22px;
  }

  .subheading_2 {
    font-size: 18px;
  }

  .image-box_2 {
    padding: 10px;
  }

  .image-box_2 img {
    max-width: 100%;
  }
}

/* Small phones (up to 480px) */
@media (max-width: 599px) {
  .heading_2 h1 {
    font-size: 20px;
  }

  .subheading_2 {
    font-size: 16px;
  }

  .image-box_2 img {
    border-radius: 6px;
  }
}

/* ======Industries sec4======= */

body {
  margin: 0;
  font-family: 'Montserrat';
  background-color: #0f1219;
  color: white;
}

.container_3 {
  /* padding: 20px; */
  padding: 20px 80px;
  max-width: 1400px;
  margin: auto;
}

/* .breadcrumb_3 {
  padding: 10px 0;
  color: #ccc;
} */

.highlight_3 {
  color: #e64626;
}

.title_3 {
  text-align: center;
  font-size: 28px;
  margin: 20px 0;
  font-family: 'Montserrat';
}

.orange_3 {
  color: #e64626;
}

.light_3 {
  color: #bfbfbf;
}

.content-section_3 {
  display: flex;
  /* justify-content: flex-start; */
  justify-content: center;
  padding: 20px;
  background-color: #1A1F25;
  border-radius: 20px;
  gap: 40px;
  flex-wrap: wrap;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.content-section_3:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.image-section_3 {
  flex: 1;
  width: 50%;
}

.image-section_3 img {
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.text-section_3 {
  max-width: 50%;
  padding-top: 0px 10px;
}

.description_3 {
  color: #bfbfbf;
  font-size: 15px;
  /* line-height: 1.6; */
  margin-bottom: 20px;
  font-family: 'Montserrat';
  text-align: justify;
}

.applications_3 .apps-title_3 {
  /* text-decoration: underline; */
  color: #bfbfbf;
  font-size: 14px;
  font-family: 'Montserrat';
  margin-bottom: 10px;
  margin-left: 5px;
}

.apps-list_3 {
  list-style: disc;
  padding: 0px 20px;
  font-size: 14px;
  font-family: 'Montserrat';
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #BFBFBF;
}

.apps-list_3 li::marker {
  color: #bfbfbf;
  /* bullet color */
}

.apps-list_3 li {
  font-size: 15px;
  color: #bfbfbf;

  /* margin-bottom: 10px; */
}

/* Tablets (≤1024px) */
@media (max-width: 1000px) {
  .container_3 {
    padding: 40px;

  }

  .title_3 {
    font-size: 28px;
  }

  .content-section_3 {
    flex-direction: row;
    display: flex;
    gap: 20px;
    /* margin: 0 15px; */
    padding: 20px 20px;
  }

  .image-section_3 img {
    width: 100%;
    margin: 20px 0 0 0;
  }

  .text-section_3 {
    width: 50%;
  }

  .description_3 {
    font-size: 14px;
  }

  .apps-list_3 li {
    font-size: 14px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 599px) {
  .container_3 {
    padding: 20px;
  }

  .content-section_3 {
    flex-direction: column;
    /* stack image and text */
    align-items: center;
    text-align: center;
  }

  .title_3 {
    font-size: 18px;
  }

  .description_3 {
    font-size: 12.5px;
  }

  .apps-title_3 {
    font-size: 18px;
  }

  .apps-list_3 li {
    font-size: 13px;
  }

  .text-section_3 {
    width: 100%;
    max-width: 100%;
  }
}

/* Small Phones (≤480px) */
@media (max-width: 599px) {
  .title_3 {
    font-size: 16px;
  }

  .content-section_3 {
    /* margin: 0 10px; */
    padding: 20px;
    gap: 15px;
  }

  .image-section_3 {
    width: 80%;
  }

  .image-section_3 img {
    width: 100%;
  }

  .description_3,
  .apps-list_3 li {
    font-size: 12.5px;
    text-align: left;
  }

  .apps-title_3 {
    font-size: 16px;
    text-align: left;
  }

  .applications_3 .apps-title_3 {
    font-size: 12.5px;
  }
}



/* ======Industries sec5======= */

.container_4 {
  padding: 20px 80px;
  max-width: 1400px;
  margin: auto;
}

/* .breadcrumb_4 {
  color: #ccc;
  margin-top: 10px;
  margin-bottom: 80px;
} */

.highlight_4 {
  color: #e64626;
}

.content-section_4 {

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.text-section_4 {
  flex: 1;
  margin-left: 50px;
  min-width: 250px;
  padding-left: 10px;
}

.heading-orange_4 {
  font-size: 28px;
  color: #e64626;
  text-align: left;
  font-family: 'Montserrat';
}

.heading-light_4 {
  font-size: 28px;
  color: #b0b0b0;
  text-align: left;
  margin-top: -20px;
  font-family: 'Montserrat';
}

.image-section_4 {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}

.image-section_4 img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  /* margin-right: 50px; */
  opacity: 0.7;

}

/* Tablets (≤1024px) */
@media (max-width: 1000px) {
  .container_4 {
    padding: 40px 40px 0 40px;
  }

  .heading-orange_4,
  .heading-light_4 {
    font-size: 28px;
    width: 300px;
  }

  .text-section_4 {
    margin-left: 20px;
    margin-top: 50px;
  }

  .image-section_4 img {
    max-height: 300px;
    margin-right: 20px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 599px) {
  .container_4 {
    padding: 20px;
  }

  .content-section_4 {
    flex-direction: column;
    /* stack vertically */
    text-align: center;
    position: relative;
  }

  .text-section_4 {
    margin-left: 0;
    padding-left: 0;
    position: absolute;
    align-self: anchor-center;
    justify-self: anchor-center;
  }

  .heading-orange_4,
  .heading-light_4 {
    text-align: center;
    font-size: 28px;
    margin-top: 0;
  }

  .image-section_4 {
    justify-content: center;
    padding-right: 0;
    /* margin-top: -220px; */
  }

  .image-section_4 img {
    max-height: 250px;
    width: auto;
    margin-right: 0;
  }
}

/* Small Phones (≤480px) */
@media (max-width: 599px) {
  .heading-orange_4 {
    font-size: 18px;
  }

  .heading-light_4 {
    font-size: 18px;
    margin-top: -15px;
  }

  .image-section_4 img {
    height: auto;
  }
}

/* ======Industries sec6======= */
.container_5 {
  /* padding: 20px 20px; */
  padding: 20px 80px;
  max-width: 1400px;
  margin: auto;
}

.highlight_5 {
  color: #E57200;
}

.title_5 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.orange_5 {
  color: #e64626;
}

.light_5 {
  color: #b0b0b0;
  font-weight: 300;
}

.card_5 {
  background-color: #1A1F25;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  box-sizing: border-box;
  /* ensures padding is respected */
  overflow: hidden;
  /* prevents content overflow */
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.card_5:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.text-section_5 {
  flex: 1;
  min-width: 280px;
  max-width: 100%;
  /* keep inside card */
}

.subtitle_5 {
  color: #bfbfbf;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 20px;
  font-family: 'Montserrat';
}

.features_5 {
  list-style: disc;
  padding-left: 20px;
  color: #bfbfbf;
  font-size: 15px;
  line-height: 1.8;
  font-family: 'Montserrat';
}

.features_5 li::marker {
  color: #e64626;
  font-size: 16px;
}

.image-section_5 {
  flex: 1;
  min-width: 300px;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.image-section_5 img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Tablets (≤1024px) */
@media (max-width: 1000px) {
  .container_5 {
    padding: 0 40px 40px 40px;
  }

  .title_5 {
    font-size: 24px;
  }

  .card_5 {
    padding: 30px;
  }

  .subtitle_5 {
    font-size: 18px;
  }

  .features_5 {
    font-size: 14px;
  }

  .image-section_5 img {
    max-width: 400px;
  }
}

/* Mobiles (≤768px) */
@media (max-width: 599px) {
  .container_5 {
    padding: 20px;
  }

  .card_5 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .text-section_5,
  .image-section_5 {
    min-width: unset;
    max-width: 100%;
  }

  .text-section_5 {
    margin-bottom: 20px;
  }

  .title_5 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .subtitle_5 {
    font-size: 14px;
  }

  .features_5 {
    font-size: 12.5px;
    line-height: 1.6;
    padding-left: 15px;
    text-align: left;
  }

  .image-section_5 img {
    max-width: 90%;
  }
}

/* Small Phones (≤480px) */
@media (max-width: 599px) {
  .title_5 {
    font-size: 20px;
  }

  .subtitle_5 {
    font-size: 14px;
  }

  .features_5 {
    font-size: 12.5px;
  }

  .card_5 {
    padding: 15px;
  }

  .image-section_5 img {
    max-width: 100%;
  }
}


/* ======Industries sec8======= */
.container_7 {
  /* padding: 20px; */
  padding: 20px 80px;
  max-width: 1400px;
  margin: auto;
}

.highlight_7 {
  color: #e64626;
}

.hero-section_7 {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  /* full screen */
}

.hero-img_7 {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
  display: block;
}

.overlay_7 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.1) 100%); */
  align-items: center;
  /* height: 100%; */
  height: 100%;
  width: 100%;
  align-self: anchor-center;
}

.textArea {
  text-align: left;
  /* margin-top: 150px; */
  margin-left: 50px;
}

.title_7 {
  font-size: 28px;
  margin: 0;
  color: #e64626;
  font-family: 'Montserrat';
}

.subtitle_7 {
  font-size: 28px;
  color: #d9d9d9;
  margin-top: 10px;
  font-family: 'Montserrat';
}

/* ✅ Tablet (768px – 1024px) */
@media (max-width: 1000px) {
  .container_7 {
    padding: 20px;
  }

  .hero-section_7 {
    height: fit-content;
    /* slightly smaller */
  }

  .textArea {
    margin-top: 0px
  }

  .title_7 {
    font-size: 28px;
  }

  .subtitle_7 {
    font-size: 28px;
  }
}

/* ✅ Mobile (max 768px) */
@media (max-width: 599px) {
  .container_7 {
    padding: 20px;
  }

  .hero-section_7 {
    height: fit-content;
    /* reduce height */
  }

  .hero-img_7 {
    width: 100%;
    /* height: 100%; */
    height: 200px;
    object-fit: cover;
    display: block;
  }

  .overlay_7 {
    justify-content: center;
    /* center text */
    text-align: center;
    height: 100%;
  }

  .textArea {
    margin: 0;
    padding: 10px;
    text-align: center;
    font-weight: bold;
  }

  .title_7 {
    font-size: 18px;
  }

  .subtitle_7 {
    font-size: 18px;
  }
}


/* ======Industries sec9======= */

.container_9 {
  /* padding: 20px; */
  padding: 20px 80px;
  max-width: 1400px;
  margin: auto;
}

/* .breadcrumb_9 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ccc;
} */

.highlight_9 {
  color: #e64626;
}

.heading_9 {
  font-size: 34px;
  font-weight: normal;
  color: #BFBFBF;
  margin-bottom: 30px;
}

.content_9 {
  background-color: #1A1F25;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.content_9:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.left-panel_9 {
  margin-left: 6%;
  margin-top: 2%;
}

.subheading_9 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #bfbfbf;
  font-family: 'Montserrat';
  font-style: italic;
}

.product-list_9 {
  list-style: disc;
  font-family: 'Montserrat';
  padding-left: 30px;
  color: #bfbfbf;
  font-size: 14px;
}

.product-list_9 li::marker {
  color: #e64626;
}

.product-list_9 li {
  margin-bottom: 15px;
}

.image-section_9 {
  flex: 2 1 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image_9 {
  margin-left: 12%;
  margin-top: 1%;
  height: 400px;
  border-radius: 10px;
}

/* ✅ Tablet view */
@media (max-width: 1000px) {
  .container_9 {
    padding: 40px;
  }

  .heading_9 {
    font-size: 28px;
  }

  .subheading_9 {
    font-size: 18px;
  }

  .main-image_9 {
    height: 220px;
    margin-left: 0;
  }

  .left-panel_9 {
    margin-left: 3%;
  }

  .product-list_9 {
    font-size: 14px;
  }
}

/* ✅ Mobile view */
@media (max-width: 599px) {
  .container_9 {
    padding: 20px;
  }

  .content_9 {
    flex-direction: column;
    /* stack items */
    text-align: center;
  }

  .left-panel_9 {
    margin: 0;
    padding: 10px 0;
    text-align: center;
  }

  .product-list_9 {
    padding-left: 0;
    list-style-position: inside;
    text-align: left;
    margin-top: 20px;
    font-size: 12.5px;
  }

  .main-image_9 {
    height: 220px;
    width: 100%;
    margin: 0;
    object-fit: contain;
  }

  .heading_9 {
    font-size: 22px;
  }

  .subheading_9 {
    font-size: 14px;
  }
}


/* ==================Industries sec9_1============================= */
.content_9_1 {
  background-color: #1A1F25;
  border-radius: 20px;
  padding: 20px;
  margin-top: 3%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.content_9_1:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.left-panel_9_1 {
  flex: 1 1 300px;
  margin: 30px 40px;
}

.subheading_9_1 {
  font-size: 18px;
  width: 100%;
  margin-bottom: 10px;
  color: #bfbfbf;
  font-style: italic;
  font-family: 'Montserrat';
}

.description_9_1 {
  font-size: 13px;
  line-height: 1.7;
  color: #bfbfbf;
  ;
  width: 100%;
  font-family: 'Montserrat';
}

.image-section_9_1 {
  flex: 2 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 60px 0;
}

.main-image_9_1 {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 1000px) {
  .subheading_9_1 {
    font-size: 18px;
  }

  .description_9_1 {
    font-size: 14px;
  }

  .main-image_10 {
    max-height: 250px;
  }
}

/* Mobile Fix */
@media (max-width: 599px) {

  .subheading_9_1,
  .description_9_1 {
    width: 100%;
    word-wrap: break-word;
    text-align: left;
  }

  .subheading_9_1 {
    font-size: 14px;
  }

  .description_9_1 {
    font-size: 12.5px;

  }

  .content_9_1 {
    flex-direction: column;
    text-align: center;
    /* padding: 0; */
  }

  .image-section_9_1 {
    flex: none;
  }

  .left-panel_9_1 {
    flex: none;
    margin: 10px;
  }
}


/* .section_10_0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
  background-image: url('Resources/Robotics\ Background.svg');
  background-repeat: no-repeat;
} */

.section_10_0 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
  max-width: 1400px;
  margin: auto;
}

.section_10_0::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("Resources/Robotics Background.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: -1;
}

.text-content_10_0 {
  flex: 1;
}

.text-content_10_0 h1 {
  font-size: 28px;
  font-weight: bold;
  text-align: left;
  font-family: 'Montserrat';
  padding-left: 60px;
}

.text-content_10_0 span {
  color: #ff4b2b;
}

.image-content_10_0 {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-content_10_0 img {
  max-width: 100%;
  border-radius: 10px;
}

@media (max-width: 1000px) {
  .section_10_0 {
    flex-direction: row;
    text-align: center;
    padding: 60px 24px;
  }

  /* .image-content_10_0 {
    margin-top: 40px;
  } */

  .text-content_10_0 h1 {
    font-size: 28px;
    text-align: center;
    padding: 0;
  }

  .image-content_10_0 img {
    max-width: 100%;
    border-radius: 10px;
  }
}

@media (max-width: 599px) {
  .section_10_0 {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    background-position: center
  }

  .text-content_10_0 h1 {
    font-size: 18px;
  }

  .image-content_10_0 img {
    max-width: 100%;
    border-radius: 10px;
  }
}

/* ======Industries sec10======= */
.container_10 {
  /* padding: 20px; */
  padding: 20px 80px;
}

/* .breadcrumb_10 {
  font-size: 14px;
  margin-bottom: 10px;
  color:#F2F2F2;
} */

.highlight_10 {
  color: #e64626;
}

.subdued_10 {
  color: #F2F2F2;
  font-weight: lighter;
}

.heading_10 {
  font-size: 32px;
  font-weight: normal;
  color: #F2F2F2;
  margin-bottom: 30px;
}

.content_10 {
  background-color: #1A1F25;
  border-radius: 20px;
  /* padding: 0px 20px; */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
  max-width: 1400px;
  margin: auto;
}

.content_10:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.left-panel_10 {
  flex: 1 1 300px;
  margin: 30px 40px;
}

.subheading_10 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #bfbfbf;
  font-family: 'Montserrat';
  font-style: italic;
  /* text-decoration: none; */
}

.description_10 {
  font-size: 14px;
  line-height: 1.7;
  color: #bfbfbf;
  width: 100%;
  text-align: justify;
}

.image-section_10 {
  flex: 2 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image_10 {
  max-width: 100%;
  max-height: 350px;
  border-radius: 10px;
  padding: 20px;
}

/* 📱 Tablet screens */
@media (max-width: 1000px) {
  .container_10 {
    padding: 40px;
  }

  .heading_10 {
    font-size: 28px;
  }

  .subheading_10 {
    font-size: 18px;
  }

  .content_10 {
    flex-direction: row;
    align-items: center;
    padding: 20px;
  }

  .left-panel_10 {
    margin: 20px;
    display: contents;
  }

  .main-image_10 {
    max-height: 300px;
    padding: 0 20px 20px 20px;
  }

  .description_10 {
    font-size: 14px;
    flex: 0 0 55%;
    align-self: flex-start;
  }

  .image-section_10 {
    flex: 1;
  }
}

/* 📱 Mobile screens */
@media (max-width: 600px) {
  .container_10 {
    padding: 20px;
  }

  .heading_10 {
    font-size: 22px;
  }

  .subheading_10 {
    font-size: 14px;
  }

  .main-image_10 {
    max-width: 100%;
    height: auto;
  }

  .description_10 {
    width: 100%;
    text-align: justify;
    font-size: 12.5px;
    flex: auto;
  }

  .image-section_10 {
    flex: auto;
  }
}


/* ======Industries sec11======= */
.container_11 {
  /* padding: 20px; */
  padding: 20px 80px;
  max-width: 1400px;
  margin: auto;
}

.content_11 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  /* margin: 20px; */
  border-radius: 20px;
  gap: 40px;
  background-color: #1A1F25;
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.content_11:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Text column */
.left-panel_11 {
  flex: 1 1 40%;
  margin: 30px 40px;
}

.subheading_11 {
  font-size: 18px;
  color: #bfbfbf;
  font-family: 'Montserrat';
  font-style: italic;
}

/* Image column */
.image-section_11 {
  flex: 1 1 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image_11 {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

.integration-list_11 {
  list-style: disc;
  font-family: 'Montserrat';
  padding-left: 30px;
  color: #bfbfbf;
  font-size: 14px;
  line-height: 1.7;
}

.integration-list_11 li::marker {
  color: #e64626;
}

/* 📱 Tablet View (769px – 1024px) */
@media (max-width: 1000px) {
  .container_11 {
    padding: 0 40px 40px 40px;
  }

  .content_11 {
    flex-direction: row;
    /* stay side by side */
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .left-panel_11 {
    flex: 1 1 45%;
    margin: 0;
  }

  .image-section_11 {
    flex: 1 1 50%;
  }

  .main-image_11 {
    max-width: 380px;
    /* keeps it balanced */
  }
}


/* 📱 Mobile View (≤768px) */
@media (max-width: 599px) {
  .container_11 {
    padding: 20px;
  }

  .content_11 {
    flex-direction: column;
    /* stack text above image */
    align-items: left;
    text-align: left;
  }

  .left-panel_11 {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .image-section_11 {
    flex: 1 1 100%;
  }

  .main-image_11 {
    max-width: 100%;
  }
}

/* 📱 Mobile view */
@media (max-width: 600px) {
  .heading_11 {
    font-size: 22px;
  }

  .subheading_11 {
    font-size: 14px;
  }

  .integration-list_11 {
    font-size: 12.5px;
    padding-left: 15px;
  }

  .integration-list_11 li {
    margin-bottom: 8px;
  }

  .main-image_11 {
    max-width: 90%;
    height: auto;
  }

  .image-section_11 {
    flex: none;
  }

  .left-panel_11 {
    margin: 0 0 -20px 0;
    text-align: left;
  }
}


/*============Technology================*/

.container_0 {
  background-image: url('Resources/Technology_Background.svg');
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 0;
  margin-top: 20px;
  box-sizing: border-box;
}

.breadcrumb_0 {
  padding: 20px;
  font-size: 16px;
}

.breadcrumb_0 span {
  color: #e64626;
}

.main_0 {
  margin-top: -90px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 40px 120px;
  flex-wrap: wrap;
}

.heading_0 h1 {
  font-size: 28px;
  line-height: 1.2;
  text-align: left;
  margin-top: 30%;
}

.heading_1 {
  display: none;
}

.orange_0 {
  color: #e64626;
}

.cube-section_0 {
  /* margin-top: 100px; */
  /* margin-right: 200px; */
  position: relative;
}

.cube-img_0 {
  width: 100%;
  max-width: 650px;
  display: block;
  margin: 15% 0 0 0;
}

.tag {
  position: absolute;
  color: #ffffff;
  font-size: 16px;
  white-space: nowrap;
}

.tag::before {
  content: "• ";
  color: #e64626;
}


@media (max-width: 1000px) {
  .main_0 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -40px;
    padding: 20px 30px;
    text-align: center;
  }

  .heading_0 {
    display: none;
  }

  .heading_1 {
    display: block;
  }

  .heading_1 h1 {
    font-size: 28px;
    margin: 20px auto;
    text-align: center;
  }

  .cube-section_0 {
    margin: 40px auto 0 0;
    margin-right: 0;
    padding-bottom: 20px;
  }

  .cube-img_0 {
    width: 100%;
    max-width: 550px;
    display: block;
    margin: auto;
  }
}

@media (max-width: 599px) {
  .heading_1 h1 {
    font-size: 18px;
    line-height: 1.3;
  }

  .breadcrumb_0 {
    font-size: 14px;
    padding: 15px;
    text-align: center;
  }

  .cube-img_0 {
    max-width: 350px;
  }

  .tag {
    font-size: 14px;
  }

  .cube-img_0 {
    width: 100%;
    max-width: 550px;
    display: block;
    margin: auto;
  }
}

@media (max-width: 599px) {
  .main_0 {
    padding: 20px;
  }

  .heading_1 h1 {
    font-size: 18px;
  }

  .cube-img_0 {
    max-width: 280px;
  }

  .breadcrumb_0 {
    font-size: 12px;
  }

  .tag {
    font-size: 12px;
  }

  .cube-img_0 {
    width: 100%;
    max-width: 550px;
    display: block;
    margin: auto;
  }
}

/* ===========================Career Page ==========================================*/
/* HERO SECTION */
.heroCareer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 100px 40px 100px;
  /* background: radial-gradient(circle at top left, #1a1f25 0%, #0d1117 70%); */
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;

  max-width: 1400px;
  margin: auto;
}

.hero-textCareer {
  max-width: 600px;
  flex: 1;
  animation: fadeInLeft 1s ease-in-out;
}

.heroCareer h1 {
  font-size: 28px;
  color: #d9d9d9;
  text-align: left;
  font-family: 'Montserrat';
}

.orange {
  color: #e64626;
}

.orange1 {
  color: #EF6C13;
  font-family: 'Montserrat';
}

.white {
  color: #999999;
}

.white1 {
  color: #999999;
  font-family: 'Montserrat';
}

.heroCareer p {
  margin-top: 15px;
  color: #bfbfbf;
  line-height: 1.6;
  font-family: 'Montserrat';
  font-size: 14px;
  text-align: justify;
}

.hero-imageCareer {
  height: 300px;
  /* animation: fadeInRight 1s ease-in-out; */
}

/* .btn-ExplorerCareer {
    margin-top: 30px;
    display: inline-block;
    border: 2px solid #e24c0e;
    color: #e24c0e;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  } 
      .btn-ExplorerCareer:hover {
    background-color: #e24c0e;
    color: #fff;
    box-shadow: 0 0 20px rgba(226,76,14,0.7);
  } */

.btn-ExplorerCareer {
  margin-top: 30px;
  /* margin-left: 60px; */
  display: inline-block;
  border-color: white;
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: transparent;
  cursor: pointer;
  font-family: 'Montserrat';
}

.btn-ExplorerCareer:hover {
  background-color: #e64626;
}

/* WHY US */
.why-us {
  /* background-color: #0d1117; */
  padding: 30px 10px 50px 10px;
  margin: auto;
  max-width: 1400px;
}

.section-title {
  font-size: 28px;
  color: #D9D9D9;
  margin-bottom: 40px;
  text-align: center;
  font-family: 'Montserrat';
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0px 80px;
}

.why-card {
  background-color: #1A1F25;
  border: 1px solid rgba(31, 30, 30, 0.2);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.4s ease;
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.why-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.why-card-header img {
  height: 30px;
}

.why-card h3 {
  color: #BFBFBF;
  font-style: italic;
  margin-bottom: 10px;
  font-size: 15px;
}

.why-card p {
  font-size: 12.5px;
  color: #BFBFBF;
  font-family: 'Montserrat';
  text-align: justify;
}

.openings {
  padding: 0 80px 40px 80px;
  /* background-color: #0d1117; */
  max-width: 1400px;
  margin: auto;
}

.job-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.job_card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  /* prevent right part from wrapping below */
  background: #1A1F25;
  transition: all 0.4s ease;
  border-radius: 15px;
  padding: 30px 25px;
  min-height: 210px;
  margin-bottom: 20px;
  width: 100%;
  gap: 20px;
  /* add spacing between left and right parts */
}

.job_card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.job_card_Left {
  flex: 1 1 50%;
}

.job_card_Left h3 {
  color: #e64626;
  font-style: italic;
  margin-bottom: -10px;
  padding-top: 15px;
  font-family: 'Montserrat';
}

.job_card_Left p {
  color: #bfbfbf;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: -10px;
  font-family: 'Montserrat';
}

.job_card_Right {
  flex: 0 0 50%;
  /* fix width for right panel */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
}

.job_card_Right img {
  width: 100%;
  height: auto;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.job_card_Right img.visible {
  opacity: 1;
  max-height: 100%;
  /* adjust based on your image height */
  margin-top: 15px;
}

.required_skill {
  padding-top: 15px;

}

.required_skill::before {
  content: "•";
  font-weight: bolder;
  font-size: 28px;
  margin-right: 0.5rem;
  color: #bfbfbf;
}

.hard_list {
  margin-left: 20px;
  font-size: 13px;

}

.soft_list {
  margin-left: 20px;
  font-size: 13px;
}

.Hard_skill::before {
  content: "•";
  font-weight: bolder;
  font-size: 28px;
  margin-right: 0.5rem;
}

.Hard_skill {
  margin-left: 15px;
  font-size: 13px;
}

.Soft_skill {
  margin-left: 15px;
  font-size: 13px;
}

.responsibility_Li {
  margin-left: 18px;
}

.Soft_skill::before {
  content: "•";
  font-weight: bolder;
  font-size: 28px;
  margin-right: 0.5rem;
}

.responsibility_class ::before {
  content: "•";
  font-weight: bolder;
  font-size: 28px;
  margin-right: 0.5rem;
  color: #bfbfbf;
}


.required_skill_sales {
  padding-top: 10px;
}

.job_card_Left li {
  margin-left: -22px;
  font-size: 13px;
  line-height: 1.5;
  list-style: disc;
  color: #bbb;
}

.Description_Para {
  min-height: 50px;
  padding-bottom: 0px;
}

.buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  margin-left: 0;
  margin-right: 200px;
  /* removed fixed positioning */
  position: relative;
  z-index: 1;
}

.btn_Read_more {
  color: #bfbfbf;
  font-size: 14px;
  /* font-weight: bold; */
  text-decoration: none;
  display: inline-block;
  margin-top: 50px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: 10px;
  font-family: 'Montserrat';
}

.btn_Read_more:hover {
  color: #e64626;
}

.btn-ApplyNow {
  margin-top: 50px;
  margin-left: 70px;
  display: inline-block;
  border-color: white;
  color: #D9D9D9;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  transition: all 0.3s ease;
  background-color: transparent;
  cursor: pointer;
  font-family: 'Montserrat';
}

.btn-ApplyNow:hover {
  background-color: #e64626;
  transform: scale(1.05);
}

.job-description {
  margin-top: 10px;
  transition: max-height 0.6s ease,
    opacity 0.6s ease;
  overflow: hidden;
  color: #bfbfbf;
  opacity: 1;
  margin-top: -20px;
  font-size: 15px;
}

.job-description.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.job-description.visible {
  max-height: 150px;
  opacity: 1;
}

.job-description li {
  font-size: 13px;
  color: #bfbfbf;
  margin-left: -10px;
  list-style: circle;
}

.job-description li::marker {
  color: #BFBFBF;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .heroCareer {
    padding: 80px 40px 0px 40px;
    flex-direction: row;
    text-align: center;
  }

  .heroCareer h1 {
    font-size: 28px;
  }

  .heroCareer p {
    font-size: 14px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-textCareer {
    max-width: 50%;
  }

  .hero-imageCareer {
    max-width: 40%;
  }

  .btn-ExplorerCareer {
    display: block;
  }

  .why-us,
  .openings,
  .apply-section {
    padding: 0px 40px 40px 40px;
  }

  .why-grid {
    padding: 0px;
    margin: 0px;
    gap: 50px;
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card h3 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 14px;
  }

  /* #why-usMobileSection {
    display: none;
  } */

  /* .job_card {
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 25px 20px;
    min-height: 240px;
    display: flow;
  } */

  .job_card {
    position: relative;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 25px 20px;
    min-height: 240px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flow;
  }

  .job_card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(Resources/Product_Background.svg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 0;
  }

  .job_card-bg-visible::before {
    opacity: 0.15 !important;
  }

  .job_card>* {
    position: relative;
    z-index: 1;
  }

  .job_card_Left {
    flex: 1 1 50%;
    min-width: 300px;
  }


  .job_card_Right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
  }

  .job_card_Right img {
    /* width: 100%;
    height: auto;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease; */
    display: none;
  }

  .job_card_Right img.visible {
    opacity: 1;
    /* max-height: 250px; */
    margin-top: 150px;
  }

  .why-us .section-title {
    font-size: 24px;
  }

  .openings .section-title {
    font-size: 24px;
  }

  /* keep buttons below the image on tablet */
  .buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-top: 20px;
    margin-right: 20px;
  }

  .btn_Read_more,
  .btn-ApplyNow {
    margin-top: 50px;
  }

  .job_card_Left h3 {
    font-size: 18px;
  }

  .job_card_Left p {
    font-size: 14px;
  }

  .hard_list {
    font-size: 14px;
  }

  .job-description li {
    font-size: 14px;
  }
}

@media (max-width: 599px) {
  .heroCareer h1 {
    font-size: 20px;
    text-align: center;
  }

  .heroCareer p {
    font-size: 12.5px;
  }

  .hero-textCareer {
    max-width: 600px;
    animation: fadeInLeft 1s ease-in-out;
  }

  .hero-imageCareer {
    display: none;
  }

  .why-us {
    display: none;
  }

  .why-card {
    transition: none;
  }

  .why-card h3 {
    font-size: 14px;
  }

  .why-card p {
    font-size: 12.5px;
  }

  .why-card:hover {
    transform: none;
    box-shadow: none;
  }

  .btn-ExplorerCareer {
    padding: 10px 24px;
    font-size: 0.9rem;
    display: inline;
  }

  .why-grid,
  .job-grid {
    gap: 20px;
  }

  .job_card_Left h3 {
    font-size: 14px;
    padding-top: 0;
  }

  .job-description p {
    font-size: 12.5px;
    margin-top: 0;
  }

  .job_card_Left p {
    font-size: 12.5px;
    text-align: justify;
  }

  .required_skill {
    padding-top: 20px;
  }

  .job-description.Hard_skill {
    margin-top: -20px;
  }

  .openings .section-title {
    font-size: 18px;
  }

  .apply-section p {
    font-size: 1rem;
  }

  .job_card {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 0;
  }

  .job_card_Left,
  .job_card_Right {
    flex: 1 1 100%;
  }

  .job_card_Right img {
    /* width: 90%;
    max-width: 350px; */
    display: none;
  }

  .job-description li {
    font-size: 12.5px;
  }

  .buttons {
    justify-content: center;
    align-items: center;
    margin: 25px 0 0 0;
  }

  .btn_Read_more,
  .btn-ApplyNow {
    margin-top: 20px;
  }
}

@media (max-width: 599px) {
  .heroCareer {
    padding: 30px 20px;
    text-align: center;
  }

  .hero-imageCareer {
    display: none;
  }

  .heroCareer h1 {
    font-size: 18px;
  }

  .why-us,
  .openings,
  .apply-section {
    padding: 10px 20px 20px 20px;
  }

  .why-us {
    display: none;
  }

  .skill-card1 {
    background: transparent;
    border-radius: 12px;
    padding: 5px;
    /* margin: 15px; */
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
  }

  .btn-ExplorerCareer {
    padding: 10px 22px;
    font-size: 13px;
    margin-top: 0px;
  }

  .why-card,
  .job_card {
    padding: 20px;
  }
}

/*========================= Product Page ================================== */

.Product-section h1 {
  color: #e64626;
  font-size: 28px;
  text-align: center;
  font-family: 'Montserrat';
  margin-top: 20px;
}

.container {
  /* background: black; */
  border-radius: 12px;
  max-width: 1100px;
  margin: auto;
  padding: 30px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.content {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  color: #d0d0d0;
}

.separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, #AFABAB, #767171);
  margin: 30px 0 0 0;
  /* padding: 0px 30px; */
  border-radius: 2px;
  scroll-margin-top: 40px
}

.description_product {
  background-color: #1A1F25;
  color: white;
  padding: 10px 50px;
  font-family: 'Montserrat';
  border-radius: 8px;
  width: fit-content;
  height: 345px;
}

.description_product h3 {
  font-size: 18px;
  margin-bottom: 25px;
  /* font-style: italic; */
}

.highlight_product {
  color: #e64626;
  font-weight: bold;
}

.title_product {
  color: #bfbfbf;
  font-weight: 600;
  /* margin-left: 10px; */
}

.list_description_product {
  list-style: disc;
  padding-left: 0;
  font-size: 13px;
  color: #BFBFBF;
  text-align: left;
}

.list_description_product li {
  position: relative;
  margin-bottom: 10px;
}

/* Custom orange bullet */
.list_description_product li::before {
  list-style: disc;
  color: #e64626;
  position: absolute;
  left: -20px;
  font-size: 12px;
  line-height: 1;
}

/* LEFT PANEL */
.left-panel {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: flex-start;
}

.image-box {
  animation: fadeInLeft 1s ease-in-out;
}

.image-box img {
  width: 40%;
  /* height: 75%; */
  border-radius: 10px;
  object-fit: cover;
  /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15); */
  display: block;
  justify-self: center;
  margin: auto;
}



/* RIGHT PANEL */
.right-panel {
  flex: 1.5;
  min-width: 350px;
  align-self: flex-start;
  display: block;
}

.read-more-btn {
  display: none;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;

  overflow-x: auto;
  /* Scroll horizontally */
  white-space: nowrap;
  /* Prevent wrapping */
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll for mobile */
  scrollbar-width: none;
  /* Hide scrollbar (Firefox) */
}

.tabs::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar (Chrome, Safari) */
}

.tab-button {
  flex: auto;
  /* Prevent buttons from shrinking */
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  background: #e6e6e6;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: 500;
  width: 100%;
  color: #000;
}

.tab-button:hover {
  background: #d0d0d0;
}

.tab-button.active {
  background: orangered;
  color: #fff;
}

.tab-content {
  display: none;
  background: #fafafa;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.6;
  height: 550px;
}

.tab-content.active {
  display: block;
  background-color: #1A1F25;
  /* background-color: transparent; */
  text-align: left;
  height: 530px;
}

.tab-content img {
  width: 100%;
  border-radius: 8px;
  /* margin-top: 10px; */
  align-self: anchor-center;
  margin: auto;
}

.coming-soon {
  height: -webkit-fill-available;
  width: -webkit-fill-available;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon h2 {
  color: #AFABAB;
  font-size: 2rem;
  font-weight: 550;
  letter-spacing: 2px;
  font-family: "Montserrat";
}

/* =====================Customer Pain Section=========================*/
#pain {
  font-family: 'Montserrat';
  color: #ffffff;
  padding: 5px 40px;
  border-radius: 10px;
  line-height: 1.7;
  height: 550px;
}

.pain-content ol {
  counter-reset: section;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  text-align: left;
  /* margin-top: -40px; */
}

.pain-content>ol>li {
  /* counter-increment: section; */
  list-style: disc;
  margin-bottom: 10px;
}

.pain-content>ol>li::marker {
  font-size: large;
}

.pain-content>ol>li::before {
  /* content: counter(section) "."; */
  font-weight: bold;
  margin-right: 10px;
  color: #ffffff;
  font-size: 1.2rem;
}

.pain-content strong em {
  font-weight: bold;
  font-style: italic;
  color: #BFBFBF;
  font-size: 14px;
}

.sub-points {
  margin-left: 20px;
  margin-top: 8px;
  /* font-style: italic; */
  color: #e0e0e0;
  font-size: 0.95rem;
}

.sub-points p {
  margin: 2px 0;
  font-size: 14px;
  color: #BFBFBF;
}

.orange_Integration_techno {
  color: #E64626;
  margin-right: 5px;
  font-size: 10px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(95px, 1fr));
  column-gap: 10px;
}


/*=====================================Customer Solution Section ================================== */
#solution {
  font-family: 'Montserrat';
  color: #ffffff;
  padding: 5px 40px;
  border-radius: 10px;
  line-height: 1.7;
  height: 550px;
}

.solution-content ol {
  counter-reset: section;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  text-align: left;
  /* margin-top: -40px; */
}

.solution-content>ol>li {
  /* counter-increment: section; */
  list-style: disc;
  margin-bottom: 10px;
}

.solution-content>ol>li::marker {
  font-size: large;
}

.solution-content>ol>li::before {
  /* content: counter(section) "."; */
  font-weight: bold;
  margin-right: 10px;
  color: #ffffff;
  font-size: 1.2rem;
}

.solution-content strong em {
  font-weight: bold;
  font-style: italic;
  color: #BFBFBF;
  font-size: 14px;
}


/*================================= Slideshow============================== */
.slideshow {
  position: relative;
  /* width: 100%; */
  height: 550px;
  overflow: hidden;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
}

.slide {
  position: absolute;
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 10px;
}

.slide.active {
  opacity: 1;
}

#slideshow_autoBOM {
  background-image: url('Resources/Product_AutoBOM_Preview_Background.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 550px;
}

#MCC_CommingSoon {
  background-image: url('Resources/Product_MCCBOM_Preview_Background.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}


.image-box_Mech img {
  /* width: 55%; */
  width: 40%;
  /* height: 75%; */
  border-radius: 10px;
  object-fit: cover;
  /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15); */
  display: block;
  justify-self: center;
  margin: auto;
}

#features {
  font-family: "Montserrat";
  color: #D9D9D9;
  padding: 5px 40px;
  border-radius: 10px;
  line-height: 1.7;
  height: 550px;
}

.features-content ol {
  counter-reset: section;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  text-align: left;
  /* margin-top: -40px; */
}

.features-content>ol>li {
  /* counter-increment: section; */
  list-style: disc;
  margin-bottom: 10px;
}

.features-content>ol>li::marker {
  font-size: large;
}

.features-content>ol>li::before {
  /* content: counter(section) "."; */
  font-weight: bold;
  margin-right: 10px;
  color: #ffffff;
  font-size: 1.2rem;
}

.features-content strong em {
  font-weight: bold;
  font-style: italic;
  color: #BFBFBF;
  font-size: 14px;
}

/* Responsive */

@media (max-width: 1000px)and (orientation: landscape) {
  .Product-section .content::before {
    background-image: none;
  }
}

@media (max-width: 1000px) {
  .container {
    margin: 20px auto;
  }

  .Product-section .content {
    position: relative;
    z-index: 1;
  }

  .Product-section .content::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(Resources/Product_Background.svg);
    background-repeat: no-repeat;
    /* background-size: cover; */

    opacity: 0.2;
    z-index: -1;
  }

  /* .content {
    background-image: url('Resources/Product_Background.svg');
    background-repeat: no-repeat;
  } */

  .tab-content img {
    margin: 80px 0;
    align-self: auto;
  }

  .tab-content.active {
    height: 375px;
  }

  .description_product h3 {
    font-size: 18px;
  }

  .list_description_product {
    font-size: 14px;
  }

  .tabs {
    gap: 20px;
  }

  .tab-button {
    border-radius: 16px;
  }

  #pain,
  #solution,
  .right-panel #features,
  #slideshow_autoBOM,
  #MCC_CommingSoon,
  #Mech_CommingSoon {
    /* height: 530px; */
    height: auto;
  }

  .tab-content #slideshow_autoBOM,
  .tab-content #MCC_CommingSoon,
  .tab-content #Mech_CommingSoon {
    height: 100%;
  }

  .description_product {
    /* height: 345px; */
    height: auto;
    justify-items: center;
    width: auto;
  }

  /* .separator {
    width: 950px;
    padding: 0px 50px;
  } */
}

@media (max-width: 599px) {

  .Product-section h1 {
    font-size: 18px;
  }

  .description_product h3 {
    font-size: 14px;
  }

  .list_description_product {
    font-size: 12.5px;
  }

  .pain-content strong em {
    font-size: 12.5px;
  }

  .solution-content strong em {
    font-size: 12.5px;
  }

  .features-content strong em {
    font-size: 12.5px;
  }

  .sub-points p {
    font-size: 12.5px;
  }

  .container {
    background: #1A1F25;
    margin: 20px;
    align-content: center;
  }

  .Product-section .content {
    flex-direction: column;
    background-image: none;
  }

  .Product-section .content::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: none;
    background-repeat: no-repeat;
    /* background-size: cover; */
  }

  .description_product {
    /* padding: 10px 20px; */
    padding: 0px 20px;
    background: transparent;
    height: auto;
  }

  .separator {
    display: none;
  }

  .tabs {
    margin-left: 0;
    gap: 10px;
    justify-content: flex-start;
  }

  .tab-button {
    flex: auto;
    width: 100%;
    border-radius: 16px;
  }

  .right-panel,
  .left-panel {
    min-width: auto;
    gap: 0;
    width: 100%;
  }

  .image-box,
  .image-box_Mech {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-box img,
  .image-box_Mech img {
    width: 40%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .right-panel {
    display: none;
  }

  .read-more-btn {
    display: block;
    margin: 0 0 20px 0;
    padding: 2px auto;
    color: #e64626;
    border: none;
    background-color: transparent;
    font-weight: bold;
    cursor: pointer;
  }

  .tab-content.active {
    background-color: transparent;
    height: auto;
  }

  .tab-content img {
    width: 100%;
    border-radius: 8px;
    /* margin-top: 10px; */
    justify-self: anchor-center;
    margin: 0;
  }

  .two-column {
    grid-template-columns: repeat(2, 1fr);
  }

  #pain,
  #solution,
  .right-panel #features {
    padding: 5px 10px;
    height: auto;
  }

  .tab-content img {
    height: fit-content;
    width: 100%;
  }

  .image-box_Mech img {
    width: 50%;
  }

  #slideshow_autoBOM .slide:nth-child(1) {
    content: url("Resources/Product_AutoBOM_Preview_1_M.svg");
    height: auto;
  }

  #slideshow_autoBOM .slide:nth-child(2) {
    content: url("Resources/Product_AutoBOM_Preview_2_M.svg");
    height: auto;
  }

  #slideshow_autoBOM .slide:nth-child(3) {
    content: url("Resources/Product_AutoBOM_Preview_3_M.svg");
    height: auto;
  }

  #slideshow_autoBOM .slide:nth-child(4) {
    content: url("Resources/Product_AutoBOM_Preview_4_M.svg");
    height: auto;
  }

  #slideshow_autoBOM .slide:nth-child(5) {
    content: url("Resources/Product_AutoBOM_Preview_5_M.svg");
    height: auto;
  }

  /* Optional smaller height for mobile */
  .tab-content #slideshow_autoBOM,
  .tab-content #MCC_CommingSoon,
  .tab-content #Mech_CommingSoon {
    height: 350px;
  }

  .slide {
    position: absolute;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 10px;
  }
}




/*=========================== technology Page================================================ */
/*new Technologia styles*/

.tabTech-content {
  display: none;
}

.tabTech-content.active {
  display: block;
}

.infoSection {
  margin-top: 80px;
  margin-bottom: 30px;
}

.tabsTech {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  padding: 10px 40px;

  max-width: 1400px;
  margin: auto auto 15px auto;
}

.tabTech-button {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
  background: #e6e6e6;
  border-radius: 30px;
  transition: 0.3s;
  font-weight: 500;
  color: #000
}

.tabTech-button:hover {
  background: #d0d0d0;
}

.tabTech-button.active {
  background: #E64626;
  color: #fff;
}

/* Default bullet item style */
.bullet-list_AI li,
.bullet-list_SP li,
.bullet-list_RM li,
.bullet-list_IP li,
.bullet-list_3d li {
  cursor: pointer;
  color: #ddd;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 4px 0;
  transition: all 0.25s ease;
}

/* Hover effect */
.bullet-list_AI li:hover,
.bullet-list_SP li:hover,
.bullet-list_RM li:hover,
.bullet-list_IP li:hover,
.bullet-list_3d li:hover {
  /* background-color: rgba(255, 165, 0, 0.2); */
  color: whitesmoke;

}

/* Active effect */
.bullet-list_AI li.active,
.bullet-list_SP li.active,
.bullet-list_RM li.active,
.bullet-list_IP li.active,
.bullet-list_3d li.active {
  background-color: #E64626;
  color: #fff;
  font-weight: 600;
  /* box-shadow: 0 0 8px rgba(255, 165, 0, 0.4); */
}

.bullet-list_AI li.active::before,
.bullet-list_SP li.active::before,
.bullet-list_RM li.active::before,
.bullet-list_IP li.active::before,
.bullet-list_3d li.active::before {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 1000px) {

  .infoSection {
    margin-top: 0;
  }

  .bullet-list_AI li.active,
  .bullet-list_SP li.active,
  .bullet-list_RM li.active,
  .bullet-list_IP li.active,
  .bullet-list_3d li.active {
    color: #BFBFBF;
    font-weight: 6;
  }

  .bullet-list_AI li:hover,
  .bullet-list_SP li:hover,
  .bullet-list_RM li:hover,
  .bullet-list_IP li:hover,
  .bullet-list_3d li:hover {
    color: #BFBFBF;
  }

  .bullet-list_RM li:hover {
    background-color: #2A2D34;
  }

  .bullet-list_AI li,
  .bullet-list_SP li,
  .bullet-list_RM li,
  .bullet-list_IP li,
  .bullet-list_3d li {
    pointer-events: none;
  }
}

@media (max-width: 599px) {
  .infoSection {
    margin-top: 0;
  }

  .tabsTech {
    display: flex;
    overflow-x: auto;
    /* Enables horizontal scroll */
    white-space: nowrap;
    /* Prevents wrapping */
    gap: 8px;
    justify-content: flex-start;
    padding: 10px 0;
    scrollbar-width: none;
    /* Hide scrollbar in Firefox */
  }

  .tabsTech::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar in Chrome/Safari */
  }

  .tabTech-button {
    flex: 0 0 auto;
    /* Keeps buttons from shrinking */
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 16px;
  }

  .bullet-list_AI li.active,
  .bullet-list_SP li.active,
  .bullet-list_RM li.active,
  .bullet-list_IP li.active,
  .bullet-list_3d li.active {
    color: #BFBFBF;
    font-weight: 6;
  }

  .bullet-list_AI li:hover,
  .bullet-list_SP li:hover,
  .bullet-list_RM li:hover,
  .bullet-list_IP li:hover,
  .bullet-list_3d li:hover {
    color: #BFBFBF;
  }

  .bullet-list_RM li:hover {
    background-color: #2A2D34;
  }

  .bullet-list_AI li,
  .bullet-list_SP li,
  .bullet-list_RM li,
  .bullet-list_IP li,
  .bullet-list_3d li {
    pointer-events: none;
  }
}



/*============================Technology Artificial Intelligence ===========================*/
.section-header {
  color: #e64626;
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Montserrat';
}

.content-box_AI {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 60px auto;
  gap: 100px;
  height: 400px;
}

.circle-area_AI {
  position: relative;
  width: 400px;
  height: 400px;
  /* margin-left: 70px; */
  margin-left: 100px;
  justify-content: center;
  align-content: center;
}

.circle-img_AI {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: scale-down;
  border: 3px solid #bfbfbf;
}

.bullet-list_AI {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bullet-list_AI li {
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: #2A2D34;
  color: #BFBFBF;
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  transition: background-color 0.3s;
  max-width: 280px;
  min-width: 160px;
}

.bullet-list_AI li::before {
  content: "• ";
  color: #E64626;
}

.bullet-list_AI li:hover {
  background-color: #555;
}

/* Positioning bullets in circle */
.bullet-list_AI li:nth-child(1) {
  top: 15%;
  left: 100%;
}

.bullet-list_AI li:nth-child(2) {
  top: 15%;
  left: 3%;
}

.bullet-list_AI li:nth-child(3) {
  top: 85%;
  left: 3%;
}

.bullet-list_AI li:nth-child(4) {
  top: 85%;
  left: 100%;
}

.info-card_AI {
  padding: 30px;
  width: 550px;
  min-height: 250px;
  margin-right: 40px;
  border-radius: 16px;
  background-color: #2a2d34;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 1.5;
  transition: 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.info-card_AI:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}


.info-card_AI ul {
  padding-left: 20px;
  font-size: 14px;
}

.info-card_AI li {
  margin-bottom: 10px;
  color: #bfbfbf;
}

.hidden-info_AI {
  display: none;
}

.Heading_InfoCard_AI {
  font-weight: 400;
  color: #E64626;
  font-size: 18px;
}

.Applications_class_AI {
  color: #E64626;
}

/* .bullet-list li:nth-child(5) {min-width: 140px;}
.bullet-list li:nth-child(6) {min-width: 120px;}
.bullet-list li:nth-child(7) {min-width: 120px;} */
.bullet-list_AI li:nth-child(2) {
  max-width: 100px;
}

.bullet-list_AI li:nth-child(3) {
  max-width: 100px;
}

.bullet-list_AI li:nth-child(4) {
  max-width: 100px;
}

.ai-section {
  background-color: #1A1F25;
  color: #d9d9d9;
  padding: 20px 20px;
  text-align: center;
}

.ai-section .container_AI {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Montserrat';
  color: #BFBFBF;
}

.section-title span {
  color: #E64626;
}

.skill-grid_AI {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.skill-card_AI {
  background: #2A2D34;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  transition: 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.skill-card_AI:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.skill-card_AI .skill-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.skill-card_AI h3 {
  color: #BFBFBF;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
  font-style: italic;
  font-weight: bold;
  font-family: 'Montserrat';
}

.skill-card_AI ul {
  list-style: disc;
  padding-left: 30px;
  margin-top: 10px;
  font-size: 14px;
  color: #bfbfbf;
  font-family: 'Montserrat';
}

.skill-card_AI li {
  margin-top: 10px;
  font-size: 14px;
  color: #BFBFBF;
  font-family: 'Montserrat';
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .content-box_AI {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 40px;
    margin-top: 40px;
    /* margin-bottom: -20px; */
  }


  .circle-area_AI {
    margin-left: 0;
    width: 350px;
    height: 350px;
  }

  .circle-img_AI {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    /* object-position: 42px;   */
    border: 3px solid #bfbfbf;
  }

  .bullet-list_AI li {
    font-size: 14px;
    padding: 6px 10px;
    min-width: 120px;
    max-width: 220px;
  }

  .section-title {
    font-size: 24px;
    margin: 20px 0;
  }

  .skill-grid_AI {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .skill-card_AI {
    padding: 20px;
  }

  .skill-card_AI h3 {
    font-size: 16px;
  }

  .skill-card_AI ul {
    padding-left: 20px;
    font-size: 14px;
  }

  .skill-card_AI ul,
  .skill-card_AI li {
    font-size: 14px;
  }

  .info-card_AI {
    display: none;
  }

}

@media (max-width: 600px) {
  .circle-area_AI {
    width: 250px;
    height: 250px;
    margin-top: 10px;
  }

  .bullet-list_AI li {
    font-size: 12.5px;
    padding: 5px 8px;
    min-width: 100px;
    max-width: 180px;
  }

  .info-card_AI {
    display: none;
  }

  .artificialIntelligence-content .section-title {
    font-size: 16px;
  }

  .skill-card_AI h3 {
    font-size: 14px;
  }

  .skill-card_AI ul,
  .skill-card_AI li {
    font-size: 12.5px;
  }

  .bullet-list_AI li:nth-child(5) {
    min-width: 90px;
  }

  .bullet-list_AI li:nth-child(6) {
    min-width: 80px;
  }

  .bullet-list_AI li:nth-child(7) {
    min-width: 80px;
  }

  .bullet-list_AI li:nth-child(2) {
    min-width: 115px;
  }

  .bullet-list_AI li:nth-child(3) {
    min-width: 70px;
  }

  .bullet-list_AI li:nth-child(4) {
    min-width: 110px;
  }

}

/*============================Technology Sound Processing ===========================*/
.content-box_SP {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 60px auto;
  gap: 100px;
  height: 400px;
}

.circle-area_SP {
  position: relative;
  width: 400px;
  height: 400px;
  margin-left: 100px;
  justify-content: center;
  align-content: center;
}

.circle-img_SP {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  object-position: 42px;
  border: 3px solid #bfbfbf;
}

.bullet-list_SP {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bullet-list_SP li {
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: #2A2D34;
  color: #BFBFBF;
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  transition: background-color 0.3s;
  max-width: 280px;
  min-width: 160px;
}

.bullet-list_SP li::before {
  content: "• ";
  color: #E64626;
}

.bullet-list_SP li:hover {
  background-color: #555;
}

/* Positioning bullets in circle */
.bullet-list_SP li:nth-child(1) {
  top: 2%;
  left: 52%;

  min-width: 180px;
}

.bullet-list_SP li:nth-child(2) {
  top: 24%;
  left: 93%;
}

.bullet-list_SP li:nth-child(3) {
  top: 54%;
  left: 105%;
}

.bullet-list_SP li:nth-child(4) {
  top: 85%;
  left: 93%;
}

.bullet-list_SP li:nth-child(5) {
  top: 85%;
  left: 15%;
}

.bullet-list_SP li:nth-child(6) {
  top: 54%;
  left: -5%;
}

.bullet-list_SP li:nth-child(7) {
  top: 24%;
  left: 5%;
}

.info-card_SP {
  padding: 30px;
  width: 550px;
  min-height: 250px;
  margin-right: 40px;
  border-radius: 16px;
  background-color: #2a2d34;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 1.5;
  transition: 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.info-card_SP:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}


.info-card_SP ul {
  padding-left: 20px;
  font-size: 14px;
}

.info-card_SP li {
  margin-bottom: 10px;
  color: #bfbfbf;
}

.hidden-info_SP {
  display: none;
}

.Heading_InfoCard_SP {
  font-weight: 400;
  color: #E64626;
  font-size: 18px;
}

.Applications_class {
  color: #E64626;
}

.bullet-list_SP li:nth-child(5) {
  min-width: 140px;
}

.bullet-list_SP li:nth-child(6) {
  min-width: 120px;
}

.bullet-list_SP li:nth-child(7) {
  min-width: 120px;
}

.bullet-list_SP li:nth-child(2) {
  min-width: 150px;
}

.bullet-list_SP li:nth-child(3) {
  min-width: 145px;
}

.bullet-list_SP li:nth-child(4) {
  min-width: 170px;
}

.sound-section {
  background-color: #1A1F25;
  color: #d9d9d9;
  padding: 20px 20px;
  text-align: center;
}

.sound-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Montserrat';
}

.section-title span {
  color: #E64626;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.skill-card_SP {
  background: #2A2D34;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  transition: 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.skill-card_SP:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.skill-card_SP .skill-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.skill-card_SP h3 {
  color: #BFBFBF;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
  font-style: italic;
  font-weight: bold;
  font-family: 'Montserrat';
}

.skill-card_SP ul {
  list-style: disc;
  padding-left: 30px;
  margin-top: 10px;
  font-size: 14px;
  color: #bfbfbf;
  font-family: 'Montserrat';
}

.skill-card_SP li {
  margin-top: 10px;
  font-size: 14px;
  color: #BFBFBF;
  font-family: 'Montserrat';
}


/* Base styles already defined above */

/* Responsive adjustments */
@media (max-width: 1000px) {
  .content-box_SP {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 40px;
    margin-top: 40px;
    /* margin-bottom: -20px; */
  }

  .circle-area_SP {
    margin-left: 0;
    width: 350px;
    height: 350px;
  }

  .circle-img_SP {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    object-position: 42px;
    border: 3px solid #bfbfbf;
  }

  .bullet-list_SP li {
    font-size: 14px;
    padding: 6px 10px;
    min-width: 120px;
    max-width: 220px;
  }

  .section-title {
    font-size: 24px;
    margin: 20px 0;
  }

  .skill-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .skill-card_SP {
    padding: 20px;
  }

  .skill-card_SP h3 {
    font-size: 16px;
  }

  .skill-card_SP ul {
    padding-left: 20px;
    font-size: 14px;
  }

  .skill-card_SP li {
    font-size: 14px;
  }

  .info-card_SP {
    display: none;
  }

}

@media (max-width: 600px) {
  .circle-area_SP {
    width: 250px;
    height: 250px;
    margin-top: 10px;
  }

  .bullet-list_SP li {
    font-size: 12.5px;
    padding: 5px 8px;
    min-width: 100px;
    max-width: 180px;
  }

  .info-card_SP {
    display: none;
  }

  .soundProcessing-content .section-title {
    font-size: 16px;
  }

  .skill-card_SP h3 {
    font-size: 14px;
  }

  .skill-card_SP ul,
  .skill-card_SP li {
    font-size: 12.5px;
  }

  .bullet-list_SP li:nth-child(5) {
    min-width: 90px;
  }

  .bullet-list_SP li:nth-child(6) {
    min-width: 80px;
  }

  .bullet-list_SP li:nth-child(7) {
    min-width: 80px;
  }

  .bullet-list_SP li:nth-child(2) {
    min-width: 115px;
  }

  .bullet-list_SP li:nth-child(3) {
    min-width: 70px;
  }

  .bullet-list_SP li:nth-child(4) {
    min-width: 110px;
  }
}

/* ===================================Technology Page Robot and Motion======================================= */
.content-box_RM {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 60px auto;
  gap: 100px;
  height: 400px;
}

.circle-area_RM {
  position: relative;
  width: 400px;
  height: 400px;
  margin-left: 100px;
  justify-content: center;
  align-content: center;
}

.circle-img_RM {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: scale-down;
  border: 3px solid #bfbfbf;
}

/* .circleimg {
  border: 3px solid #bfbfbf;
  border-radius: 50%;
  width: 400px;
  height: 400px;
} */

.bullet-list_RM {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bullet-list_RM li {
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: #2A2D34;
  color: #BFBFBF;
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  transition: background-color 0.3s;
  max-width: 280px;
  min-width: 160px;
}

.bullet-list_RM li::before {
  content: "• ";
  color: #E64626;
  font-size: 20px;
}

.bullet-list_RM li:hover {
  background-color: #555;
}

/* Positioning bullets in circle ROBOT */
.manufacturing {
  top: 2%;
  left: 52%;
}

.healthcare {
  top: 100%;
  left: 52%;
}

.info-card_RM {
  padding: 30px;
  width: 550px;
  min-height: 250px;
  margin-right: 40px;
  border-radius: 16px;
  background-color: #2a2d34;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 1.5;
  /* transition: 0.3s ease; */
  transition: 0.4s ease-in-out, filter 0.4s ease-in-out
}

.info-card_RM:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}


.info-card_RM ul {
  padding-left: 20px;
  font-size: 14px;
}

.info-card_RM li {
  margin-bottom: 10px;
  color: #bfbfbf;
}

.hidden-info_RM {
  display: none;
}

.Heading_InfoCard_RM {
  font-weight: 400;
  color: #E64626;
  font-size: 18px;
}

.Applications_class {
  color: #E64626;
}

.bullet-list_RM li:nth-child(2) {
  min-width: 130px;
}

.robotAndMotion-section {
  background-color: #1A1F25;
  /* color: #d9d9d9; */
  padding: 20px 20px;
  text-align: center;
}

.robotAndMotion-section .container_RM {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Montserrat';
}

.section-title span {
  color: #E64626;
}

.skill-grid_RM {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.skill-card_RM {
  background: #2A2D34;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  transition: 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.skill-card_RM:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.skill-card_RM .skill-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.skill-card_RM h3 {
  color: #BFBFBF;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
  font-style: italic;
  font-weight: bold;
  font-family: 'Montserrat';
}

.skill-card_RM ul {
  list-style: disc;
  padding-left: 30px;
  margin-top: 10px;
  font-size: 14px;
  color: #bfbfbf;
  font-family: 'Montserrat';
}

.skill-card_RM li {
  margin-top: 10px;
  font-size: 14px;
  color: #BFBFBF;
  font-family: 'Montserrat';
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .content-box_RM {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 40px;
    margin-top: 40px;
    /* margin-bottom: -20px; */
  }


  .circle-area_RM {
    margin-left: 0;
    width: 350px;
    height: 350px;
  }

  .circle-img_RM {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    /* object-position: 42px; */
    border: 3px solid #bfbfbf;
  }

  .bullet-list_RM li {
    font-size: 14px;
    padding: 6px 10px;
    min-width: 120px;
    max-width: 220px;
  }

  .section-title {
    font-size: 24px;
    margin: 20px 0;
  }

  .skill-grid_RM {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .skill-card_RM {
    padding: 20px;
  }

  .skill-card_RM h3 {
    font-size: 16px;
  }

  .skill-card_RM ul,
  .skill-card_RM li {
    /* padding-left: 20px; */
    font-size: 14px;
  }

  .info-card_RM {
    display: none;
  }

}

@media (max-width: 600px) {
  .circle-area_RM {
    width: 250px;
    height: 250px;
    margin-top: 10px;
  }

  .bullet-list_RM li {
    font-size: 12.5px;
    padding: 5px 8px;
    min-width: 110px;
    max-width: 180px;
  }

  .robotAndMotion-section {
    padding: 20px;
    margin: 60px 0 0 0;
  }

  .circle-img_RM {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    object-position: 0;
    border: 3px solid #bfbfbf;
  }

  .info-card_RM {
    display: none;
  }

  .robotAndMotion-content .section-title {
    font-size: 16px;
  }

  .skill-card_RM h3 {
    font-size: 14px;
  }

  .skill-card_RM ul,
  .skill-card_RM li {
    font-size: 12.5px;
  }

  .bullet-list_RM li:nth-child(5) {
    min-width: 90px;
  }

  .bullet-list_RM li:nth-child(6) {
    min-width: 80px;
  }

  .bullet-list_RM li:nth-child(7) {
    min-width: 80px;
  }

  .bullet-list_RM li:nth-child(2) {
    min-width: 115px;
  }

  .bullet-list_RM li:nth-child(3) {
    min-width: 70px;
  }

  .bullet-list_RM li:nth-child(4) {
    min-width: 110px;
  }
}

/*================================ Technology Page Image Processing======================================= */
.content-box_IP {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px auto;
  /* margin-right: 40px;
  margin-left: 30px;
  margin-bottom: 60px; */
  gap: 100px;
  height: 400px;
  max-width: 1400px;
}

.circle-area_IP {
  position: relative;
  width: 400px;
  height: 400px;
  margin-left: 100px;
  justify-content: center;
  align-content: center;
}

.circle-img_IP {
  width: 95%;
  height: 95%;
  border-radius: 50%;
  object-fit: scale-down;
  object-position: -2px;
  border: 3px solid #bfbfbf;
}

.bullet-list_IP {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bullet-list_IP li {
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: #2A2D34;
  color: #BFBFBF;
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  transition: background-color 0.3s;
  max-width: 280px;
  min-width: 160px;
}

.bullet-list_IP li::before {
  content: "• ";
  color: #E64626;
}

.bullet-list_IP li:hover {
  background-color: #555;
}

/* Positioning bullets in circle */
.bullet-list_IP li:nth-child(1) {
  top: 15%;
  left: 10%;
}

.bullet-list_IP li:nth-child(2) {
  top: 15%;
  left: 90%;
}

.bullet-list_IP li:nth-child(3) {
  top: 87%;
  left: 10%;
}

.bullet-list_IP li:nth-child(4) {
  top: 87%;
  left: 90%;
}

.info-card_IP {
  padding: 30px;
  width: 550px;
  min-height: 300px;
  margin-right: 40px;
  border-radius: 16px;
  background-color: #2a2d34;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 1.5;
  transition: 0.4s ease-in-out, filter 0.4s ease-in-out
}

.info-card_IP:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.info-card_IP ul {
  padding-left: 20px;
  font-size: 14px;
}

.info-card_IP li {
  margin-bottom: 10px;
  color: #bfbfbf;
}

.hidden-info_IP {
  display: none;
}

.Heading_InfoCard_IP {
  font-weight: 400;
  color: #E64626;
  font-size: 18px;
}

.Applications_class_IP {
  color: #E64626;
}

.bullet-list_IP li:nth-child(1) {
  min-width: 120px;
}

.bullet-list_IP li:nth-child(2) {
  min-width: 155px;
}

.bullet-list_IP li:nth-child(3) {
  min-width: 135px;
  max-width: 14 0px;
}

.bullet-list_IP li:nth-child(4) {
  min-width: 130px;
}

.image-section_IP {
  background-color: #1A1F25;
  color: #d9d9d9;
  padding: 20px 20px;
  text-align: center;
}

.image-section_IP .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title_IP {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Montserrat';
  color: #BFBFBF;
}

.section-title_IP span {
  color: #E64626;
}

.skill-grid_IP {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.skill-card_IP {
  background: #2A2D34;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  transition: 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.skill-card_IP:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.skill-card_IP .skill-icon_IP {
  font-size: 2rem;
  margin-bottom: 15px;
}

.skill-card_IP h3 {
  color: #BFBFBF;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
  font-style: italic;
  font-weight: bold;
  font-family: 'Montserrat';
}

.skill-card_IP ul {
  list-style: disc;
  padding-left: 30px;
  margin-top: 10px;
  font-size: 14px;
  color: #bfbfbf;
  font-family: 'Montserrat';
}

.skill-card_IP li {
  margin-top: 10px;
  font-size: 14px;
  color: #BFBFBF;
  font-family: 'Montserrat';
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .content-box_IP {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 100px;
    margin-top: 40px;
    /* margin-bottom: -20px; */
  }

  .circle-area_IP {
    margin-left: 0;
    width: 350px;
    height: 350px;
  }

  .circle-img_IP {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: scale-down;
    object-position: 2px;
    border: 3px solid #bfbfbf;
  }

  .bullet-list_IP li {
    font-size: 14px;
    padding: 6px 10px;
    min-width: 120px;
    max-width: 220px;
  }

  .section-title_IP {
    font-size: 18px;
    margin: 20px 0;
  }

  .skill-grid_IP {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .skill-card_IP {
    padding: 20px;
  }

  .skill-card_IP h3 {
    font-size: 16px;
  }

  .skill-card_IP ul {
    padding-left: 20px;
    font-size: 14px;
  }

  .skill-card_IP li {
    font-size: 14px;
  }

  .info-card_IP {
    display: none;
  }

}

@media (max-width: 600px) {
  .circle-area_IP {
    width: 250px;
    height: 250px;
    margin-top: 10px;
  }

  .image-section_IP {
    padding: 20px;
    margin: 60px 0 0 0;
  }

  .circle-img_IP {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: scale-down;
    object-position: 2px;
    border: 3px solid #bfbfbf;
  }

  .bullet-list_IP li {
    font-size: 12.5px;
    padding: 5px 8px;
    min-width: 100px;
    max-width: 180px;
  }

  .info-card_IP {
    display: none;
  }

  .section-title_IP {
    font-size: 16px;
  }

  .skill-card_IP h3 {
    font-size: 14px;
  }

  .skill-card_IP ul,
  .skill-card_IP li {
    font-size: 12.5px;
  }

  .bullet-list_IP li:nth-child(1) {
    min-width: 80px;
  }

  .bullet-list_IP li:nth-child(2) {
    min-width: 115px;
  }

  .bullet-list_IP li:nth-child(3) {
    min-width: 70px;
  }

  .bullet-list_IP li:nth-child(4) {
    min-width: 110px;
  }
}


/* ========================Technology Page Integration of Software & Hardware===================== */
.content-box_Integration {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 60px auto;
  gap: 100px;
  height: 400px;
}

.circle-area_Integration {
  position: relative;
  width: 400px;
  height: 400px;
  margin-left: 100px;
  justify-content: center;
  align-content: center;
}

.circle-img_Integration {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: scale-down;
  border: 3px solid #bfbfbf;
}

.info-card_Integration {
  padding: 30px;
  width: 550px;
  min-height: 250px;
  margin-right: 40px;
  border-radius: 16px;
  background-color: #2a2d34;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  line-height: 1.5;
  transition: 0.3s ease;
  color: #bfbfbf;
  text-align: justify;
  transition: 0.4s ease-in-out, filter 0.4s ease-in-out
}

.info-card_Integration:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.sub-points_ISH.two-column_ISH {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* display: flex; */
  gap: 0px 32px;
  font-size: 13px;
}

.sub-points_ISH p {
  margin: 6px 0;
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1.5em;
}

.info-card_Integration ul {
  padding-left: 20px;
}

.info-card_Integration li {
  margin-bottom: 10px;
  color: #bfbfbf;
}

.hidden-info_Integration {
  display: none;
}

.Heading_InfoCard_Integration {
  font-weight: 400;
  color: #E64626;
}

.Applications_class {
  color: #E64626;
}

.integration-section {
  background-color: #1A1F25;
  color: #d9d9d9;
  padding: 20px;
  text-align: center;
}

.integration-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Montserrat';
}

.section-title span {
  color: #E64626;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.skill-card_ISH {
  background: #2A2D34;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  transition: 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.skill-card_ISH:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.skill-card_ISH .skill-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.skill-card_ISH h3 {
  color: #BFBFBF;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 5px;
  font-style: italic;
  font-weight: bold;
  font-family: 'Montserrat';
}

.skill-card_ISH ul {
  list-style: disc;
  padding-left: 30px;
  margin-top: 10px;
  font-size: 14px;
  color: #bfbfbf;
  font-family: 'Montserrat';
}

.skill-card_ISH li {
  margin-top: 10px;
  font-size: 14px;
  color: #BFBFBF;
  font-family: 'Montserrat';
}


/* Base styles already defined above */

/* Responsive adjustments */
@media (max-width: 1000px) {
  .content-box_Integration {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 40px;
    margin-top: 40px;
    /* margin-bottom: -20px; */
  }

  .integration-section .container {
    padding: 0px;
  }

  .circle-area_Integration {
    margin-left: 0;
    width: 350px;
    height: 350px;
  }

  .circle-img_Integration {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    /* object-position: 42px;   */
    border: 3px solid #bfbfbf;
  }

  .section-title {
    font-size: 18px;
    margin: 20px 10px;
  }

  .skill-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .skill-card_ISH {
    padding: 20px;
  }

  .skill-card_ISH h3 {
    font-size: 18px;
  }

  .skill-card_ISH ul {
    padding-left: 20px;
    font-size: 13px;
  }

  .sub-points_ISH.two-column_ISH {
    font-size: 14px;
  }

  .sub-points_ISH p {
    font-size: 14px;
  }

  .info-card_Integration {
    display: none;
  }

}

@media (max-width: 600px) {
  .circle-area_Integration {
    width: 250px;
    height: 250px;
    margin-top: 10px;
  }

  .info-card_Integration {
    display: none;
  }

  .sub-points_ISH.two-column_ISH {
    display: flow-root;
  }

  .integration-section .container {
    padding: 0px;
  }

  .integration-content .section-title {
    font-size: 16px;
  }

  .skill-card_ISH h3 {
    font-size: 16px;
  }

  .skill-card_ISH p {
    font-size: 12.5px;
  }


}

/*====================================== 3D CAD=============================================== */
.section-header_3d {
  text-align: center;
  font-size: 28px;
  margin: 30px 0;
  text-transform: none;
  letter-spacing: 2px;
  color: #bfbfbf;
}

.content-box_3d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 60px auto;
  gap: 100px;
  height: 400px;
}

.section-title_3d {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Montserrat';
  color: #BFBFBF;
}

.section-title_3d span {
  color: #E64626;
}

.circle-area_3d {
  position: relative;
  width: 400px;
  height: 400px;
  margin-left: 100px;
  justify-content: center;
  align-content: center;
}

.circle-img_3d {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: fill;
  object-position: 2px;
  border: 3px solid #bfbfbf;
}

.bullet-list_3d {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bullet-list_3d li {
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: #2A2D34;
  color: #BFBFBF;
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  transition: background-color 0.3s;
  max-width: 280px;
  min-width: 160px;
}

.bullet-list_3d li::before {
  content: "• ";
  color: #E64626;
}

.bullet-list_3d li:hover {
  background-color: #555;
}

.bullet-list_3d li:nth-child(1) {
  top: 2%;
  left: 52%;
}

.bullet-list_3d li:nth-child(2) {
  top: 85%;
  left: 85%;
}

.bullet-list_3d li:nth-child(3) {
  top: 85%;
  left: 15%;
}


.info-card_3d {
  padding: 30px;
  width: 550px;
  min-height: 250px;
  margin-right: 40px;
  border-radius: 16px;
  background-color: #2a2d34;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 1.5;
  transition: 0.4s ease-in-out, filter 0.4s ease-in-out
}

.info-card_3d:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}


.info-card_3d ul {
  padding-left: 20px;
  font-size: 14px;
}

.info-card_3d li {
  margin-bottom: 10px;
  color: #bfbfbf;
}

.hidden-info_3d {
  display: none;
}

.Heading_InfoCard_3d {
  font-weight: 400;
  color: #E64626;
  font-size: 18px;
}

.Applications_class_3d {
  color: #E64626;
}

.cad-section_3d {
  background-color: #1A1F25;
  color: #d9d9d9;
  padding: 20px 20px;
  text-align: center;
}

.cad-section_3d .container {

  margin: 0 auto;
}

.cad-section_3d .section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: -20px;
  font-family: 'Montserrat';
}

.cad-section_3d .section-title span {
  color: #E64626;
}

.skill-grid_3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;

}

.skill-card_3d {
  background: #2A2D34;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 10px 20px 10px;
  text-align: left;
  transition: 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.skill-card_3d:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.skill-card_3d .skill-icon_3d {
  font-size: 2rem;
  margin-bottom: 15px;
}

.skill-card_3d h3 {
  color: #BFBFBF;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 0px;
  font-style: italic;
  font-weight: bold;
  font-family: 'Montserrat';
}

.skill-card_3d ul {
  list-style: disc;
  padding-left: 30px;
  margin-top: 10px;
  font-size: 14px;
  color: #bfbfbf;
  font-family: 'Montserrat';
}

.skill-card_3d li {
  margin-top: 10px;
  font-size: 14px;
  color: #BFBFBF;
  font-family: 'Montserrat';
}


/* Base styles already defined above */

/* Responsive adjustments */
@media (max-width: 1000px) {
  .content-box_3d {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 20px;
    margin-top: 40px;
    /* margin-bottom: -20px; */
  }


  .circle-area_3d {
    margin-left: 0;
    width: 350px;
    height: 350px;
  }

  .circle-img_3d {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    object-position: 15px;
    border: 3px solid #bfbfbf;
  }

  .bullet-list_3d li {
    font-size: 14px;
    padding: 6px 10px;
    min-width: 120px;
    max-width: 220px;
  }

  .section-header_3d,
  .cad-section_3d .section-title_3d {
    font-size: 18px;
    margin: 20px 0;
  }

  .skill-grid_3d {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .skill-card_3d {
    padding: 20px;
    /* margin-bottom: -20px; */
  }

  .skill-card_3d h3 {
    font-size: 16px;
  }

  .skill-card_3d ul {
    padding-left: 20px;
    font-size: 14px;
  }

  .skill-card_3d li {
    font-size: 14px;
  }

  .info-card_3d {
    display: none;
  }

}

@media (max-width: 600px) {
  .circle-area_3d {
    width: 250px;
    height: 250px;
    margin-top: 10px;
  }

  .cad-section_3d {
    padding: 20px;
  }

  .bullet-list_3d li {
    font-size: 12.5px;
    padding: 5px 8px;
    min-width: 110px;
    max-width: 180px;
  }

  .skill-grid_3d {
    gap: 75px;
    padding: 0 0 20px 0;
  }

  .skill-card_3d {
    margin-bottom: 10px;
  }

  .info-card_3d {
    display: none;
  }

  .section-header_3d,
  .cad-section_3d .section-title_3d {
    font-size: 16px;
  }

  .skill-card_3d h3 {
    font-size: 14px;
  }

  .skill-card_3d ul,
  .skill-card_3d li {
    font-size: 12.5px;
  }

  .skill-card_3d {
    margin-bottom: -50px;
  }
}

[class^="circle-img_"],
[class*=" circle-img_"] {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}


[class^="circle-img_"] img,
[class*=" circle-img_"] img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}

@media (max-width: 1000px) {

  [class^="circle-img_"],
  [class*=" circle-img_"] {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
  }


  [class^="circle-img_"] img,
  [class*=" circle-img_"] img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
  }
}

@media (max-width: 600px) {

  [class^="circle-img_"],
  [class*=" circle-img_"] {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
  }


  [class^="circle-img_"] img,
  [class*=" circle-img_"] img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
  }
}