/* ===== GLOBAL ===== */
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f4f8ff;
  color: #1f2937;
  padding-top: 90px;
}

h1, h2, h3 {
  font-weight: 700;
}

a {
  text-decoration: none;
}

/* ===== SERVICES PAGE ===== */
.services-page {
  padding: 60px 0;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h1 {
  font-size: 2.8rem;
}

.services-header p {
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 1.1rem;
}

/* ===== SERVICE BLOCKS ===== */
.service-block {
  display: flex;
  gap: 30px;
  padding: 40px;
  border-radius: 18px;
  margin-bottom: 40px;
  align-items: center;
}

/* COLORS */
.blue-bg {
  background: linear-gradient(135deg, #dbeafe, #ffffff);
}

.yellow-bg {
  background: linear-gradient(135deg, #fff3c4, #ffffff);
}

.green-bg {
  background: linear-gradient(135deg, #dcfce7, #ffffff);
}

/* ICONS */
.service-icon {
  font-size: 90px;   /* BIG ICONS */
  line-height: 1;
}

/* CONTENT */
.service-content h3 {
  margin-bottom: 12px;
}

.service-content ul {
  padding-left: 18px;
}

.service-content ul li {
  margin-bottom: 6px;
}

/* CTA */
.services-cta {
  text-align: center;
  margin-top: 60px;
}

/* BUTTON */
.btn-primary {
  background-color: #2b7cff;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #1e5ed8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-block {
    flex-direction: column;
    text-align: center;
  }
}
/* ===== RIBBON STYLE HEADER (FINAL) ===== */

/* Navbar – slim ribbon */
.navbar {
  min-height: 68px;          /* ribbon height */
  padding-top: 6px;
  padding-bottom: 6px;
}

/* Logo – keep strong but balanced */
.site-logo {
  height: 68px !important;   /* logo remains dominant */
  width: auto;
}

/* Brand spacing */
.navbar-brand {
  padding: 0;
  margin-right: 28px;
}

/* Menu spacing */
.navbar-nav {
  gap: 26px;
}

/* Menu links */
.navbar-nav .nav-link {
  font-size: 14.5px;
  font-weight: 500;
  padding: 4px 0;
  color: #1f2937;
}

.navbar-nav .nav-link:hover {
  color: #2b7cff;
}

/* Mobile ribbon adjustment */
@media (max-width: 768px) {
  .navbar {
    min-height: 62px;
  }

  .site-logo {
    height: 56px !important;
  }
}
/* ===== CAREERS PAGE ===== */

.careers-page {
  padding: 60px 0;
}

.career-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.career-icon {
  font-size: 46px;
  margin-bottom: 12px;
}

.career-card h5 {
  margin-bottom: 8px;
}

.career-form-box {
  background: linear-gradient(135deg, #f0f6ff, #ffffff);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* ===== CONTACT PAGE ===== */

.contact-page {
  padding: 60px 0;
}

.contact-info-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-detail {
  margin-bottom: 18px;
}

.contact-detail strong {
  display: block;
  color: #2b7cff;
}

.contact-form-box {
  background: linear-gradient(135deg, #f0f6ff, #ffffff);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* ======================================================
   FINAL HEADER ALIGNMENT — ALL CENTERED (LOCKED)
   ====================================================== */

/* Ribbon header */
.navbar {
  min-height: 74px;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
  align-items: center;      /* CENTER everything vertically */
  overflow: visible;
}

/* Inner container */
.navbar .container {
  display: flex;
  align-items: center;      /* CENTER logo, menu, CTA */
}

/* Logo */
.site-logo {
  height: 72px !important;
  width: auto;
  display: block;
  margin: 0;                /* remove bottom bias */
}

/* Brand wrapper */
.navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

/* Menu */
.navbar-nav {
  gap: 22px;
  align-items: center;      /* CENTER menu items */
  margin: 0;
}

/* Menu links */
.navbar-nav .nav-link {
  font-size: 14.5px;
  font-weight: 500;
  padding: 0;
  line-height: 1;
  color: #1f2937;
}

.navbar-nav .nav-link:hover {
  color: #2b7cff;
}

/* CTA button — centered */
.header-cta-btn {
  margin-left: 18px;
  padding: 8px 20px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, #2b7cff, #22c55e);
  color: #ffffff !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(43,124,255,0.35);
}

.header-cta-btn:hover {
  background: linear-gradient(135deg, #1e5ed8, #16a34a);
  box-shadow: 0 6px 16px rgba(43,124,255,0.45);
}

/* Mobile safety */
@media (max-width: 768px) {
  .navbar {
    min-height: 66px;
  }

  .site-logo {
    height: 58px !important;
  }

  .navbar .container {
    align-items: center;
  }

  .header-cta-btn {
    margin-left: 0;
    margin-top: 8px;
  }
}
/* ======================================================
   FINAL HEADER MICRO PADDING TIGHTEN (LOCKED)
   ====================================================== */

/* Ribbon header – tighter vertical padding */
.navbar {
  min-height: 68px;     /* slightly slimmer ribbon */
  padding-top: 2px;     /* 🔽 reduced */
  padding-bottom: 2px; /* 🔽 reduced */
  align-items: center;
}

/* Keep everything centered */
.navbar .container {
  align-items: center;
}

/* Logo unchanged */
.site-logo {
  height: 72px !important;
}

/* Menu unchanged */
.navbar-nav {
  align-items: center;
}

/* CTA unchanged */
.header-cta-btn {
  padding: 7px 18px;    /* slightly tighter button */
}

/* Mobile refinement */
@media (max-width: 768px) {
  .navbar {
    min-height: 62px;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .site-logo {
    height: 56px !important;
  }
}
/* ======================================================
   FOOTER DESIGN — FINAL POLISH
   ====================================================== */

.site-footer {
  background: #f8fbff;
  padding: 60px 0 20px;
  border-top: 1px solid #e5efff;
  color: #1f2937;
}

.site-footer h5,
.site-footer h6 {
  font-weight: 600;
  margin-bottom: 12px;
}

.site-footer p {
  font-size: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #1f2937;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #2b7cff;
}

.footer-bottom {
  border-top: 1px solid #e5efff;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 13px;
}
/* ======================================================
   BPO LANDING PAGE
   ====================================================== */

.bpo-hero {
  background: linear-gradient(135deg, #e8f1ff, #f4fff8);
  padding: 80px 0;
}

.bpo-hero h1 {
  font-size: 2.8rem;
}

.bpo-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-weight: 500;
}

.bpo-solution {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
}

.bpo-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.bpo-cta {
  background: linear-gradient(135deg, #2b7cff, #22c55e);
  color: #ffffff;
  padding: 70px 0;
}

.bpo-cta p {
  max-width: 700px;
  margin: 10px auto 0;
}
/* ======================================================
   BPO LANDING PAGE
   ====================================================== */

.bpo-hero {
  background: linear-gradient(135deg, #e8f1ff, #f4fff8);
  padding: 80px 0;
}

.bpo-hero h1 {
  font-size: 2.8rem;
}

.bpo-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-weight: 500;
}

.bpo-solution {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
}

.bpo-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.bpo-cta {
  background: linear-gradient(135deg, #2b7cff, #22c55e);
  color: #ffffff;
  padding: 70px 0;
}

.bpo-cta p {
  max-width: 700px;
  margin: 10px auto 0;
}
/* ======================================================
   GLOBAL VERTICAL RHYTHM FIX (DO NOT EDIT)
   ====================================================== */

/* Standard section spacing */
.section {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Headings spacing */
h1 {
  margin-bottom: 16px;
}

h2 {
  margin-bottom: 14px;
}

h3 {
  margin-bottom: 12px;
}

h4 {
  margin-bottom: 10px;
}

/* Paragraph spacing */
p {
  margin-bottom: 12px;
}

/* Cards spacing consistency */
.service-block,
.career-card,
.contact-info-box,
.contact-form-box,
.bpo-card,
.bpo-solution {
  margin-bottom: 0; /* prevent uneven stacking */
}

/* Grid row vertical gaps */
.row {
  margin-bottom: 40px;
}

/* Last row cleanup */
.row:last-child {
  margin-bottom: 0;
}

/* BPO HERO spacing fix */
.bpo-hero {
  padding-top: 90px;
  padding-bottom: 90px;
}

/* BPO CTA spacing fix */
.bpo-cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Text center blocks */
.text-center > p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile spacing adjustments */
@media (max-width: 768px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .row {
    margin-bottom: 28px;
  }

  .bpo-hero,
  .bpo-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/* ======================================================
   BPO PAGE — VISUAL FINE-TUNING
   ====================================================== */

/* Improve section separation */
.bpo-landing .section {
  border-bottom: 1px solid #eef4ff;
}

.bpo-landing .section:last-of-type {
  border-bottom: none;
}

/* BPO headings emphasis */
.bpo-landing h2 {
  font-size: 2.1rem;
}

.bpo-landing h5 {
  margin-top: 12px;
  font-weight: 600;
}

/* Pain point cards refinement */
.bpo-card {
  font-size: 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bpo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* Solution cards refinement */
.bpo-solution {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bpo-solution:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.14);
}
/* ======================================================
   SUBTLE SCROLL ANIMATIONS
   ====================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* ======================================================
   HOMEPAGE — COLOR, LIFE & HOVER EFFECTS
   ====================================================== */

/* HERO GRADIENT */
.hero-gradient {
  background: linear-gradient(
    135deg,
    #e8f1ff 0%,
    #f4fff8 50%,
    #fff8e1 100%
  );
  padding: 110px 0;
}

.hero-gradient h1 {
  font-size: 3rem;
}

.hero-gradient p {
  max-width: 720px;
  margin: 14px auto 0;
}

/* SERVICE CARDS */
.service-card-colored {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Colored top accent */
.service-card-colored::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #2b7cff, #22c55e, #facc15);
}

/* Hover lift */
.service-card-colored:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

/* WHY CHOOSE US */
.why-choose-row > div {
  padding: 20px 10px;
  font-weight: 500;
  position: relative;
}

/* Icon bullets */
.why-choose-row > div::before {
  content: "✔";
  color: #22c55e;
  margin-right: 6px;
}

/* CTA SECTION */
.section.text-center:last-of-type {
  background: linear-gradient(
    135deg,
    #2b7cff,
    #22c55e
  );
  color: #ffffff;
  border-radius: 24px;
  padding: 80px 30px;
}

.section.text-center:last-of-type h2,
.section.text-center:last-of-type p {
  color: #ffffff;
}

.section.text-center:last-of-type .btn {
  background: #ffffff;
  color: #2b7cff;
  font-weight: 600;
}

.section.text-center:last-of-type .btn:hover {
  background: #f1f5f9;
}

/* MOBILE TUNING */
@media (max-width: 768px) {
  .hero-gradient {
    padding: 80px 20px;
  }

  .hero-gradient h1 {
    font-size: 2.3rem;
  }
}
/* ======================================================
   HOMEPAGE HERO — IMAGE BACKGROUND WITH OVERLAY
   ====================================================== */

.hero-image {
  background: url("../images/hero-handshake.jpg") center center / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
}

/* Blue–green overlay for readability */
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(43,124,255,0.75),
    rgba(34,197,94,0.75)
  );
  width: 100%;
  padding: 120px 0;
}

.hero-image h1 {
  color: #ffffff;
  font-size: 3.2rem;
}

.hero-subtext {
  color: #f0fdf4;
  max-width: 820px;
  margin: 16px auto 0;
  font-size: 1.1rem;
}

.hero-image .btn {
  background: #ffffff;
  color: #2b7cff;
  font-weight: 600;
}

.hero-image .btn:hover {
  background: #f1f5f9;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .hero-overlay {
    padding: 90px 20px;
  }

  .hero-image h1 {
    font-size: 2.3rem;
  }
}
/* ======================================================
   FINAL LOGO LOCK — CONSULT BLISS (DO NOT CHANGE)
   ====================================================== */

.site-logo {
  height: 70px !important;   /* ideal for this logo */
  width: auto;
  max-width: 260px;          /* prevents stretching */
  object-fit: contain;
}
/* ======================================================
   LOGO TAGLINE — FINAL STYLING
   ====================================================== */

.logo-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-tagline {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #6b7280;           /* subtle gray */
  margin-top: -2px;        /* pulls tagline closer to logo */
  white-space: nowrap;
}

/* Hide tagline on very small screens */
@media (max-width: 576px) {
  .logo-tagline {
    display: none;
  }
}
