

/* Mobile font adjustment for "Industries We Serve" */
@media (max-width: 768px) {
  .text-wrapper-14 {
    font-size: 28px !important;   /* Reduced from 48px */
    line-height: 34px; /* Better for smaller screens */
    white-space: normal;
    text-align: center;
  }
    /* Mobile font adjustment for "Total Control, One Platform" */
.text-wrapper-7 {
    font-size: 25px !important;    /* Reduced from 32px */
    line-height: 24px;
    text-align: center;
    white-space: normal;
  }

  /* Mobile font adjustment for the supporting paragraph */
  .text-wrapper-8 {
    font-size: 20px !important;    /* Reduced from 24px */
    line-height: 18px;
    text-align: center;
    white-space: normal;
  }
}



/* Floating Glass CTA */
.floating-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  display: flex;
  justify-content: space-between; /* Push buttons to edges */
  gap: 0;
  padding: 16px 8px;
  z-index: 1000;

  /* Glass background */
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);

  /* Animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-cta.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Keep original button styling */
.floating-cta .ERP-BUTTON,
.floating-cta .OUTLINED-ERPBUTTON2 {
  height: auto;
  border-radius: 8px;
  flex: unset;
  margin: 0;
}

/* Mobile only */
@media (min-width: 769px) {
  .floating-cta {
    display: none;
  }
}
/* Ensure floating CTA buttons retain hero formatting */
.floating-cta .ERP-BUTTON {
  display: inline-flex;
  height: 72px;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  background-color: var(--erp-primary);
  border-radius: 8px;
  text-decoration: none;
  font-family: "Outfit-Medium", Helvetica;
  font-weight: 500;
  color: var(--erp-white-3);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  color: white;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.floating-cta .ERP-BUTTON:hover {
  background-color: rgba(0, 111, 181, 1);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

.floating-cta .ERP-BUTTON:active {
  transform: scale(0.96);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.floating-cta .OUTLINED-ERPBUTTON2 {
  display: inline-flex;
  height: 72px;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 8px;
  border: 1px solid #006fb5;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.floating-cta .OUTLINED-ERPBUTTON2:hover {
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

.floating-cta .OUTLINED-ERPBUTTON2:active {
  transform: scale(0.96);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.floating-cta .OUTLINED-ERPBUTTON2 span {
  font-family: "Outfit-Bold", Helvetica;
  font-weight: 700;
  color: #006fb5;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  margin-right: 8px;
}

/* Resize floating CTA buttons for mobile */
@media (max-width: 768px) {
  .floating-cta .ERP-BUTTON,
  .floating-cta .OUTLINED-ERPBUTTON2 {
    height: 48px;           /* smaller height for mobile */
    padding: 8px 20px;      /* less horizontal padding */
    font-size: 14px;        /* slightly smaller text */
    line-height: 20px;
  }

  .floating-cta .OUTLINED-ERPBUTTON2 span {
    font-size: 14px;
    line-height: 20px;
    margin-right: 6px;      /* tighter spacing before icon */
  }

  .floating-cta .OUTLINED-ERPBUTTON2 img.ri-arrow-up-line2 {
    width: 18px;            /* smaller icon */
    height: 18px;
  }
}






/* START MY STYLES*/
 .nav-links a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  /* Hover effect: pop out */
  .nav-links a:hover {
    color: var(--erp-primary);
    transform: scale(1.05);
  }

  /* Hover effect for Resources icon */
  .resources-link:hover img {
    filter: brightness(0) saturate(100%) invert(30%) sepia(95%) saturate(450%) hue-rotate(180deg) brightness(95%) contrast(90%);
  }

  /* Flash animation */
  @keyframes clickFlash {
    0% {
      filter: brightness(100%);
    }
    50% {
      filter: brightness(140%);
    }
    100% {
      filter: brightness(100%);
    }
  }

  /* Applied on click */
  .nav-links a.clicked {
    animation: clickFlash 0.3s ease;
  }

  /* Optional: icon gets same flash if Resources link clicked */
  .resources-link.clicked img {
    animation: clickFlash 0.3s ease;
  }
/* END MY STYLES*/



/* NAV STYLING */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 92px;
  background-color: var(--erp-white-1); /* Full-width white bar */
  position: relative;
  z-index: 10;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); /* subtle depth */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 64px;
  list-style-type: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.nav-links a {
  font-family: "Outfit-Regular", Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--erp-blk);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links a.active {
  color: var(--erp-primary);
}

.resources-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-icon {
  width: 24px;
  height: 24px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  background-color: var(--erp-primary);
  border-radius: 8px;
  text-decoration: none;
  font-family: "Outfit-Bold", Helvetica;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: white;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  background-color: rgba(0, 111, 181, 1);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

.cta-button:active {
  transform: scale(0.96);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}
/* END NAV STYLING */


.ERP-landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: var(--erp-white-3);
}

.ERP-landing-page .hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}


.ERP-landing-page .technites {
  position: relative;
  width: 159px;
  height: 28px;
}

.ERP-landing-page .frame {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.ERP-landing-page .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Outfit-Regular", Helvetica;
  font-weight: 400;
  color: var(--erp-primary);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.ERP-landing-page .div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.ERP-landing-page .text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Outfit-Regular", Helvetica;
  font-weight: 400;
  color: var(--erp-blk);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.ERP-landing-page .dropdown {
  position: relative;
  width: 24px;
  height: 24px;
}

.ERP-landing-page .vector {
  position: absolute;
  width: 9px;
  height: 15px;
  top: 4px;
  left: 8px;
}

.ERP-landing-page .VMS-BUTTON-TYPE {
  display: flex;
  width: 149px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 40px;
  position: relative;
  background-color: var(--vms-primary-1);
  border-radius: 8px;
  overflow: hidden;
}

.ERP-landing-page .register {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  margin-left: -25.50px;
  margin-right: -25.50px;
  font-family: "Outfit-Bold", Helvetica;
  font-weight: 700;
  color: var(--erp-white-3);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.ERP-landing-page .main-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 92px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-image: url(./img/hi.png);
  background-size: cover;
  background-position: 50% 50%;
}

.ERP-landing-page .breadcrum {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff80;
  border-radius: 24px;
  backdrop-filter: blur(10px) brightness(100%);
  -webkit-backdrop-filter: blur(10px) brightness(100%);
}

.ERP-landing-page .text-wrapper-3 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--ERP-REG-2-font-family);
  font-weight: var(--ERP-REG-2-font-weight);
  color: var(--erp-blk);
  font-size: var(--ERP-REG-2-font-size);
  letter-spacing: var(--ERP-REG-2-letter-spacing);
  line-height: var(--ERP-REG-2-line-height);
  white-space: nowrap;
  font-style: var(--ERP-REG-2-font-style);
}

.ERP-landing-page .text-wrapper-4 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--ERP-REG-2-font-family);
  font-weight: var(--ERP-REG-2-font-weight);
  color: var(--erp-primary);
  font-size: var(--ERP-REG-2-font-size);
  letter-spacing: var(--ERP-REG-2-letter-spacing);
  line-height: var(--ERP-REG-2-line-height);
  white-space: nowrap;
  font-style: var(--ERP-REG-2-font-style);
}

.ERP-landing-page .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .hero-texts {
  display: flex;
  flex-direction: column;
  min-width: 240px;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  padding: 32px 16px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px) brightness(100%);
  -webkit-backdrop-filter: blur(10px) brightness(100%);
  overflow-x: scroll;
}

.ERP-landing-page .hero-texts::-webkit-scrollbar {
  width: 0;
  display: none;
}

.ERP-landing-page .frame-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .simplify-operations {
  position: relative;
  flex: 1;
  flex-grow: 1;
  height: 192px;
}

.ERP-landing-page .an-AI-powered {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: "Outfit-Regular", Helvetica;
  font-weight: 400;
  color: var(--erp-blk);
  font-size: 24px;
  letter-spacing: 0;
  line-height: 28px;
}

.ERP-landing-page .an-AI-powered2 {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: "Outfit", Helvetica;
  font-weight: 600;
  color: var(--erp-blk);
  font-size: 45px;
  letter-spacing: 0.02em;
  line-height: 64px;
}

.ERP-landing-page .frame-3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .ERP-BUTTON {
  display: inline-flex;
  height: 72px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 40px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--erp-primary);
  border-radius: 8px;
  overflow: hidden;
}

.ERP-landing-page .register-2 {
  position: relative;
  width: fit-content;
  font-family: "Outfit-Medium", Helvetica;
  font-weight: 500;
  color: var(--erp-white-3);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.ERP-landing-page .OUTLINED-ERPBUTTON {
  display: inline-flex;
  height: 72px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 40px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid;
  border-color: #006fb5;
}
.main-hero .ERP-BUTTON {
  display: inline-flex;
  height: 72px;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  background-color: var(--erp-primary);
  border-radius: 8px;
  text-decoration: none;
  font-family: "Outfit-Medium", Helvetica;
  font-weight: 500;
  color: var(--erp-white-3);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  color: white;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

/* Hover effect: slight lift and glow */
.main-hero .ERP-BUTTON:hover {
  background-color: rgba(0, 111, 181, 1); /* or a darker blue shade of your primary */
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

/* Click effect: subtle press */
.main-hero .ERP-BUTTON:active {
  transform: scale(0.96); /* press effect */
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2); /* slightly reduced glow */
}

.main-hero .OUTLINED-ERPBUTTON2 {
  display: inline-flex;
  height: 72px;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 8px;
  border: 1px solid #006fb5;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

/* Hover effect: slight lift and glow */
.main-hero .OUTLINED-ERPBUTTON2:hover {

  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

/* Click effect: subtle press */
.main-hero .OUTLINED-ERPBUTTON2:active {
  transform: scale(0.96); /* press effect */
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2); /* slightly reduced glow */
}

.main-hero .OUTLINED-ERPBUTTON2 span {
  font-family: "Outfit-Bold", Helvetica;
  font-weight: 700;
  color: #006fb5;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  margin-right: 8px;
}

.main-hero .ri-arrow-up-line2 {
  width: 32px;
  height: 32px;
}

.ERP-landing-page .div-2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.ERP-landing-page .learn-more {
  position: relative;
  width: fit-content;
  font-family: "Outfit-Bold", Helvetica;
  font-weight: 700;
  color: #006fb5;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.ERP-landing-page .vector-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
}

.ERP-landing-page .img {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 1px;
  left: 1px;
}

.ERP-landing-page .frame-wrapper {
  flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px;
  position: relative;
  background-color: #ffffff4c;
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px) brightness(100%);
  -webkit-backdrop-filter: blur(10px) brightness(100%);
  overflow-x: scroll;
}

.ERP-landing-page .frame-wrapper::-webkit-scrollbar {
  width: 0;
  display: none;
}

.ERP-landing-page .frame-4 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.ERP-landing-page .frame-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 92px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--erp-white-3);
}

.ERP-landing-page .p {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--ERP-REG-5-font-family);
  font-weight: var(--ERP-REG-5-font-weight);
  color: var(--erp-gray-4);
  font-size: var(--ERP-REG-5-font-size);
  text-align: center;
  letter-spacing: var(--ERP-REG-5-letter-spacing);
  line-height: var(--ERP-REG-5-line-height);
  font-style: var(--ERP-REG-5-font-style);
}

.ERP-landing-page .frame-6 {
  display: flex;
  align-items: center;
  gap: 74px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  overflow: hidden;
  overflow-x: scroll;
}

.ERP-landing-page .frame-6::-webkit-scrollbar {
  width: 0;
  display: none;
}

.ERP-landing-page .PROSKOOL-LOGO-GREY {
  position: relative;
  width: 186px;
  height: 48px;
}

.ERP-landing-page .PROTITUTE-GREY {
  position: relative;
  width: 151px;
  height: 100px;
}

.ERP-landing-page .text-wrapper-5 {
  position: relative;
  width: fit-content;
  font-family: "Orbitron-Bold", Helvetica;
  font-weight: 700;
  color: var(--erp-gray-4);
  font-size: 48px;
  letter-spacing: 0;
  line-height: 32px;
  white-space: nowrap;
}

.ERP-landing-page .PROTRACK-LOGO-GREY {
  position: relative;
  width: 223px;
  height: 48px;
}

.ERP-landing-page .PROVMS-blue-grey {
  position: relative;
  width: 172px;
  height: 50px;
}

.ERP-landing-page .PROLEARN-LOGO-GREY {
  position: relative;
  width: 197px;
  height: 48px;
  object-fit: cover;
}

.ERP-landing-page .why-ERP {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 48px 92px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background: linear-gradient(
    180deg,
    rgba(243, 244, 246, 1) 62%,
    rgba(244, 190, 25, 0.5) 75%,
    rgba(0, 111, 181, 0.5) 87%
  );
}

.ERP-landing-page .text-wrapper-6 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Outfit-Medium", Helvetica;
  font-weight: 500;
  color: var(--erp-blk);
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 48px;
}

.ERP-landing-page .frame-7 {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .text-wrapper-7 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  background: linear-gradient(
    130deg,
    rgba(244, 190, 25, 0.7) 33%,
    rgba(0, 111, 181, 1) 57%
  );
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: "Outfit-Medium", Helvetica;
  font-weight: 500;
  color: transparent;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.ERP-landing-page .text-wrapper-8 {
  position: relative;
  align-self: stretch;
  font-family: "Outfit-Regular", Helvetica;
  font-weight: 400;
  color: var(--erp-blk);
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.ERP-landing-page .div-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .frame-8 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .DETAILS-FOR-WHY {
  margin-left: -2.00px;
  display: flex;
  flex-direction: column;
  height: 148px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  margin-top: -2.00px;
  margin-bottom: -2.00px;
  background-color: var(--erp-white-1);
  border-radius: 32px;
  overflow: hidden;
  border: none;
}

.ERP-landing-page .DETAILS-FOR-WHY::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 32px;
  background: linear-gradient(
    130deg,
    rgba(244, 190, 25, 0.7) 33%,
    rgba(0, 111, 181, 1) 57%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.ERP-landing-page .vector-2 {
  position: absolute;
  width: 22px;
  height: 30px;
  top: 1px;
  left: 5px;
}

.ERP-landing-page .div-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .text-wrapper-9 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Outfit-Medium", Helvetica;
  font-weight: 500;
  color: var(--erp-blk);
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 32px;
}

.ERP-landing-page .DETAILS-FOR-WHY-2 {
  display: flex;
  flex-direction: column;
  height: 148px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  margin-top: -2.00px;
  margin-bottom: -2.00px;
  background-color: var(--erp-white-1);
  border-radius: 32px;
  overflow: hidden;
  border: none;
}

.ERP-landing-page .DETAILS-FOR-WHY-2::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 32px;
  background: linear-gradient(
    130deg,
    rgba(244, 190, 25, 0.7) 33%,
    rgba(0, 111, 181, 1) 57%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.ERP-landing-page .vector-3 {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 4px;
  left: 4px;
}

.ERP-landing-page .text-wrapper-10 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Outfit-Medium", Helvetica;
  font-weight: 500;
  color: var(--erp-blk);
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.ERP-landing-page .vector-4 {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 3px;
  left: 3px;
}

.ERP-landing-page .DETAILS-FOR-WHY-3 {
  margin-right: -2.00px;
  display: flex;
  flex-direction: column;
  height: 148px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  margin-top: -2.00px;
  margin-bottom: -2.00px;
  background-color: var(--erp-white-1);
  border-radius: 32px;
  overflow: hidden;
  border: none;
}

.ERP-landing-page .DETAILS-FOR-WHY-3::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 32px;
  background: linear-gradient(
    130deg,
    rgba(244, 190, 25, 0.7) 33%,
    rgba(0, 111, 181, 1) 57%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.ERP-landing-page .img-wrapper {
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  position: relative;
  background-color: #ffffff4c;
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px) brightness(100%);
  -webkit-backdrop-filter: blur(10px) brightness(100%);
  overflow-x: scroll;
}

.ERP-landing-page .img-wrapper::-webkit-scrollbar {
  width: 0;
  display: none;
}

.ERP-landing-page .frame-9 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 610.06px;
}

.ERP-landing-page .key-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 64px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--erp-white-3);
}

.ERP-landing-page .frame-10 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .text-wrapper-11 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Outfit-Bold", Helvetica;
  font-weight: 700;
  color: var(--erp-primary);
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 56px;
  white-space: nowrap;
}

.ERP-landing-page .frame-11 {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .key-features-2 {
  display: flex;
  flex-direction: column;
  min-width: 400px;
  align-items: flex-start;
  padding: 0px 0px 0px 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.ERP-landing-page .feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 32px 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--erp-white-3);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #646464;
}

.ERP-landing-page .frame-12 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .text-wrapper-12 {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: "Outfit-Medium", Helvetica;
  font-weight: 500;
  color: var(--erp-blk);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 32px;
}

.ERP-landing-page .text-wrapper-13 {
  position: relative;
  align-self: stretch;
  height: 60px;
  font-family: "Outfit-Regular", Helvetica;
  font-weight: 400;
  color: var(--erp-blk);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.ERP-landing-page .feature-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 32px 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--erp-white-3);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--erp-gray-4);
  margin-bottom: 24px;
  overflow:visible
}

.ERP-landing-page .rectangle {
  position: absolute;
  height: 170px;
  left: -16px; /* pushes the line visually outside */
  width: 4px;
  background-color: var(--erp-primary);
  border-radius: 32px;
  transform: rotate(180deg);
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}

.frame-12 {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

img.dropdown {
  transition: transform 0.4s ease;
}

.text-wrapper-13 {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

.text-wrapper-13.active {
  opacity: 1;
  max-height: 500px; /* must be big enough for full content */
}


.feature-2.active .rectangle {
  opacity: 1;
}

.feature-3.active .rectangle {
  opacity: 1;
  
}
.feature-3 .rectangle {
  position: absolute;
  top: 0;
  height: 100%;
  left: -16px;
  width: 4px;
  background-color: var(--erp-primary);
  border-radius: 32px;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1; /* optional: ensure it appears above background */
}

.ERP-landing-page .frame-13 {
  position: relative;
  flex: 1;
  flex-grow: 1;
  height: 445px;
  border-radius: 16px;
  background: linear-gradient(
    0deg,
    rgba(0, 111, 181, 1) 0%,
    rgba(0, 111, 181, 1) 100%
  );
}

.ERP-landing-page .our-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 48px 92px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f3f4f6;
}

.ERP-landing-page .text-wrapper-14 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Outfit-Bold", Helvetica;
  font-weight: 700;
  color: var(--erp-blk);
  font-size: 48px;
  text-align: center;
  letter-spacing: 0;
  line-height: 56px;
  white-space: nowrap;
}

.ERP-landing-page .feature-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 32px 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--erp-blk);
   overflow: visible; /* ✅ prevent line from being clipped */
}
.ERP-landing-page .feature-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 32px 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--erp-blk);
   overflow: visible; /* ✅ prevent line from being clipped */
}

.ERP-landing-page .empower-field {
  position: relative;
  align-self: stretch;
  font-family: "Outfit-Regular", Helvetica;
  font-weight: 400;
  color: var(--erp-blk);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}
.empower-field.active {
  opacity: 1;
   max-height: 500px;   
}

.ERP-landing-page .explore-oil-gas-ERP {
  position: relative;
  width: fit-content;
  font-family: "Outfit-SemiBold", Helvetica;
  font-weight: 600;
  color: var(--erp-primary);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.ERP-landing-page .ri-arrow-up-line {
  position: relative;
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
}

.ERP-landing-page .vector-5 {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 4px;
  left: 4px;
  transform: rotate(-45deg);
}

.ERP-landing-page .rectangle-2 {
  position: absolute;
  width: 4px;
  height: 180px;
  top: 0;
  left: 0;
  background-color: var(--erp-white-3);
  border-radius: 32px;
  transform: rotate(180deg);
}

.ERP-landing-page .rectangle-3 {
  height: 318px;
  position: absolute;
  width: 4px;
  top: 0;
  left: 0;
  background-color: var(--erp-primary);
  border-radius: 32px;
  transform: rotate(180deg);
}

.ERP-landing-page .frame-14 {
  position: relative;
  width: 569px;
  height: 766px;
  border-radius: 16px;
  background-image: url(./img/frame-427321375.png);
  background-size: cover;
  background-position: 50% 50%;
}

.ERP-landing-page .img-2 {
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px 92px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #013759;
}

.ERP-landing-page .frame-15 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 160px 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .frame-16 {
  display: flex;
  flex-direction: column;
  width: 608px;
  align-items: flex-start;
  gap: 32px;
  position: relative;
}

.ERP-landing-page .LOGO {
  position: relative;
  width: 328px;
  height: 65px;
}

.ERP-landing-page .text-wrapper-15 {
  position: relative;
  align-self: stretch;
  font-family: "Open Sans-Regular", Helvetica;
  font-weight: 400;
  color: var(--erp-white-3);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}

.ERP-landing-page .frame-17 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px 64px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.ERP-landing-page .company {
  display: flex;
  flex-direction: column;
  width: 182.67px;
  height: 152px;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.ERP-landing-page .text-wrapper-16 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Outfit-Bold", Helvetica;
  font-weight: 700;
  color: var(--erp-white-3);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
}

.ERP-landing-page .footer-states {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .text-wrapper-17 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Open Sans-Regular", Helvetica;
  font-weight: 400;
  color: var(--erp-white-3);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.ERP-landing-page .text-wrapper-18 {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: "Open Sans-Regular", Helvetica;
  font-weight: 400;
  color: var(--erp-white-3);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}

.ERP-landing-page .resources-and {
  display: flex;
  flex-direction: column;
  width: 182.67px;
  height: 144px;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.ERP-landing-page .frame-18 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .div-4 {
  display: flex;
  flex-direction: column;
  width: 182.67px;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.ERP-landing-page .frame-19 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
  background-color: var(--erp-white-3);
}

.ERP-landing-page .frame-20 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.ERP-landing-page .ph-copyright {
  position: relative;
  width: 12px;
  height: 12px;
}

.ERP-landing-page .vector-6 {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 1px;
  left: 1px;
}

.ERP-landing-page .text-wrapper-19 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Open Sans-Regular", Helvetica;
  font-weight: 400;
  color: var(--erp-white-3);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}




 



/* ============================
   HEADER HAMBURGER AND DROPDOWN 
   ============================ */



@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px; /* more space between lines */
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 100%;
  }

  .hamburger span {
    display: block;
    width: 32px;
    height: 4px;
    background: #333;
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
  }

  /* Animate into X */
  .menu-toggle.open .hamburger span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }

  .menu-toggle.open .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open .hamburger span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 24px 20px;
    z-index: 1000;
    border-radius: 0 0 12px 12px;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.4s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.show {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
  }

  .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 10px;
	margin-right: 58px;
    border-radius: 8px;
  }
}

/* ============================
   RESPONSIVE OVERRIDES
   ============================ */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    padding-left: 15px;
    padding-right: 15px;
  }
    .ERP-landing-page .main-hero {
  background-image: url("");
  

}
}

@media screen and (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
  






/* Existing Why ERP styles - no mobile overrides */
/* ============================
   WHY ERP SECTION (Refined)
   ============================ */
@media screen and (max-width: 768px){
  .ERP-landing-page .div-3 {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    width: 90vw !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .ERP-landing-page .frame-8 {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .ERP-landing-page .frame-8 li {
    width: 100% !important;
  }

  .ERP-landing-page .img-wrapper {
    width: 90vw !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .ERP-landing-page .img-wrapper .frame-9 {
    width: 100% !important;
    height: auto !important;
  }
}






@media (max-width: 768px) {
  .nav-links {
    align-items: center; /* center all nav items horizontally */
    text-align: center;
	
  }

}






