*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Inter", system-ui, sans-serif;
}

/* HEADER */
.sg-header{
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
}

.sg-mob-logo {
  display: flex;
  align-items: center;
}

.sg-logo-img {
max-width: 85px;
/*max-height: auto;*/
}

@media (max-width: 768px) {
  .sg-logo-img {
    height: 36px;      /* mobile */
  }
}
 
/* CONTAINER */
.sg-container{
  max-width:1200px;
  margin:auto;
  /*padding:18px 22px;*/
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px;
}

/* LOGO */
.sg-logo{
  font-size:22px;
  font-weight:700;
  color:#0f172a;
}

.sg-logo span{
  color: #ff9f1c;

}

/* NAV */
.sg-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
}

.sg-nav a,
.sg-service-btn{
  text-decoration:none;
  background:none;
  border:none;
  font-weight: 700;
  color:#334155;
  font-size:15px;
  cursor:pointer;
}

/* CTA */
.sg-cta a{
  padding:10px 18px;
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  color:#ffffff;
  text-decoration:none;
  border-radius:6px;
  font-size:14px;
  font-weight: 700;
}

/* SERVICES GRID */
.sg-services{
  display:none;
  border-top:1px solid #e5e7eb;
  background:#f8fafc;
}

.sg-services-grid{
  max-width:1200px;
  margin:auto;
  padding:22px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.sg-services-grid a{
  background:#ffffff;
  border:1px solid #e5e7eb;
  padding:16px;
  text-align:center;
  text-decoration:none;
  color:#334155;
  font-size:14px;
  border-radius:6px;
  font-weight: 600;
}

/* MOBILE */
.sg-menu{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:992px){

  .sg-container{
    grid-template-columns:auto auto;
  }

  .sg-nav{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#ffffff;
    flex-direction:column;
    padding:20px;
    gap:18px;
    border-top:1px solid #e5e7eb;
  }

  .sg-nav.open{
    display:flex;
  }

  .sg-menu{
    display:block;
  }

  .sg-services-grid{
    grid-template-columns:1fr;
  }

}

   /* ================= MOBILE HEADER ================= */

.sg-mobile-header {
  display: none;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

/* ===== Overlay ===== */
.sg-mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 998;
}

/* Show overlay when menu open */
.sg-mob-overlay.active {
  display: block;
}

/* ===== Close icon ===== */
.sg-mob-close {
  font-size: 24px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 10px;
}

/* Top bar */
.sg-mob-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px 0px 0px;
}

.sg-mob-logo {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.sg-mob-logo span {
  color: #ff9f1c;
}

.sg-mob-toggle {
  font-size: 26px;
  cursor: pointer;
}

/* Side menu */
.sg-mob-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: right 0.3s ease;
  z-index: 999;
  border-left: 1px solid #e5e7eb;
}

.sg-mob-menu.open {
  right: 0;
}

/* Logo inside menu */
.sg-mob-menu-logo {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sg-mob-menu-logo span {
  color: #e63946
}

/* Links */
.sg-mob-menu a,
.sg-mob-service-btn {
  text-decoration: none;
  /* background: linear-gradient(135deg, #e63946, #ff9f1c); */
  border: none;
  color:black;
  font-size: 15px;
  text-align: left;
}

/* Services */
.sg-mob-services {
  display: none;
  padding-left: 10px;
}

.sg-mob-services.open {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* CTA */
.sg-mob-cta {
  margin-top: auto;
  padding: 12px;
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  color: white;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
}
.white{
  color: white;
}
.sg-mob-logo-img{
  height:34px;
  width:auto;
}

.sg-mob-menu-logo-img{
  height:40px;
  width:auto;
  margin-bottom:20px;
}

/* Responsive switch */
@media (max-width: 992px) {
  .sg-header { display: none; }        /* desktop hide */
  .sg-mobile-header { display: block; }
}

  
/* hero section  of index page */


.dp-hero {
  position: relative;
  min-height: 100vh;
  background: url("hero-printing.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 8%;
  color: #fff;
  overflow: hidden;
}

.dp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.55)
  );
}

.dp-hero-content {
  position: relative;
  max-width: 720px;
  z-index: 2;
}

.dp-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
}

.dp-hero h1 span {
  color: #f4c430;
}

.dp-hero p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 30px;
}

.dp-hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.dp-hero-services span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 13px 46px;
  border-radius: 30px;
  font-size: 14px;
  backdrop-filter: blur(6px);
}

.dp-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dp-btn {
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dp-btn.primary {
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  color: #fff;
  font-weight: 600;
}

 

.dp-btn.outline {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
}

.dp-btn.outline:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .dp-hero {
    padding: 70px 6%;
    text-align: center;
  }

  .dp-hero-services {
    justify-content: center;
  }

  .dp-hero-buttons {
    justify-content: center;
  }
}


.dp-about {
  padding: 90px 8%;
  background: linear-gradient(180deg, #f7f7f7, #ffffff);
}

.dp-about-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.dp-about-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f4c430;
  margin-bottom: 12px;
}

.dp-about-text h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 20px;
}

.dp-about-text h2 span {
  display: block;
  color: #222;
  font-weight: 700;
}

.dp-about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

.dp-about-points {
  margin: 22px 0 32px;
  padding: 0;
  list-style: none;
}

.dp-about-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.dp-about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f4c430;
  font-weight: bold;
}

.dp-about-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #111;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.dp-about-btn:hover {
  background:  linear-gradient(135deg, #e63946, #ff9f1c);
  color: #fff;
  font-weight: 600;
}

/* RIGHT */
.dp-about-visual {
  display: flex;
  justify-content: center;
}

.dp-about-card {
  background: #111;
  color: #fff;
  padding: 40px;
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.dp-about-card h4 {
  font-size: 22px;
  margin-bottom: 24px;
  text-align: center;
}

.dp-about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.dp-about-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.dp-about-item:hover {
  background: #f4c430;
  color: #000;
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dp-about-container {
    grid-template-columns: 1fr;
  }

  .dp-about-visual {
    order: -1;
  }
}

@media (max-width: 600px) {
  .dp-about {
    padding: 70px 6%;
    text-align: center;
  }

  .dp-about-points li {
    padding-left: 0;
  }

  .dp-about-points li::before {
    display: none;
  }
}

/* service section css*/

.dp-services {
  padding: 90px 8%;
  background: #0f0f0f;
  color: #fff;
}

.dp-services-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.dp-services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.dp-services-header h6 {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f4c430;
  margin-bottom: 10px;
}

.dp-services-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}

.dp-services-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
}

/* GRID */
.dp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.dp-service-card {
  background: linear-gradient(180deg, #1b1b1b, #121212);
  border-radius: 18px;
  padding: 34px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.dp-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(244,196,48,0.15),
    transparent 60%
  );
  opacity: 0;
  transition: 0.3s;
}

.dp-service-card:hover::before {
  opacity: 1;
}

.dp-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244,196,48,0.4);
}

.dp-service-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 700;
}

.dp-service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #d5d5d5;
  margin-bottom: 18px;
}

.dp-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dp-service-card ul li {
  font-size: 14px;
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

.dp-service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f4c430;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .dp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dp-services {
    padding: 70px 6%;
  }

  .dp-services-grid {
    grid-template-columns: 1fr;
  }
}

 

.dp-about {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.dp-about.dp-show {
  opacity: 1;
  transform: translateY(0);
}
 

.dp-service-card {
  opacity: 0;
  transform: translateY(30px);
}

.dp-service-card.dp-visible {
  opacity: 1;
  transform: translateY(0);
}
 

/* cta section css */
.dp-cta-3d {
  padding: 120px 8%;
  background: radial-gradient(circle at top, #1a1a1a, #050505);
  perspective: 1200px;
  overflow: hidden;
}

.dp-cta-wrap {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 80px 60px;
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.01)
  );
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  box-shadow:
    0 50px 120px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* 3D FLOATING SHAPES */
.dp-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  transform-style: preserve-3d;
}

.dp-shape.one {
  width: 220px;
  height: 220px;
  background: #f4c430;
  top: -60px;
  left: -60px;
  transform: translateZ(-120px);
}

.dp-shape.two {
  width: 300px;
  height: 300px;
  background: #ff6a00;
  bottom: -80px;
  right: -100px;
  transform: translateZ(-180px);
}

.dp-shape.three {
  width: 160px;
  height: 160px;
  background: #ffffff;
  top: 50%;
  right: 15%;
  transform: translateZ(-80px);
}

/* CONTENT */
.dp-cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.dp-cta-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 22px;
}

.dp-cta-content h2 span {
  color: #f4c430;
}

.dp-cta-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 38px;
}

/* BUTTONS */
.dp-cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.dp-cta-btn {
  padding: 16px 38px;
  border-radius: 40px;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
}

.dp-cta-btn.primary {
  background: linear-gradient(135deg, #f4c430, #ff9f00);
  color: #000;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(244,196,48,0.35);
}

.dp-cta-btn.primary:hover {
  transform: translateY(-4px) scale(1.05);
}

.dp-cta-btn.ghost {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}

.dp-cta-btn.ghost:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .dp-cta-wrap {
    padding: 60px 26px;
  }

  .dp-cta-actions {
    justify-content: center;
  }

  .dp-cta-3d {
    text-align: center;
  }
}


.dp-cta-blueprint {
  position: relative;
  padding: 140px 8%;
  background: #05070c;
  overflow: hidden;
  perspective: 1400px;
}

/* grid background */
.dp-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: rotateX(60deg) translateY(100px);
  transform-origin: center;
}

/* blueprint box */
.dp-blueprint-box {
  position: relative;
  max-width: 820px;
  margin: auto;
  padding: 60px 70px;
  background: rgba(10,15,30,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 
    0 40px 120px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  transform: rotateX(8deg) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.dp-cta-blueprint:hover .dp-blueprint-box {
  transform: rotateX(0deg) rotateY(0deg);
}

.dp-blueprint-box h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 18px;
}

.dp-blueprint-box h2 span {
  color: #4fd1ff;
}

.dp-blueprint-box p {
  font-size: 17px;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 650px;
}

/* buttons */
.dp-blueprint-actions {
  margin-top: 36px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.dp-blue-btn {
  padding: 16px 38px;
  border-radius: 6px;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.dp-blue-btn.fill {
  background: linear-gradient(135deg, #4fd1ff, #38bdf8);
  color: #00131f;
  font-weight: 700;
  box-shadow: 0 15px 40px rgba(79,209,255,0.35);
}

.dp-blue-btn.fill:hover {
  transform: translateY(-3px);
}

.dp-blue-btn.outline {
  border: 1px solid #4fd1ff;
  color: #4fd1ff;
}

.dp-blue-btn.outline:hover {
  background: #4fd1ff;
  color: #00131f;
}

/* scanning line */
.dp-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4fd1ff, transparent);
  animation: scan 6s linear infinite;
}

@keyframes scan {
  0% { top: 0; }
  100% { top: 100%; }
}

/* responsive */
@media (max-width: 768px) {
  .dp-blueprint-box {
    padding: 40px 30px;
    transform: none;
  }

  .dp-grid {
    transform: none;
  }
}


.mh-footer-legal{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.mh-footer-legal a{
  color:inherit;
  text-decoration:none;
  font-size:14px;
}

.mh-footer-legal a:hover{
  text-decoration:underline;
}

.mh-sep{
  opacity:.6;
}


.mh-footer {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  margin-top: 140px;
}

/* die-cut top */
.mh-diecut {
  display: block;
  width: 100%;
  height: 120px;
}

.mh-diecut path {
  fill: #ffffff;
}

/* ink flow */
.mh-ink-flow {
  position: absolute;
  top: 140px;
  left: -40%;
  width: 180%;
  height: 120px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220,38,38,0.15),
    rgba(239,68,68,0.35),
    rgba(220,38,38,0.15),
    transparent
  );
  filter: blur(40px);
  animation: inkMove 14s linear infinite;
}

@keyframes inkMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(30%); }
}

/* content */
.mh-footer-inner {
  max-width: 1300px;
  margin: auto;
  padding: 100px 6% 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* brand */
.mh-brand h2 {
  font-size: 36px;
  font-weight: 900;
  color: #111827;
}

.mh-brand p {
  margin-top: 10px;
  font-size: 15px;
  color: #4b5563;
}

/* info grid */
.mh-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 70px 0;
}

.mh-info {
  position: relative;
  padding-top: 26px;
}

.mh-reg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 6px;
  background: #facc15;
}

.mh-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mh-info p {
  font-size: 14px;
  color: #6b7280;
}

/* nav */
.mh-footer-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 50px;
}

.mh-footer-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.mh-footer-nav a:hover {
  color: #dc2626;
}

/* CTA */
.mh-footer-cta a {
  display: inline-block;
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  color: #fff;
  padding: 16px 44px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(239,68,68,0.35);
}

.mh-footer-cta a:hover {
  transform: translateY(-3px);
}

/* bottom */
.mh-footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 20px 6%;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

.mh-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #facc15;
  border-radius: 50%;
  margin: 0 8px;
}

.mh-curated {
  font-size: 12px;
  color: #9ca3af;
}

/* responsive */
@media (max-width: 900px) {
  .mh-info-grid {
    grid-template-columns: 1fr;
  }

  .mh-footer-nav {
    flex-wrap: wrap;
  }
}


/* team section css */
/* ================= TEAM SECTION ================= */

.team-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.team-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-subtitle {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff9f1c;
  margin-bottom: 10px;
}

.team-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 12px;
}

.team-desc {
  max-width: 600px;
  margin: auto;
  font-size: 16px;
  color: #6b7280;
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.team-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* Image */
.team-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f1f1f1;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.team-name {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.team-role {
  font-size: 14px;
  color: #6b7280;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-title {
    font-size: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}


.contact-section {
  padding: 80px 20px;
  background: #f9fafb;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

/* FORM BOX */
.contact-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.contact-form-box h2 {
  font-size: 32px;
  color: #111827;
  margin-bottom: 8px;
}

.contact-form-box p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 30px;
}

/* FORM */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #ff9f1c;
  box-shadow: 0 0 0 2px rgba(230,57,70,0.15);
}

.contact-form textarea {
  resize: none;
  margin-bottom: 20px;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(230,57,70,0.35);
}

/* MAP */
.contact-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-map-box iframe {
    min-height: 300px;
  }
}

@media (max-width: 500px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 30px 22px;
  }
}

.contact-info-section {
  padding: 70px 20px;
  background: #f9fafc;
}

.contact-info-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.contact-info-title {
  font-size: 32px;
  font-weight: 700;
  color: #0c1c38;
  margin-bottom: 10px;
}

.contact-info-subtitle {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 16px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.contact-info-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: #f58b29;
  color: #ffffff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.contact-info-card h4 {
  font-size: 18px;
  color: #0c1c38;
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-weight: 700;
}

.contact-info-card a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 576px) {
  .contact-info-title {
    font-size: 26px;
  }
}


.why-contact-unique {
  padding: 90px 20px;
  background: #ffffff;
}

.why-contact-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.why-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f58b29;
  margin-bottom: 12px;
  display: inline-block;
}

.why-left h2 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #0c1c38;
  margin-bottom: 16px;
}

.why-desc {
  font-size: 16px;
  color: #4b5563;
  max-width: 480px;
}

/* RIGHT LIST */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-dot {
  width: 10px;
  height: 10px;
  background: #f58b29;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0c1c38;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-contact-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-left h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .why-contact-unique {
    padding: 70px 16px;
  }

  .why-left h2 {
    font-size: 26px;
  }

  .why-desc {
    font-size: 15px;
  }
}


.trust-metrics {
  padding: 90px 20px;
  background: #f9fafb;
}

.trust-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.trust-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.trust-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f58b29;
  margin-bottom: 12px;
}

.trust-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0c1c38;
  margin-bottom: 14px;
}

.trust-header p {
  font-size: 16px;
  color: #4b5563;
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.trust-item {
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.trust-item:not(:last-child) {
  border-right: 1px solid #e5e7eb;
}

/* NUMBERS */
.trust-number {
  font-size: 42px;
  font-weight: 700;
  color: #0c1c38;
  display: inline-block;
}

.trust-plus {
  font-size: 24px;
  font-weight: 600;
  color: #f58b29;
  margin-left: 4px;
}

.trust-item p {
  margin-top: 8px;
  font-size: 15px;
  color: #6b7280;
}

/* BRAND BLOCK */
.trust-brand h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0c1c38;
  margin-bottom: 6px;
}

.trust-curated {
  font-size: 14px;
  color: #6b7280;
}

.trust-line {
  width: 40px;
  height: 3px;
  background: #f58b29;
  display: block;
  margin: 12px auto;
  border-radius: 2px;
}

.trust-tag {
  font-size: 14px;
  color: #4b5563;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none !important;
    border-bottom: 1px solid #e5e7eb;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .trust-header h2 {
    font-size: 28px;
  }
}


.office-gallery {
  padding: 90px 20px;
  background: #ffffff;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.gallery-header {
  max-width: 650px;
  margin: 0 auto 60px;
  text-align: center;
}

.gallery-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f58b29;
  display: inline-block;
  margin-bottom: 12px;
}

.gallery-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0c1c38;
  margin-bottom: 14px;
}

.gallery-header p {
  font-size: 16px;
  color: #4b5563;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* TAG */
.gallery-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(12, 28, 56, 0.85);
  color: #ffffff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
}

/* LIGHTBOX */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 34px;
  color: #ffffff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .gallery-header h2 {
    font-size: 28px;
  }
}


.conversion-cta {
  padding: 80px 20px;
  background: #0c1c38;
  color: #ffffff;
}

.conversion-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.conversion-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f58b29;
  margin-bottom: 12px;
  display: inline-block;
}

.conversion-left h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.conversion-left p {
  font-size: 16px;
  color: #d1d5db;
  max-width: 480px;
}

/* RIGHT */
.conversion-right {
  background: #ffffff;
  color: #111827;
  padding: 35px;
  border-radius: 18px;
}

.inquiry-box label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.inquiry-box select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  margin-bottom: 20px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
}

.cta-btn.whatsapp {
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
}

.cta-btn.callback {
  background: #f58b29;
  color: #ffffff;
  text-decoration: none;
}

/* MODAL */
.callback-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.callback-box {
  background: #ffffff;
  padding: 30px;
  width: 100%;
  max-width: 360px;
  border-radius: 14px;
  text-align: center;
}

.callback-box h3 {
  margin-bottom: 16px;
  color: #0c1c38;
}

.callback-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.callback-box button {
  width: 100%;
  padding: 12px;
  background: #f58b29;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
}

.callback-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .conversion-wrap {
    grid-template-columns: 1fr;
  }

  .conversion-left h2 {
    font-size: 30px;
  }
}


.industries-section {
  padding: 80px 20px;
  background: #ffffff;
}

.industries-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.industries-header {
  max-width: 650px;
  margin: 0 auto 50px;
  text-align: center;
}

.industries-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f58b29;
  display: inline-block;
  margin-bottom: 10px;
}

.industries-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0c1c38;
  margin-bottom: 12px;
}

.industries-header p {
  font-size: 16px;
  color: #4b5563;
}

/* GRID */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* ITEM */
.industry-item {
  padding: 30px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s ease;
}

.industry-item:hover {
  border-color: #f58b29;
  transform: translateY(-6px);
}

.industry-icon {
  font-size: 34px;
  display: block;
  margin-bottom: 12px;
}

.industry-item h4 {
  font-size: 17px;
  font-weight: 600;
  color: #0c1c38;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .industries-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .industries-header h2 {
    font-size: 26px;
  }
}


.values-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.values-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.values-header {
  max-width: 650px;
  margin: 0 auto 50px;
  text-align: center;
}

.values-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f58b29;
  display: inline-block;
  margin-bottom: 10px;
}

.values-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0c1c38;
  margin-bottom: 12px;
}

.values-header p {
  font-size: 16px;
  color: #4b5563;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

/* ITEM */
.value-item {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: 0.3s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  border-color: #f58b29;
}

/* ICON */
.value-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

/* TEXT */
.value-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0c1c38;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .values-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .values-header h2 {
    font-size: 26px;
  }
}


.qa-industrial {
  padding: 100px 20px;
  background: #ffffff;
}

.qa-wrap {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.qa-head {
  max-width: 680px;
  margin-bottom: 80px;
}

.qa-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f58b29;
  display: inline-block;
  margin-bottom: 12px;
}

.qa-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0c1c38;
  margin-bottom: 14px;
  line-height: 1.2;
}

.qa-head p {
  font-size: 16px;
  color: #4b5563;
}

/* TIMELINE */
.qa-timeline {
  position: relative;
  padding-left: 60px;
}

.qa-line {
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

/* ROW */
.qa-row {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
}

.qa-row:last-child {
  margin-bottom: 0;
}

/* INDEX */
.qa-index {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #f58b29;
  color: #f58b29;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  flex-shrink: 0;
  font-size: 14px;
}

/* CONTENT */
.qa-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0c1c38;
  margin-bottom: 6px;
}

.qa-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 520px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .qa-head h2 {
    font-size: 32px;
  }

  .qa-timeline {
    padding-left: 40px;
  }

  .qa-row {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .qa-head h2 {
    font-size: 26px;
  }

  .qa-timeline {
    padding-left: 0;
  }

  .qa-line {
    display: none;
  }

  .qa-row {
    flex-direction: column;
    gap: 12px;
  }

  .qa-index {
    margin-bottom: 6px;
  }
}

.factory-flow {
  padding: 100px 20px;
  background: #f9fafb;
}

.flow-wrap {
  max-width: 1300px;
  margin: auto;
}

/* HEADER */
.flow-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.flow-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f58b29;
  margin-bottom: 12px;
  display: inline-block;
}

.flow-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0c1c38;
  margin-bottom: 14px;
}

.flow-header p {
  font-size: 16px;
  color: #4b5563;
}

/* LAYOUT */
.flow-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.flow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  filter: grayscale(10%);
}

/* FLOW */
.flow-diagram {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.flow-step {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px 22px;
  transition: 0.3s ease;
}

.flow-step:hover {
  border-color: #f58b29;
}

.flow-number {
  font-size: 14px;
  font-weight: 700;
  color: #f58b29;
  margin-bottom: 8px;
  display: block;
}

.flow-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0c1c38;
  margin-bottom: 6px;
}

.flow-step p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .flow-layout {
    grid-template-columns: 1fr;
  }

  .flow-image {
    order: -1;
  }

  .flow-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .flow-header h2 {
    font-size: 26px;
  }
}


.about-intro {
  padding: 100px 20px;
  background: #ffffff;
}

.about-wrap {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* TEXT */
.about-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f58b29;
  display: inline-block;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0c1c38;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-lead {
  font-size: 17px;
  color: #374151;
  margin-bottom: 14px;
  font-weight: 500;
}

.about-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* LIST */
.about-list {
  margin: 20px 0 24px;
  padding-left: 18px;
}

.about-list li {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 8px;
}

/* INDUSTRIES */
.about-industries span {
  font-size: 14px;
  font-weight: 600;
  color: #0c1c38;
}

.about-industries p {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  filter: grayscale(10%);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    order: -1;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 26px;
  }

  .about-lead {
    font-size: 16px;
  }
}


.pharma-hero {
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.55));
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

.pharma-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.pharma-tag {
  display: inline-block;
  background: rgba(245,139,41,0.15);
  color: #f58b29;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
}

.pharma-hero-content h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.pharma-hero-content h1 span {
  color: #f58b29;
}

.pharma-hero-content p {
  font-size: 17px;
  color: #cfd8e3;
  max-width: 520px;
  margin-bottom: 35px;
}

.pharma-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700, #f58b29);
  color: #0c1c38;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid #f58b29;
  color: #f58b29;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT */
.pharma-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.expert-card {
  position: absolute;
  background: #fff;
  color: #0c1c38;
  width: 220px;
  padding: 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  opacity: 0;
  transform: scale(0.85);
  transition: 0.6s ease;
}

.expert-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.expert-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.expert-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.expert-card span {
  font-size: 13px;
  color: #f58b29;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pharma-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pharma-hero-content p {
    margin: auto auto 35px;
  }

  .pharma-actions {
    justify-content: center;
  }

  .pharma-hero-visual {
    margin-top: 60px;
    height: 260px;
  }
}

.qc-leadership {
  background: #f8f9fb;
  padding: 100px 20px;
}

.qc-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.qc-header {
  text-align: center;
  max-width: 680px;
  margin: auto auto 70px;
}

.qc-badge {
  display: inline-block;
  background: rgba(245, 139, 41, 0.15);
  color: #f58b29;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 18px;
}

.qc-header h2 {
  font-size: 36px;
  color: #0c1c38;
  margin-bottom: 16px;
}

.qc-header p {
  font-size: 16px;
  color: #5b677a;
}

/* GRID */
.qc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.qc-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.qc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.qc-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* INFO */
.qc-info {
  padding: 26px;
}

.qc-info h4 {
  font-size: 18px;
  color: #0c1c38;
  margin-bottom: 6px;
}

.qc-info span {
  display: block;
  font-size: 13px;
  color: #f58b29;
  font-weight: 600;
  margin-bottom: 14px;
}

.qc-info p {
  font-size: 15px;
  color: #4a5668;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .qc-grid {
    grid-template-columns: 1fr;
  }

  .qc-image img {
    height: 220px;
  }
}


.pp-verification {
  background: #ffffff;
  padding: 100px 20px;
}

.pp-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.pp-header {
  max-width: 700px;
  margin-bottom: 70px;
}

.pp-badge {
  display: inline-block;
  background: rgba(245, 139, 41, 0.12);
  color: #f58b29;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 16px;
}

.pp-header h2 {
  font-size: 36px;
  color: #0c1c38;
  margin-bottom: 14px;
}

.pp-header p {
  font-size: 16px;
  color: #5b677a;
  line-height: 1.6;
}

/* GRID */
.pp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.pp-card {
  background: #f8f9fb;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: all 0.35s ease;
  border-left: 4px solid transparent;
}

.pp-card:hover {
  border-left: 4px solid #f58b29;
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* ICON */
.pp-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #ffd700, #f58b29);
  color: #0c1c38;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* TEXT */
.pp-card h4 {
  font-size: 18px;
  color: #0c1c38;
  margin-bottom: 10px;
}

.pp-card p {
  font-size: 15px;
  color: #4a5668;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pp-grid {
    grid-template-columns: 1fr;
  }

  .pp-header {
    text-align: center;
    margin: auto auto 60px;
  }
}


.pp-experts {
  background: #f8f9fb;
  padding: 100px 20px;
}

.ppx-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.ppx-header {
  max-width: 720px;
  margin-bottom: 70px;
}

.ppx-badge {
  display: inline-block;
  background: rgba(245, 139, 41, 0.15);
  color: #f58b29;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 16px;
}

.ppx-header h2 {
  font-size: 36px;
  color: #0c1c38;
  margin-bottom: 14px;
}

.ppx-header p {
  font-size: 16px;
  color: #5b677a;
  line-height: 1.6;
}

/* GRID */
.ppx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.ppx-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ppx-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.ppx-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* INFO */
.ppx-info {
  padding: 26px;
}

.ppx-info h4 {
  font-size: 18px;
  color: #0c1c38;
  margin-bottom: 6px;
}

.ppx-info span {
  display: block;
  font-size: 13px;
  color: #f58b29;
  font-weight: 600;
  margin-bottom: 14px;
}

.ppx-info p {
  font-size: 15px;
  color: #4a5668;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ppx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ppx-grid {
    grid-template-columns: 1fr;
  }

  .ppx-header {
    text-align: center;
    margin: auto auto 60px;
  }
}


.inf3d-testimonial {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8f9fc, #ffffff);
  overflow: hidden;
}

.inf3d-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.inf3d-title {
  font-size: 38px;
  color: #0c1c38;
}

.inf3d-subtitle {
  max-width: 560px;
  margin: 10px auto 50px;
  color: #555;
}

/* Slider */
.inf3d-slider {
  overflow: hidden;
  perspective: 1200px;
}

.inf3d-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: inf3d-scroll 30s linear infinite;
}

/* Card */
.inf3d-card {
  width: 340px;
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(12, 28, 56, 0.12);
  transform: rotateY(-6deg) translateZ(0);
  transition: transform 0.4s ease;
}

.inf3d-card:hover {
  transform: rotateY(0deg) scale(1.05);
}

.inf3d-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

/* User */
.inf3d-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.inf3d-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #f58b29;
}

.inf3d-user h4 {
  margin: 0;
  font-size: 15px;
  color: #0c1c38;
}

.inf3d-user span {
  font-size: 13px;
  color: #777;
}

/* Infinite animation */
@keyframes inf3d-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .inf3d-card {
    width: 260px;
    padding: 25px;
  }

  .inf3d-title {
    font-size: 28px;
  }
}

/* Hover par infinite slider pause */
.inf3d-slider:hover .inf3d-track {
  animation-play-state: paused;
}



/* service details page css */
.dfp-service-section {
  padding: 100px 20px;
  background: #ffffff;
}

.dfp-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Content */
.dfp-badge {
  display: inline-block;
  background: #f58b29;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.dfp-title {
  font-size: 40px;
  color: #0c1c38;
  margin-bottom: 18px;
}

.dfp-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 26px;
}

.dfp-features {
  list-style: none;
  padding: 0;
  margin-bottom: 34px;
}

.dfp-features li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.dfp-features i {
  color: #f58b29;
  margin-top: 4px;
}

.dfp-btn {
  display: inline-block;
  background: #0c1c38;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.dfp-btn:hover {
  background: #f58b29;
  color: #0c1c38;
}

/* Visual Card */
.dfp-visual {
  display: flex;
  justify-content: center;
}

.dfp-card {
  background: #f8f9fc;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(12, 28, 56, 0.08);
}

.dfp-card h4 {
  font-size: 20px;
  color: #0c1c38;
  margin-bottom: 14px;
}

.dfp-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 26px;
}

.dfp-stats {
  display: flex;
  gap: 20px;
}

.dfp-stats div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.dfp-stats strong {
  color: #f58b29;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .dfp-container {
    grid-template-columns: 1fr;
  }

  .dfp-title {
    font-size: 30px;
  }
}


.dfp-process-section {
  padding: 100px 20px;
  background: #f8f9fc;
}

.dfp-process-container {
  max-width: 1200px;
  margin: auto;
}

.dfp-process-header {
  text-align: center;
  margin-bottom: 70px;
}

.dfp-process-badge {
  display: inline-block;
  background: #0c1c38;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 16px;
}

.dfp-process-title {
  font-size: 38px;
  color: #0c1c38;
  margin-bottom: 14px;
}

.dfp-process-subtitle {
  max-width: 620px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

/* Grid */
.dfp-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Card */
.dfp-process-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(12, 28, 56, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.dfp-process-card:hover {
  transform: translateY(-8px);
}

.dfp-step {
  position: absolute;
  top: -18px;
  left: 24px;
  background: #f58b29;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
}

.dfp-process-card h4 {
  margin-top: 18px;
  font-size: 18px;
  color: #0c1c38;
  margin-bottom: 12px;
}

.dfp-process-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .dfp-process-title {
    font-size: 28px;
  }
}



.dfp-faq-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff, #f8f9fc);
}

.dfp-faq-container {
  max-width: 900px;
  margin: auto;
}

/* Header */
.dfp-faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.dfp-faq-badge {
  display: inline-block;
  background: #0c1c38;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
}

.dfp-faq-title {
  font-size: 36px;
  color: #0c1c38;
  margin-bottom: 12px;
}

.dfp-faq-subtitle {
  max-width: 600px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

/* FAQ Item */
.dfp-faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(12, 28, 56, 0.08);
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.dfp-faq-item:hover {
  box-shadow: 0 22px 44px rgba(12, 28, 56, 0.12);
}

/* Question */
.dfp-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 500;
  color: #0c1c38;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.dfp-faq-question i {
  color: #f58b29;
  transition: transform 0.3s ease;
}

/* Answer */
.dfp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.dfp-faq-answer p {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Active state */
.dfp-faq-item.active .dfp-faq-answer {
  max-height: 400px;
}

.dfp-faq-item.active .dfp-faq-question i {
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 768px) {
  .dfp-faq-title {
    font-size: 28px;
  }

  .dfp-faq-question {
    font-size: 15px;
    padding: 18px 20px;
  }
}

.dfp-trust-section {
  padding: 90px 20px;
  background: #f8f9fc;
  overflow: hidden;
}

.dfp-trust-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.dfp-trust-header {
  text-align: center;
  margin-bottom: 60px;
}

.dfp-trust-badge {
  display: inline-block;
  background: #f58b29;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
}

.dfp-trust-title {
  font-size: 36px;
  color: #0c1c38;
  margin-bottom: 12px;
}

.dfp-trust-subtitle {
  max-width: 620px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

/* Slider */
.dfp-logo-slider {
  overflow: hidden;
}

.dfp-logo-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: dfp-logo-scroll 28s linear infinite;
}

/* Pause on hover */
.dfp-logo-slider:hover .dfp-logo-track {
  animation-play-state: paused;
}

/* Logo item */
.dfp-logo-item img {
  max-height: 70px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.dfp-logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes dfp-logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .dfp-trust-title {
    font-size: 28px;
  }

  .dfp-logo-item img {
    max-height: 50px;
  }

  .dfp-logo-track {
    gap: 40px;
  }
}



.emb-service-section {
  padding: 100px 20px;
  background: #ffffff;
}

.emb-service-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Content */
.emb-service-badge {
  display: inline-block;
  background: #f58b29;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 16px;
}

.emb-service-title {
  font-size: 38px;
  color: #0c1c38;
  margin-bottom: 18px;
}

.emb-service-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}

.emb-service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.emb-service-features li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.emb-service-btn {
  display: inline-block;
  background: #0c1c38;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.emb-service-btn:hover {
  background: #f58b29;
  color: #0c1c38;
}

/* Visual Card */
.emb-service-visual {
  display: flex;
  justify-content: center;
}

.emb-service-card {
  background: #f8f9fc;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(12, 28, 56, 0.08);
}

.emb-service-card h4 {
  font-size: 20px;
  color: #0c1c38;
  margin-bottom: 14px;
}

.emb-service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
}

.emb-service-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.emb-service-tags span {
  background: rgba(245, 139, 41, 0.15);
  color: #f58b29;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .emb-service-container {
    grid-template-columns: 1fr;
  }

  .emb-service-title {
    font-size: 30px;
  }
}


.emb-process-section {
  padding: 100px 20px;
  background: #f8f9fc;
}

.emb-process-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.emb-process-header {
  text-align: center;
  margin-bottom: 70px;
}

.emb-process-badge {
  display: inline-block;
  background: #f58b29;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
}

.emb-process-title {
  font-size: 38px;
  color: #0c1c38;
  margin-bottom: 14px;
}

.emb-process-subtitle {
  max-width: 620px;
  margin: auto;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Steps Grid */
.emb-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Step Card */
.emb-step-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(12, 28, 56, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.emb-step-card:hover {
  transform: translateY(-8px);
}

.emb-step-number {
  position: absolute;
  top: -18px;
  left: 24px;
  background: #0c1c38;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
}

.emb-step-card h4 {
  margin-top: 20px;
  font-size: 18px;
  color: #0c1c38;
  margin-bottom: 12px;
}

.emb-step-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .emb-process-title {
    font-size: 28px;
  }
}



.embq-faq-area {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff, #f8f9fc);
}

.embq-faq-wrapper {
  max-width: 900px;
  margin: auto;
}

/* Header */
.embq-faq-head {
  text-align: center;
  margin-bottom: 60px;
}

.embq-faq-tag {
  display: inline-block;
  background: #0c1c38;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
}

.embq-faq-title {
  font-size: 36px;
  color: #0c1c38;
  margin-bottom: 12px;
}

.embq-faq-desc {
  max-width: 600px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

/* FAQ Box */
.embq-faq-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(12, 28, 56, 0.08);
  margin-bottom: 18px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.embq-faq-box:hover {
  box-shadow: 0 22px 44px rgba(12, 28, 56, 0.12);
}

/* Button */
.embq-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 500;
  color: #0c1c38;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.embq-faq-btn i {
  color: #f58b29;
  transition: transform 0.3s ease;
}

/* Panel */
.embq-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.embq-faq-panel p {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Active State */
.embq-faq-box.embq-open .embq-faq-panel {
  max-height: 400px;
}

.embq-faq-box.embq-open .embq-faq-btn i {
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 768px) {
  .embq-faq-title {
    font-size: 28px;
  }

  .embq-faq-btn {
    font-size: 15px;
    padding: 18px 20px;
  }
}

.glb-logo-section {
  padding: 70px 20px;
  background: #f8f9fc;
  overflow: hidden;
}

.glb-logo-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.glb-logo-title {
  font-size: 22px;
  color: #0c1c38;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Slider */
.glb-logo-slider {
  overflow: hidden;
  position: relative;
}

.glb-logo-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: glb-logo-scroll 30s linear infinite;
}

/* Pause on hover */
.glb-logo-slider:hover .glb-logo-track {
  animation-play-state: paused;
}

/* Logo item */
.glb-logo-item img {
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.glb-logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes glb-logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .glb-logo-track {
    gap: 40px;
  }

  .glb-logo-item img {
    max-height: 45px;
  }

  .glb-logo-title {
    font-size: 18px;
  }
}


.ph-hero-section {
  padding: 110px 20px;
  background: linear-gradient(180deg, #0c1c38 0%, #08142b 100%);
  color: #ffffff;
}

.ph-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.ph-hero-badge {
  display: inline-block;
  background: rgba(245, 139, 41, 0.15);
  color: #f58b29;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 18px;
}

.ph-hero-title {
  font-size: 44px;
  line-height: 1.25;
  margin-bottom: 20px;
}

.ph-hero-title span {
  color: #f58b29;
}

.ph-hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #d7dcff;
  margin-bottom: 30px;
}

/* SERVICES TAGS */
.ph-hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.ph-hero-services span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* CTA */
.ph-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ph-btn-primary {
  background: #f58b29;
  color: #0c1c38;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
}

.ph-btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  text-decoration: none;
}

/* RIGHT CARD */
.ph-hero-visual {
  display: flex;
  justify-content: center;
}

.ph-hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px;
  border-radius: 18px;
  max-width: 380px;
}

.ph-hero-card h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.ph-hero-card ul {
  list-style: none;
  padding: 0;
}

.ph-hero-card li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #e5e9ff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ph-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ph-hero-services {
    justify-content: center;
  }

  .ph-hero-actions {
    justify-content: center;
  }

  .ph-hero-title {
    font-size: 32px;
  }
}


.pp-hero {
  padding: 120px 20px;
  background: #ffffff;
}

.pp-hero-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.pp-eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  color: #f58b29;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pp-title {
  font-size: 42px;
  line-height: 1.25;
  color: #0c1c38;
  margin-bottom: 22px;
}

.pp-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
  margin-bottom: 34px;
}

/* SERVICES */
.pp-services {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 28px;
  margin-bottom: 40px;
}

.pp-services div {
  font-size: 15px;
  color: #0c1c38;
  position: relative;
  padding-left: 16px;
}

.pp-services div::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f58b29;
}

/* ACTIONS */
.pp-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.pp-btn-main {
  background: #0c1c38;
  color: #ffffff;
  padding: 14px 34px;
  text-decoration: none;
  font-size: 15px;
  border-radius: 4px;
}

.pp-btn-link {
  font-size: 15px;
  color: #0c1c38;
  text-decoration: none;
  font-weight: 500;
}

/* RIGHT */
.pp-hero-right {
  border-left: 2px solid #f0f0f0;
  padding-left: 50px;
  display: grid;
  gap: 26px;
}

.pp-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #333;
}

.pp-metric strong {
  color: #f58b29;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pp-hero-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .pp-hero-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #eee;
    padding-top: 30px;
  }

  .pp-title {
    font-size: 30px;
  }

  .pp-services {
    grid-template-columns: 1fr;
  }

  .pp-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* privacy policy css */

.legal-page{
  padding:10px 16px;
  background:#f8fafc;
}

.legal-container{
  max-width:900px;
  margin:auto;
  background:#fff;
  padding:50px;
  border-radius:14px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.legal-container h1{
  font-size:34px;
  margin-bottom:10px;
}

.legal-updated{
  font-size:14px;
  opacity:.6;
  margin-bottom:30px;
}

.legal-container h2{
  margin-top:28px;
  font-size:22px;
}

.legal-container p,
.legal-container li{
  font-size:16px;
  line-height:1.7;
}


/* ===== HERO SECTION ===== */
.dlp-hero {
  background: #ffffff;
  padding: 80px 20px;
}

.dlp-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

/* BADGE */
.dlp-badge {
  display: inline-block;
  background: rgba(230, 57, 70, 0.1);
  color: #ff9f1c;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* TEXT */
.dlp-hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #222;
}

.dlp-hero-content h1 span {
  color: #ff9f1c;
}

.dlp-subheading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #444;
}

.dlp-description {
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  color: #666;
}

/* BUTTONS */
.dlp-hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dlp-btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* PRIMARY BUTTON */
.primary-btn {
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(230,57,70,0.3);
}

.primary-btn:hover {
  transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.outline-btn {
  border: 2px solid #ff9f1c;
  color: #ff9f1c;
}

.outline-btn:hover {
  background: #ff9f1c;
  color: #ffffff;
}

/* RIGHT CARD */
.dlp-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dlp-emboss-card {
  width: 260px;
  height: 180px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ff9f1c;
  box-shadow:
    inset 0 -6px 12px rgba(0,0,0,0.15),
    0 25px 40px rgba(0,0,0,0.15);
}

.dlp-emboss-card span {
  font-size: 14px;
  letter-spacing: 2px;
}

.dlp-emboss-card strong {
  font-size: 26px;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .dlp-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dlp-description {
    margin: auto;
  }

  .dlp-hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .dlp-hero {
    padding: 60px 15px;
  }

  .dlp-hero-content h1 {
    font-size: 32px;
  }
}



/* ===== DIGITAL LETTER PRESS INFO SECTION ===== */
.dlp-info {
  background: #ffffff;
  padding: 80px 20px;
}

.dlp-info-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT TEXT */
.dlp-info-text h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 18px;
}

.dlp-info-text h2 span {
  color: #ff9f1c;
}

.dlp-info-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  max-width: 480px;
}

/* RIGHT FEATURES */
.dlp-info-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dlp-feature-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 26px 22px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.dlp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* ICON */
.dlp-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

/* TEXT */
.dlp-feature-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.dlp-feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .dlp-info-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dlp-info-desc {
    margin: auto;
  }

  .dlp-info-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .dlp-icon {
    margin: 0 auto 14px;
  }
}

@media (max-width: 576px) {
  .dlp-info {
    padding: 60px 15px;
  }

  .dlp-info-text h2 {
    font-size: 30px;
  }

  .dlp-info-features {
    grid-template-columns: 1fr;
  }
}


/* ===== USE CASE SECTION ===== */
.dlp-usecase {
  background: #ffffff;
  padding: 80px 20px;
}

.dlp-usecase-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.dlp-usecase-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.dlp-usecase-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #222;
}

.dlp-usecase-header h2 span {
  color: #ff9f1c;
}

.dlp-usecase-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* GRID */
.dlp-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.dlp-usecase-card {
  background: #fafafa;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.35s ease;
}

.dlp-usecase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

/* ICON */
.dlp-usecase-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}

/* TEXT */
.dlp-usecase-card h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
}

.dlp-usecase-card span {
  font-size: 14px;
  color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .dlp-usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dlp-usecase {
    padding: 60px 15px;
  }

  .dlp-usecase-header h2 {
    font-size: 30px;
  }

  .dlp-usecase-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== WHY FLOW SECTION ===== */
.dlp-why-flow {
  background: #ffffff;
  padding: 90px 20px;
}

.dlp-why-flow-container {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.dlp-why-flow-header {
  margin-bottom: 50px;
}

.dlp-why-flow-header h2 {
  font-size: 36px;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.dlp-why-flow-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* LIST */
.dlp-flow-list {
  border-left: 2px solid #eee;
  padding-left: 30px;
}

/* ITEM */
.dlp-flow-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.dlp-flow-item:last-child {
  margin-bottom: 0;
}

/* NUMBER */
.dlp-flow-number {
  font-size: 14px;
  font-weight: 600;
  color: #ff9f1c;
  min-width: 40px;
}

/* CONTENT */
.dlp-flow-content h4 {
  font-size: 17px;
  color: #222;
  margin-bottom: 6px;
}

.dlp-flow-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
  .dlp-why-flow {
    padding: 70px 15px;
  }

  .dlp-why-flow-header h2 {
    font-size: 30px;
  }

  .dlp-flow-list {
    padding-left: 20px;
  }

  .dlp-flow-item {
    gap: 14px;
  }
}

/* ===== WHY FLOW SECTION ===== */
.dlp-why-flow {
  background: #ffffff;
  padding: 90px 20px;
}

.dlp-why-flow-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* CONTENT */
.dlp-why-flow-header {
  margin-bottom: 40px;
}

.dlp-why-flow-header h2 {
  font-size: 36px;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.dlp-why-flow-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 480px;
}

/* LIST */
.dlp-flow-list {
  border-left: 2px solid #eee;
  padding-left: 30px;
}

.dlp-flow-item {
  display: flex;
  gap: 20px;
  margin-bottom: 38px;
}

.dlp-flow-item:last-child {
  margin-bottom: 0;
}

.dlp-flow-number {
  font-size: 14px;
  font-weight: 600;
  color: #ff9f1c;
  min-width: 36px;
}

.dlp-flow-content h4 {
  font-size: 17px;
  color: #222;
  margin-bottom: 6px;
}

.dlp-flow-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* IMAGE */
.dlp-why-flow-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 50px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .dlp-why-flow-container {
    grid-template-columns: 1fr;
  }

  .dlp-why-flow-image {
    order: -1;
  }

  .dlp-why-flow-image img {
    max-height: 360px;
  }
}

@media (max-width: 576px) {
  .dlp-why-flow {
    padding: 70px 15px;
  }

  .dlp-why-flow-header h2 {
    font-size: 30px;
  }

  .dlp-flow-list {
    padding-left: 20px;
  }
}


/* ===== FAQ SECTION ===== */
.dlp-faq {
  background: #ffffff;
  padding: 90px 20px;
}

.dlp-faq-container {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.dlp-faq-header {
  margin-bottom: 50px;
}

.dlp-faq-header h2 {
  font-size: 36px;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.dlp-faq-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
}

/* FAQ LIST */
.dlp-faq-list {
  border-top: 1px solid #eee;
}

.dlp-faq-item {
  border-bottom: 1px solid #eee;
  padding: 22px 0;
}

.dlp-faq-item summary {
  font-size: 17px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.dlp-faq-item summary::-webkit-details-marker {
  display: none;
}

/* PLUS / MINUS ICON */
.dlp-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: #ff9f1c;
  transition: all 0.3s ease;
}

.dlp-faq-item[open] summary::after {
  content: "–";
}

/* ANSWER */
.dlp-faq-item p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  max-width: 700px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
  .dlp-faq {
    padding: 70px 15px;
  }

  .dlp-faq-header h2 {
    font-size: 30px;
  }

  .dlp-faq-item summary {
    font-size: 16px;
  }
}


/* ===== SPOT UV HERO ===== */
.spotuv-hero {
  background: #ffffff;
  padding: 90px 20px;
}

.spotuv-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* TAG */
.spotuv-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(230, 57, 70, 0.12);
  color: #ff9f1c;
  margin-bottom: 16px;
}

/* TEXT */
.spotuv-hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  color: #1f1f1f;
  margin-bottom: 16px;
}

.spotuv-hero-content h1 span {
  color: #ff9f1c;
  border-bottom: 3px solid #ff9f1c;
}

.spotuv-subheading {
  font-size: 20px;
  font-weight: 500;
  color: #444;
  margin-bottom: 18px;
}

.spotuv-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 520px;
}

/* BUTTONS */
.spotuv-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.spotuv-btn {
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* PRIMARY */
.spotuv-btn.primary {
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(230,57,70,0.35);
}

.spotuv-btn.primary:hover {
  transform: translateY(-2px);
}

/* OUTLINE */
.spotuv-btn.outline {
  border: 2px solid #ff9f1c;
  color: #ff9f1c;
}

.spotuv-btn.outline:hover {
  background: #ff9f1c;
  color: #ffffff;
}

/* VISUAL */
.spotuv-hero-visual {
  display: flex;
  justify-content: center;
}

.spotuv-gloss-card {
  width: 260px;
  height: 180px;
  border-radius: 18px;
  background: linear-gradient(145deg, #e63946, #ff9f1c);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow:
    inset 0 -6px 12px rgba(255,255,255,0.25),
    0 30px 50px rgba(230,57,70,0.35);
}

.spotuv-gloss-card span {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.9;
}

.spotuv-gloss-card strong {
  font-size: 34px;
  letter-spacing: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .spotuv-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .spotuv-description {
    margin: auto;
  }

  .spotuv-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .spotuv-hero {
    padding: 70px 15px;
  }

  .spotuv-hero-content h1 {
    font-size: 32px;
  }

  .spotuv-subheading {
    font-size: 18px;
  }
}
/* ===== DIGITAL LETTER PRESS EXPLAIN SECTION ===== */
.dlp-explain {
  background: #ffffff;
  padding: 90px 20px;
}

.dlp-explain-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.dlp-explain-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.dlp-explain-header h2 {
  font-size: 36px;
  color: #1f1f1f;
  margin-bottom: 14px;
}

.dlp-explain-header h2 span {
  color: #ff9f1c;
}

.dlp-explain-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* FEATURES */
.dlp-explain-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ITEM */
.dlp-explain-item {
  padding-top: 20px;
}

.dlp-explain-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #222;
}

.dlp-explain-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* ICON */
.dlp-explain-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .dlp-explain-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dlp-explain {
    padding: 70px 15px;
  }

  .dlp-explain-header h2 {
    font-size: 30px;
  }

  .dlp-explain-features {
    grid-template-columns: 1fr;
  }
}


/* ===== USE CASES SECTION ===== */
.dlp-usecases {
  background: #ffffff;
  padding: 90px 20px;
}

.dlp-usecases-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.dlp-usecases-header {
  max-width: 680px;
  margin-bottom: 50px;
}

.dlp-usecases-header h2 {
  font-size: 36px;
  color: #1f1f1f;
  margin-bottom: 12px;
}

.dlp-usecases-header h2 span {
  color: #ff9f1c;
}

.dlp-usecases-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.dlp-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.dlp-usecase-card {
  background: #fafafa;
  border-radius: 18px;
  padding: 30px 24px;
  border: 1px solid #eee;
  transition: all 0.35s ease;
}

.dlp-usecase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

/* ICON */
.dlp-usecase-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 18px;
}

/* TEXT */
.dlp-usecase-card h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
}

.dlp-usecase-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .dlp-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dlp-usecases {
    padding: 70px 15px;
  }

  .dlp-usecases-header h2 {
    font-size: 30px;
  }

  .dlp-usecases-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== BENEFITS ALT SECTION ===== */
.dlp-benefits-alt {
  background: #ffffff;
  padding: 90px 20px;
}

.dlp-benefits-alt-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.dlp-benefits-image img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 28px 45px rgba(0,0,0,0.14);
}

/* CONTENT */
.dlp-benefits-content h2 {
  font-size: 36px;
  color: #1f1f1f;
  margin-bottom: 18px;
}

.dlp-benefits-content h2 span {
  color: #ff9f1c;
  border-bottom: 3px solid #ff9f1c;
}

.dlp-benefits-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 500px;
  margin-bottom: 26px;
}

/* LIST */
.dlp-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dlp-benefits-list li {
  font-size: 15px;
  color: #444;
  margin-bottom: 14px;
  padding-left: 30px;
  position: relative;
}

.dlp-benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff9f1c;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .dlp-benefits-alt-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .dlp-benefits-content {
    text-align: center;
  }

  .dlp-benefits-intro {
    margin: 0 auto 26px;
  }

  .dlp-benefits-list li {
    padding-left: 0;
  }

  .dlp-benefits-list li::before {
    position: static;
    margin-right: 8px;
  }
}

@media (max-width: 576px) {
  .dlp-benefits-alt {
    padding: 70px 15px;
  }

  .dlp-benefits-content h2 {
    font-size: 30px;
  }
}


/* ===== RIBBON PROCESS ===== */
.dlp-ribbon-process {
  background: #ffffff;
  padding: 90px 20px;
}

.dlp-ribbon-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.dlp-ribbon-header {
  max-width: 680px;
  margin-bottom: 60px;
}

.dlp-ribbon-header h2 {
  font-size: 36px;
  color: #1f1f1f;
  margin-bottom: 12px;
}

.dlp-ribbon-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* TRACK */
.dlp-ribbon-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  position: relative;
}

/* RIBBON LINE */
.dlp-ribbon-track::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    to right,
    #e63946,
    #ff9f1c
  );
  border-radius: 10px;
  z-index: 0;
}

/* STEP */
.dlp-ribbon-step {
  background: #ffffff;
  padding: 28px 22px;
  border-radius: 18px;
  border: 1px solid #eee;
  position: relative;
  z-index: 1;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.dlp-ribbon-step:hover {
  transform: translateY(-6px);
}

/* COUNT */
.ribbon-count {
  width: 46px;
  height: 46px;
  background: #ffffff;
  border: 3px solid #ff9f1c;
  border-radius: 50%;
  color: #ff9f1c;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -52px auto 14px;
}

/* FINAL STEP */
.dlp-ribbon-step.final {
  border-color: #ff9f1c;
}

/* TEXT */
.dlp-ribbon-step h4 {
  font-size: 16px;
  color: #222;
  margin-bottom: 6px;
}

.dlp-ribbon-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .dlp-ribbon-track {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dlp-ribbon-track::before {
    top: 0;
    left: 24px;
    width: 6px;
    height: 100%;
  }

  .ribbon-count {
    margin: 0 0 12px;
  }
}

@media (max-width: 576px) {
  .dlp-ribbon-process {
    padding: 70px 15px;
  }

  .dlp-ribbon-header h2 {
    font-size: 30px;
  }
}


/* ===== MODERN FAQ SECTION ===== */
.dlp-faq-modern {
  background: #ffffff;
  padding: 90px 20px;
}

.dlp-faq-modern-container {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.dlp-faq-modern-header {
  max-width: 600px;
  margin-bottom: 50px;
}

.dlp-faq-modern-header h2 {
  font-size: 36px;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.dlp-faq-modern-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* FAQ ITEM */
.dlp-faq-modern-list {
  border-top: 1px solid #eee;
}

.dlp-faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.dlp-faq-item summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: #222;
  list-style: none;
  position: relative;
  padding-right: 34px;
}

.dlp-faq-item summary::-webkit-details-marker {
  display: none;
}

/* ICON */
.dlp-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: #ff9f1c;
  transition: transform 0.3s ease;
}

.dlp-faq-item[open] summary::after {
  content: "–";
}

/* ANSWER */
.dlp-faq-answer {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  max-width: 760px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
  .dlp-faq-modern {
    padding: 70px 15px;
  }

  .dlp-faq-modern-header h2 {
    font-size: 30px;
  }

  .dlp-faq-item summary {
    font-size: 16px;
  }
}

 .contact-success-msg {
  background: linear-gradient(135deg, #e6fffa, #ccfbf1);
  color: #065f46;
  border-left: 5px solid #0f766e;
  padding: 14px 18px;
  margin-bottom: 18px;
  border-radius: 10px;
  font-weight: 600;
  animation: fadeSlide 0.6s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.press-hero-zone {
  background: #ffffff;
  padding: 90px 20px;
  font-family: "Segoe UI", sans-serif;
}

.press-hero-grid {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 90px 1fr 320px;
  gap: 40px;
  align-items: center;
}

/* RED STRIP */
.press-hero-accent {
  background: linear-gradient(135deg, #e63946, #ff9f1c);
  height: 100%;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-hero-accent span {
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 600;
  letter-spacing: 1px;
}

/* MAIN CONTENT */
.press-hero-main h1 {
  font-size: 42px;
  line-height: 1.25;
  color: #222;
  margin-bottom: 18px;
}

.press-hero-main h1 strong {
  color: #ff9f1c;
}

.press-hero-main p {
  max-width: 520px;
  font-size: 16px;
  color: #555;
  margin-bottom: 28px;
}

/* CTA */
.press-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.press-btn-fill {
  background: #ff9f1c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.press-btn-light {
  border: 2px solid #ff9f1c;
  color: black;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* FLOATING TAGS */
.press-hero-floats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.float-chip {
  background: #fff4e6;
  border-left: 4px solid #ff9f1c;
  padding: 14px 18px;
  font-weight: 600;
  color: #333;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .press-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .press-hero-accent {
    display: none;
  }

  .press-hero-floats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .press-hero-main p {
    margin-left: auto;
    margin-right: auto;
  }

  .press-hero-cta {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .press-hero-main h1 {
    font-size: 30px;
  }

  .press-hero-floats {
    grid-template-columns: 1fr;
  }
}

.service-overview-block {
  padding: 70px 20px;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

.service-overview-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* CARD */
.service-overview-card {
  background: #ffffff;
  padding: 34px 28px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.35s ease;
}

.service-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.service-overview-card h3 {
  font-size: 18px;
  color: #111;
  margin-bottom: 12px;
  position: relative;
}

.service-overview-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: #ff9f1c; /* tiny accent only */
  margin-top: 8px;
}

.service-overview-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 26px;
}

/* BUTTON */
.service-link-btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #ff9f1c;
  padding-bottom: 3px;
  border-bottom: 2px solid #ff9f1c;
  transition: 0.3s ease;
}

.service-link-btn:hover {
  color: white;
  background: #ff9f1c;
 }

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-overview-grid {
    grid-template-columns: 1fr;
  }
}


.service-decision-area {
  padding: 80px 20px;
  background: #fafafa;
  font-family: "Segoe UI", sans-serif;
}

.service-decision-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.service-decision-header {
  text-align: center;
  margin-bottom: 50px;
}

.service-decision-header h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 10px;
}

.service-decision-header p {
  font-size: 15px;
  color: #555;
  max-width: 520px;
  margin: auto;
}

/* GRID */
.service-decision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.decision-card {
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  transition: 0.35s ease;
}

.decision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

/* NEED LINE */
.decision-need {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 3px solid #ff9f1c; /* subtle accent */
}

/* SERVICE NAME */
.decision-card h3 {
  font-size: 18px;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-decision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-decision-grid {
    grid-template-columns: 1fr;
  }

  .service-decision-header h2 {
    font-size: 26px;
  }
}


.why-plates-compact {
  padding: 60px 20px;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

.why-plates-inner {
  max-width: 1150px;
  margin: auto;
}

/* HEADER */
.why-plates-head {
  margin-bottom: 32px;
}

.why-plates-head h2 {
  font-size: 30px;
  color: #111;
  margin-bottom: 6px;
}

.why-plates-head p {
  font-size: 14px;
  color: #555;
}

/* GRID */
.why-plates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 28px;
}

/* ITEM */
.why-plate-item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  transition: 0.25s ease;
}

.why-plate-item:hover {
  background: #fafafa;
}

/* ICON */
.why-icon {
  font-size: 22px;
  flex-shrink: 0;
}

/* TEXT */
.why-plate-item h3 {
  font-size: 16px;
  color: #111;
  margin-bottom: 4px;
}

.why-plate-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-plates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-plates-grid {
    grid-template-columns: 1fr;
  }

  .why-plates-head h2 {
    font-size: 24px;
  }
}


.process-tree-section {
  padding: 80px 20px;
  background: #fafafa;
  font-family: "Segoe UI", sans-serif;
}

.process-tree-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.process-tree-head {
  text-align: center;
  margin-bottom: 50px;
}

.process-tree-head h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 8px;
}

.process-tree-head p {
  font-size: 14px;
  color: #555;
}

/* TREE AREA */
.process-tree {
  position: relative;
  padding: 20px 0;
}

/* TRUNK */
.process-trunk {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ff9f1c;
  transform: translateX(-50%);
}

/* STEP */
.process-step {
  position: relative;
  width: 50%;
  padding: 18px 30px;
  box-sizing: border-box;
}

.process-step.left {
  text-align: right;
  left: 0;
}

.process-step.right {
  left: 50%;
}

/* DOT */
.step-dot {
  position: absolute;
  top: 30px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 3px solid #ff9f1c;
  border-radius: 50%;
  z-index: 2;
}

.process-step.left .step-dot {
  right: -7px;
}

.process-step.right .step-dot {
  left: -7px;
}

/* BOX */
.step-box {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid #eaeaea;
}

.step-box h3 {
  font-size: 16px;
  color: #111;
  margin-bottom: 6px;
}

.step-box p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-trunk {
    left: 8px;
  }

  .process-step {
    width: 100%;
    padding-left: 40px;
    padding-right: 0;
    text-align: left;
    left: 0 !important;
  }

  .process-step.left,
  .process-step.right {
    left: 0;
  }

  .step-dot {
    left: 1px !important;
    right: auto;
  }
}

@media (max-width: 576px) {
  .process-tree-head h2 {
    font-size: 26px;
  }
}


.digital-vs-conventional {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

.digital-vs-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.digital-vs-head {
  text-align: center;
  margin-bottom: 40px;
}

.digital-vs-head h2 {
  font-size: 30px;
  color: #111;
  margin-bottom: 8px;
}

.digital-vs-head p {
  font-size: 14px;
  color: #555;
  max-width: 560px;
  margin: auto;
}

/* TABLE */
.comparison-table {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
}

/* ROW */
.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid #eaeaea;
}

.comparison-row:last-child {
  border-bottom: none;
}

/* CELLS */
.comparison-cell {
  padding: 18px 20px;
  font-size: 14px;
  color: #333;
}

.comparison-cell.title {
  font-weight: 600;
  background: #fafafa;
}

.comparison-header .comparison-cell {
  font-weight: 700;
  background: #fafafa;
}

.comparison-cell.highlight {
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .comparison-header {
    display: none;
  }

  .comparison-cell {
    padding: 10px 16px;
  }

  .comparison-cell.title {
    background: none;
    font-size: 15px;
    margin-bottom: 6px;
  }

  .comparison-cell.highlight {
    font-weight: 700;
  }
}

@media (max-width: 576px) {
  .digital-vs-head h2 {
    font-size: 24px;
  }
}


.faq-section {
  padding: 70px 20px;
  background: #fafafa;
  font-family: "Segoe UI", sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 30px;
  color: #111;
  margin-bottom: 6px;
}

.faq-header p {
  font-size: 14px;
  color: #555;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ITEM */
.faq-item {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 0;
}

/* QUESTION */
.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: 0.3s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

/* ANSWER */
.faq-item p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .faq-header h2 {
    font-size: 24px;
  }

  .faq-item summary {
    padding-right: 40px;
  }
}


.quote-form-section {
  padding: 70px 20px;
  background: #fafafa;
  font-family: "Segoe UI", sans-serif;
}

.quote-form-box {
  max-width: 520px;
  margin: auto;
  background: #fff;
  padding: 36px;
  border-radius: 12px;
  border: 1px solid #eaeaea;
}

.quote-form-box h2 {
  margin-bottom: 6px;
}

.quote-form-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 26px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.quote-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: #ff9f1c;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
}
