/* ================================
   NAVBAR – CORPORATE LAYOUT SYSTEM
   ================================ */
.hero-section {
  margin-bottom: 0;
}
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1040;
}

#site-header .navbar {
  min-height: 72px;
  padding: 0 0;
  background: #ffffff;
  transition:
    box-shadow 0.2s ease,
    padding 0.2s ease;
  z-index: 1030;
}

#site-header .navbar.navbar-scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* Brand */
#site-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

section {
  margin: 0;
}

.site-logo {
  height: 42px;
  width: auto;
}

/* Center container alignment */
#site-header .navbar .container {
  display: flex;
  align-items: center;
}

/* Navigation */
#site-header .navbar-nav {
  gap: 0.25rem;
}

#site-header .nav-link {
  color: #4a5560;
  padding: 0.6rem 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

#site-header .nav-link:hover,
#site-header .nav-link:focus {
  color: #0d6efd;
  text-decoration: none;
}

/* CTA Button */
#site-header .btn-primary {
  height: 36px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
}

/* LinkedIn Button */
.btn-linkedin {
  height: 36px;
  width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a66c2;
  color: #ffffff;
  border-radius: 0.375rem;
  border: none;
  padding: 0;
}

.btn-linkedin svg {
  height: 18px;
  width: 18px;
  fill: currentColor;
}

/* Desktop alignment */
@media (min-width: 992px) {
  #site-header .navbar-collapse {
    display: flex;
    align-items: center;
  }
  #site-header .navbar-nav {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  #site-header .navbar {
    min-height: 64px;
  }
  .site-logo {
    height: 38px;
  }
}

/* ================================
   HERO SECTION – PROCMART STYLE
   ================================ */

.hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: transparent;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Lighter, more professional overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.55));
  z-index: -1;
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-title {
  color: #ffffff;
}

.hero-text {
  color: #e5e7eb;
}

/* ================================
   ABOUT / WHO WE ARE SECTION
   ================================ */

.hero-section {
  padding-bottom: 4rem;
}

.about-section {
  padding: 5rem 0;
}

.tools-section {
  padding: 5rem 0 6rem;
}

.about-section {
  padding: 5rem 0;
  background: #ffffff;
}
.section-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #475569;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.section-text {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
}

.about-metric {
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 1.75rem 1rem;
}

.about-metric h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 0.25rem;
}

.about-metric p {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
}

/* ================================
   SERVICES SECTION – PROCMART STYLE
   ================================ */

.services-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.service-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.service-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.service-points {
  padding-left: 1.1rem;
  margin: 0;
}

.service-points li {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0.35rem;
}

/* Smooth scroll for Services link */
html {
  scroll-behavior: smooth;
}

/* tool highlight section */

.tools-title {
  text-align: center;
  margin-bottom: 40px;
  margin-top: -50px;
}

.tools-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.tools-section {
  position: relative;
  padding: 40px 0 80px;
}

.tools-container {
  position: relative;
  z-index: 2;
}

.tools-bg-logo {
  position: absolute;
  inset: 0;
  background: url("../assets/procdigilogo.png") no-repeat center;
  background-size: 80%;
  opacity: 0.31; /* ⬅ increased from 0.04 */
  pointer-events: none;
  z-index: 1;
  pointer-events: none;
}

.tools-header {
  text-align: center;
  margin-bottom: 60px;
}

.tools-title {
  position: relative;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: 1.5px;
  z-index: 3;
}

.tools-title .pro {
  background: linear-gradient(90deg, #1aa9df, #33c3f0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tools-title .digi {
  color: #7b2cbf;
}

.tools-subtitle {
  margin-top: 10px;
  font-size: 21px;
  color: #4a5b75;
}

.tool-card {
  background: #ffffff;
  border: 1px solid #0b5ed7;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  position: relative;
}

.tool-card:hover {
  transform: translateY(-6px);
  border-color: #33c3f0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.tool-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  transition: 0.35s;
}

.tool-card:hover::after {
  box-shadow:
    0 0 0 1px rgba(51, 195, 240, 0.35),
    0 0 30px rgba(51, 195, 240, 0.25);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 26px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

@media (max-width: 768px) {
  .tools-logo {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .tools-logo {
    max-width: 170px;
  }
}

/* ================= OUR TEAM ================= */
.our-team-section {
  background: #f8fafc;
  padding: 90px 0;
}

.our-team-section .section-header {
  max-width: 780px;
  margin-bottom: 40px;
}

.our-team-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.our-team-section p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

/* Horizontal Scroll */
.team-scroll-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.team-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.team-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

/* Team Card */
.team-card {
  flex: 0 0 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  scroll-snap-align: start;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.team-card img {
  width: 60%;
  height: 180px;
  object-fit: auto;
  border-radius: 12px;
  margin-bottom: 16px;
}

.team-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.team-card span {
  display: block;
  font-size: 0.85rem;
  color: #2563eb;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .our-team-section {
    padding: 70px 0;
  }
  .team-card {
    flex: 0 0 260px;
  }
}

/* ======================
   Our Clients Section
   ====================== */

.clients-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
}

.section-subtitle {
  max-width: 650px;
  margin: auto;
  color: #475569;
}

/* =========================
   Our Clients - Marquee
   ========================= */

/* =========================
   OUR CLIENTS — PRO MARQUEE
   ========================= */

.clients-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.clients-marquee {
  overflow: hidden;
  width: 100%;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: scrollClients 8s linear infinite;
}

.client-logo {
  width: auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 12px;
  padding: 12px 18px;
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-6px);
}

.client-logo img {
  max-height: 75px;
  max-width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.left-to-right {
  animation: scroll-left 35s linear infinite;
}

.right-to-left {
  animation: scroll-right 35s linear infinite;
}

.right-to-left {
  animation-duration: 40s;
}

@media (max-width: 768px) {
  .client-logo {
    padding: 0 20px;
  }

  .client-logo img {
    height: 45px;
  }
}

@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes clientsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ======================
   Horizontal CTA Layout
   ====================== */

.cta-section {
  padding: 4rem 0;
  background: transparent;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1000px;
  margin: auto;
  background: #0f172a;
  border-radius: 1.25rem;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.55);
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 1.5rem;
  background: rgba(56, 189, 248, 0.08);
  z-index: -1;
  filter: blur(30px);
}

.cta-box {
  position: relative;
}

.cta-left {
  flex: 1.3;
}

.cta-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
}

.cta-subtitle {
  margin: 1.25rem 0 2rem;
  color: #cbd5f5;
  font-size: 1rem;
}

.cta-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-stats strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #38bdf8;
}

.cta-stats span {
  font-size: 0.85rem;
  color: #cbd5f5;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-actions .btn {
  width: 100%;
}

.cta-trust {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ======================
   Footer
   ====================== */

.site-footer {
  font-size: 25px;
  background: #050c2d;
  color: #ffffff;
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-logo {
  height: 46px;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  max-width: 360px;
}

.footer-socials a {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-right: 0.8rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #38bdf8;
}

.footer-col h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

.footer-contact li {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-legal a {
  margin-right: 1rem;
  color: #94a3b8;
}

.footer-legal a:hover {
  color: #38bdf8;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-desc {
    margin: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  .cta-actions .btn {
    width: auto;
    min-width: 160px;
  }
}

/* Tablet */
@media (max-width: 1023px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile polish */
@media (max-width: 600px) {
  .tools-section {
    padding: 70px 6%;
  }

  .tools-bg-logo {
    background-size: 340px;
  }
}

.page-section {
  padding: 6rem 0;
}

.page-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-section p {
  max-width: 720px;
  font-size: 1.05rem;
  color: #475569;
}

.dropdown-menu {
  border-radius: 8px;
  padding: 10px 0;
}

.dropdown-item {
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: #f5f7fa;
}
