/* ==========================================================================
   SERVICE — ORACLE EBS & ERP CLOUD PAGE
   Dedicated stylesheet; depends on shared tokens in style.css
   ========================================================================== */

/* -----------------------------------------------------------------------
   1. SERVICES BANNER  (shared pattern with MS Dynamics page)
   ----------------------------------------------------------------------- */
.svc-banner {
  position: relative;
  min-height: 140px;
  background-image: url('../images/service/Service-SAP-banner.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  pointer-events: none;
}

.svc-banner__label {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #ffffff;
  text-align: center;
  padding: 28px 0 56px;
}

/* -----------------------------------------------------------------------
   2. SERVICE TAB BAR  (shared pattern with MS Dynamics page)
   ----------------------------------------------------------------------- */
.svc-tab-bar {
  position: relative;
  z-index: 10;
  margin-top: -14px;       /* pull up so it overlaps the banner slightly */
}

.svc-tab-row {
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(16, 42, 92, 0.22);
  gap: 1.5%;
  width: calc(100% - 4.2%);
  margin: auto;
}

.svc-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #9BBFF9 100%, #266AD9 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.svc-tab:last-child {
  border-right: none;
}

.svc-tab:hover {
  background: linear-gradient(180deg, #b2d0ff 100%, #7fadf6 100%);
}

.svc-tab--active {
  background: linear-gradient(180deg, #ffffff 0%, #BED7FF 100%);
  box-shadow: 0 14px 26px rgba(16, 42, 92, 0.22);
  position: relative;
  z-index: 2;
}

.svc-tab-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.svc-tab-logo--oracle {
  height: 30px;
}

.svc-tab-logo--staff {
  height: 80px;
}

.svc-tab-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #16305c;
  line-height: 1.25;
  white-space: nowrap;
}

.svc-tab--active .svc-tab-label {
  color: #0f2a5c;
}

/* -----------------------------------------------------------------------
   3D Perspective for below menu
   ----------------------------------------------------------------------- */

.perspective-container {
  width: 100%;
  height: 15px;
  perspective: 50px; /* Adjust this value to make the 3D effect stronger or weaker */
  perspective-origin: center;
}

.box-3d {
  width: 100%;
  height: 100%;
  background:linear-gradient(0deg, #b9d4ff 0%, #a9c9ff 100%);
  transform: rotateX(15deg); /* Example 3D transform */
  transform-style: preserve-3d;
}


/* -----------------------------------------------------------------------
   3. ORACLE EBS & ERP CLOUD INTRO
   ----------------------------------------------------------------------- */
.orc-intro {
  padding: 50px 0 44px;
  background: #ffffff;
}

.orc-intro__grid {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 36px;
  align-items: flex-start;
}

/* Left: text */
.orc-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 14px;
  line-height: 1.2;
}

.orc-intro__lead {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #374151;
  font-weight: 500;
  margin-bottom: 14px;
}

.orc-intro__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #475467;
}

/* Right: image */
.orc-intro__img-col {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(16, 42, 92, 0.1);
}

.orc-intro__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.orc-intro__img-col:hover .orc-intro__img {
  transform: scale(1.03);
}

/* -----------------------------------------------------------------------
   4. ORACLE CLOUD ERP PRODUCTS — 5-CARD ROW
   ----------------------------------------------------------------------- */
.orc-products {
  padding: 54px 0 60px;
  background: var(--bg-dark-blue);
}

.orc-products__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 32px;
}

/* Mobile-only "swipe" affordance — hidden on desktop, shown via the 840px breakpoint */
.orc-products__hint {
  display: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: #7c8aa5;
  margin: -20px 0 20px;
}

/* 5 equal columns */
.orc-products__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Individual product card — the product icon artwork *is* the card
   background (image already contains the matching brand-blue backdrop),
   so title/description sit directly on top of it. */
.orc-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 430px;
  padding: 18px 14px 20px;
  border-radius: 14px;
  background-color: #1a5fd0; /* fallback while the image loads */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  box-shadow: 0 8px 22px rgba(16, 42, 92, 0.22);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.orc-product-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 16px 34px rgba(16, 42, 92, 0.3);
}

#oracle-product-financials  { background-image: url('../images/service/Oracle/Oracle-Product-img1.png'); }
#oracle-product-procurement { background-image: url('../images/service/Oracle/Oracle-Product-img2.png'); }
#oracle-product-risk        { background-image: url('../images/service/Oracle/Oracle-Product-img3.png'); }
#oracle-product-epm         { background-image: url('../images/service/Oracle/Oracle-Product-img4.png'); }
#oracle-product-scm         { background-image: url('../images/service/Oracle/Oracle-Product-img5.png'); }

.orc-product-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 1px 6px rgba(4, 16, 46, 0.35);
}

/* Card description */
.orc-product-card__desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #eaf1ff;
  text-align: center;
  text-shadow: 0 1px 6px rgba(4, 16, 46, 0.35);
}

/* -----------------------------------------------------------------------
   5. ORACLE CLOUD SUBSCRIPTION SECTION  — dark blue background
   ----------------------------------------------------------------------- */
.orc-cloud {
  padding: 0;
}

.orc-cloud__grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 0;
  min-height: 320px;
  align-items: center;
}

/* Left: image fills its column */
.orc-cloud__img-col {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  border-radius: 10px;
}

.orc-cloud__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right: text */
.orc-cloud__text-col {
  padding: 50px 48px 50px 44px;
}

.orc-cloud__desc {
  font-size: 0.97rem;
  line-height: 1.82;

}

/* -----------------------------------------------------------------------
   6. RESPONSIVE BREAKPOINTS
   ----------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .orc-intro__grid {
    grid-template-columns: 1fr 340px;
  }

  .orc-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .orc-cloud__grid {
    grid-template-columns: 1fr;
  }

  .orc-cloud__img-col {
    max-height: 300px;
  }

  .orc-cloud__text-col {
    padding: 36px 32px;
  }
}

@media (max-width: 840px) {
  .svc-tab-label {
    display: none;
  }

  .orc-intro__grid {
    grid-template-columns: 1fr;
  }

  /* Product cards become a horizontally scrollable, snapping row on mobile */
  .orc-products {
    overflow: hidden;
  }

  .orc-products__grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin: 0 -24px;
    padding: 4px 24px 18px;
  }

  .orc-product-card {
    flex: 0 0 62vw;
    max-width: 240px;
    scroll-snap-align: start;
  }

  .orc-products__title {
    margin-bottom: 8px;
  }

  .orc-products__hint {
    display: block;
  }
}

@media (max-width: 600px) {
  .svc-banner__label {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }

  .svc-tab {
    padding: 12px 8px;
  }

  .orc-product-card {
    flex-basis: 72vw;
  }

  .orc-cloud__text-col {
    padding: 28px 20px;
  }
  /*-----Service menus----------*/
  .svc-tab {
    padding: 12px 8px;
  }

  .sap-benefits__grid,
  .sap-why__grid,
  .sap-digital__grid {
    grid-template-columns: 1fr;
  }

  .sap-intro__title {
    font-size: 1.7rem;
  }
  .sap-split-col__title, .sap-split-col__desc, .sap-split-col__img-wrap {
    text-align: center; 
  }
  .sap-split-col__desc{
    padding-right: 0;
  }
  .svc-tab-logo--staff, .svc-tab-logo{
    height: 40px;
  }
}

/* =============================================================================
   service-erp.css  —  VISENT AI ERP Intro Section
   ============================================================================= */

/* -----------------------------------------------------------------------
   Section wrapper
   ----------------------------------------------------------------------- */
.erp-intro {
  padding: 0;
  background: #ffffff;
}
.erp-intro__feature img{
  height: 40px;
  width:40px
}

/* -----------------------------------------------------------------------
   Two-column grid: left = content  |  right = image
   ----------------------------------------------------------------------- */
.erp-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 340px;
}

/* -----------------------------------------------------------------------
   LEFT — text content
   ----------------------------------------------------------------------- */
.erp-intro__text-col {
  padding: 44px 48px 44px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Brand name */
.erp-intro__brand {
  font-family: var(--font-heading, 'Josefin Sans', sans-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: 0.5px;
  margin: 0 0 2px;
  line-height: 1.15;
}

/* Tagline */
.erp-intro__tagline {
  font-size: 0.92rem;
  color: #374151;
  margin: 0 0 22px;
  font-weight: 400;
}

.erp-intro__tagline strong {
  font-weight: 700;
  color: #111827;
}

/* Sub-heading */
.erp-intro__subhead {
  font-family: var(--font-heading, 'Josefin Sans', sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  margin: 0 0 12px;
}

/* Body paragraph */
.erp-intro__desc {
  font-size: 0.9rem;
  line-height: 1.78;
  color: #374151;
  margin: 0 0 28px;
}

/* -----------------------------------------------------------------------
   Feature bullets
   ----------------------------------------------------------------------- */
.erp-intro__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.erp-intro__feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Blue circular icon */
.erp-intro__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #1660cf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
}

.erp-intro__feature-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.erp-intro__feature-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.3;
}

.erp-intro__feature-sub {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
}

/* -----------------------------------------------------------------------
   RIGHT — image
   ----------------------------------------------------------------------- */
.erp-intro__img-col {
  overflow: hidden;
  line-height: 0;
}

.erp-intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -----------------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------------- */
@media (max-width: 900px) {
  .erp-intro__grid {
    grid-template-columns: 1fr;
  }

  .erp-intro__text-col {
    padding: 36px 24px;
  }

  .erp-intro__img-col {
    max-height: 280px;
  }
}

@media (max-width: 600px) {
  .erp-intro__text-col {
    padding: 28px 16px;
  }

  .erp-intro__brand {
    font-size: 1.5rem;
  }
}

/* =============================================================================
   OUR MODULES  —  card grid section
   ============================================================================= */
.erp-modules {
  padding: 60px 0 70px;
  background: #f4f7fb;
}

.erp-modules__header {
  margin-bottom: 36px;
}

.erp-modules__title {
  font-family: var(--font-heading, 'Josefin Sans', sans-serif);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: var(--primary-blue);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.erp-modules__subtitle {
  font-size: 0.92rem;
  color: #6b7280;
  margin: 0;
}

/* -----------------------------------------------------------------------
   Grid: 5 columns on desktop, responsive collapse
   ----------------------------------------------------------------------- */
.erp-modules__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* -----------------------------------------------------------------------
   Individual card
   ----------------------------------------------------------------------- */
.erp-mod-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(22, 96, 207, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.erp-mod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(22, 96, 207, 0.16);
}

/* Top image */
.erp-mod-card__img-wrap {
  width: 100%;
  height: 130px;
  overflow: hidden;
  flex-shrink: 0;
}

.erp-mod-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.erp-mod-card:hover .erp-mod-card__img-wrap img {
  transform: scale(1.05);
}

/* Text area */
.erp-mod-card__body {
  padding: 14px 14px 16px;
  flex: 1;
  text-align: center;
}

.erp-mod-card__title {
  font-family: var(--font-heading, 'Josefin Sans', sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.erp-mod-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.erp-mod-card__features li {
  font-size: 0.72rem;
  color: #4b5563;
  line-height: 1.5;
}

/* -----------------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .erp-modules__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .erp-modules__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .erp-modules__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .erp-mod-card__img-wrap {
    height: 100px;
  }


  .erp-modules {
    padding: 40px 0 50px;
  }
}

/* =============================================================================
   KEY BENEFITS  —  icon + label horizontal strip
   ============================================================================= */
.erp-benefits {
  padding: 52px 0 58px;
  background: #ffffff;
}

.erp-benefits__title {
  font-family: var(--font-heading, 'Josefin Sans', sans-serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 28px;
}

.erp-benefits__row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Each benefit pill/card */
.erp-benefit-card {
  flex: 1 1 130px;
  max-width: 160px;
  background: #f0f5ff;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 20px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  cursor: default;
}

.erp-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(22, 96, 207, 0.14);
  background: #e0ecff;
}

/* Icon circle */
.erp-benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1660cf;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(22, 96, 207, 0.35);
}

.erp-benefit-card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Label */
.erp-benefit-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 900px) {
  .erp-benefits__row {
    justify-content: center;
  }

  .erp-benefit-card {
    flex: 1 1 110px;
    max-width: 140px;
  }
}

@media (max-width: 500px) {
  .erp-benefit-card {
    flex: 1 1 90px;
    max-width: 120px;
    padding: 14px 10px 12px;
  }

  .erp-benefit-card__icon {
    width: 42px;
    height: 42px;
  }
}


