/* =======================
   GLOBAL RESET & BASE
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #ffffff;
  color: #1f2d3d;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =======================
   COLOR SYSTEM
======================= */
:root {
  --blue-primary: #0b5ed7;
  --blue-dark: #084298;
  --blue-light: #e7f1ff;
  --blue-bg: #f6f9ff;
  --text-dark: #1f2d3d;
  --text-muted: #5c6f82;
  --white: #ffffff;
}

/* =======================
   TOP BAR
======================= */
.top-bar {
  background: var(--blue-primary);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =======================
   HEADER
======================= */
.header {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: wrap;

}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 20px;
}

.logo img {
  width: 42px;
}

nav a {
  color: var(--blue-dark);
  text-decoration: none;
  margin: 0 14px;
  font-weight: 500;
}

nav a:hover {
  color: var(--blue-primary);
}

/* =======================
   HERO SECTION
======================= */
.hero {
  background: linear-gradient(135deg, var(--blue-bg), #ffffff);
  padding: 70px 0;
}

.hero-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  width: 50%;
}

.hero-text small {
  color: var(--blue-primary);
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-text h1 {
  font-size: 42px;
  margin: 16px 0;
  color: var(--blue-dark);
}

.hero-text p {
  margin-bottom: 22px;
  color: var(--text-muted);
}

.hero-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* =======================
   SERVICES
======================= */
.services {
  padding: 70px 0;
  background: var(--white);
}

.services h4,
.services h2 {
  text-align: center;
}

.services h4 {
  color: var(--blue-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 45px;
  color: var(--blue-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card span {
  display: block;
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 14px;
  font-weight: 600;
  text-align: center;
}

/* =======================
   HERO SLIDER
======================= */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
}

/* =======================
   LIGHTBOX
======================= */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 14px;
}

#closeLightbox {
  position: absolute;
  top: 28px;
  right: 38px;
  font-size: 40px;
  color: #ffffff;
  cursor: pointer;
}

.lightbox-img {
  cursor: pointer;
}

/* =======================
   MOTTO SECTION
======================= */
.motto-section {
  padding: 55px 0;
  background: var(--blue-bg);
}

.motto-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.motto-text h4 {
  color: var(--blue-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.motto-text h2 {
  color: var(--blue-dark);
  font-size: 28px;
  margin-bottom: 12px;
}

.motto-text p {
  color: var(--text-muted);
}

.motto-tags span {
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* =======================
   CEO SECTION
======================= */
.ceo-section {
  padding: 75px 0;
  background: #ffffff;
}

.ceo-flex {
  display: flex;
  align-items: center;
  gap: 55px;
}

.ceo-image img {
  max-width: 380px;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.14);
}

.ceo-content h4 {
  color: var(--blue-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ceo-content h2 {
  color: var(--blue-dark);
  font-size: 34px;
  margin-bottom: 18px;
}

.ceo-content p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.ceo-content h3 {
  color: var(--blue-dark);
}

.ceo-content span {
  color: var(--blue-primary);
  font-weight: 600;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 900px) {
  .hero-flex,
  .ceo-flex,
  .motto-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


  .service-grid {
    grid-template-columns: 1fr;
  }

/* ===== PAGE LOAD ANIMATIONS ===== */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-left {
  transform: translateX(-60px);
}

.animate-right {
  transform: translateX(60px);
}

.animate.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
/* =======================
   CONTACT SECTION
======================= */
.contact-section {
  padding: 70px 0;
  background: #f6f9ff;
}

.contact-flex {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.contact-info {
  width: 45%;
}

.contact-info h4 {
  color: #0b5ed7;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info h2 {
  color: #084298;
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #5c6f82;
  margin-bottom: 25px;
  line-height: 1.7;
}

.contact-item {
  margin-bottom: 15px;
}

.contact-item strong {
  display: block;
  color: #084298;
  margin-bottom: 4px;
}

.contact-item span {
  display: block;
  color: #5c6f82;
}

/* FORM */
.contact-form {
  width: 55%;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6e4ff;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0b5ed7;
}

.contact-form button {
  background: #0b5ed7;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #084298;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    text-align: center;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}
/* =========================
   FINAL LANDING CTA SECTION
========================= */
.landing-cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0b5ed7 0%, #084298 100%);
  color: #ffffff;
  overflow: hidden;
}

/* subtle background glow */
.landing-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  filter: blur(80px);
}

.landing-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* =========================
   LEFT CONTENT
========================= */
.landing-content {
  width: 55%;
}

.partner-badges {
  margin-bottom: 22px;
}

.partner-badges span {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 10px;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 24px;
}

.partner-logos img {
  height: 46px;
  opacity: 0.95;
}

.landing-content h4 {
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 10px;
}

.landing-content h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.landing-content p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 520px;
}

/* stats */
.landing-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
}

.landing-stats div {
  text-align: left;
}

.landing-stats div strong {
  display: block;
  font-size: 22px;
}

.landing-stats div span {
  font-size: 13px;
  opacity: 0.85;
}

/* CTA button */
.landing-btn {
  display: inline-block;
  background: #ffffff;
  color: #084298;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

.landing-btn:hover {
  background: #e7f1ff;
  transform: translateY(-2px);
}

/* =========================
   RIGHT GLASS CARD
========================= */
.landing-visual {
  width: 45%;
}

.glass-box {
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.25);
}

.glass-box h3 {
  margin-bottom: 18px;
  font-size: 22px;
}

.glass-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.glass-box ul li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .landing-flex {
    flex-direction: column;
    text-align: center;
  }

  .landing-content,
  .landing-visual {
    width: 100%;
  }

  .landing-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-stats {
    justify-content: center;
  }

  .partner-logos {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .landing-content h2 {
    font-size: 32px;
  }

  .landing-stats {
    flex-direction: column;
    gap: 16px;
  }
}
/* =========================
   PARTNER SECTION (LANDING)
========================= */
.partner-section {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 3;
}

.partner-label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 18px;
}

.partner-logos img {
  height: 38px;
  opacity: 0.95;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 900px) {
  .partner-section {
    position: static;
    margin-top: 35px;
    text-align: center;
  }

  .partner-logos {
    justify-content: center;
  }
}
/* =========================
   ORG CHART + WORK FORCE
========================= */
.orgwf-section {
  padding: 80px 0;
  background: var(--white);
}

.orgwf-wrap {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.orgwf-text {
  width: 45%;
}

.orgwf-text h4 {
  color: var(--blue-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.orgwf-text h2 {
  color: var(--blue-dark);
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.orgwf-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.orgwf-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.orgwf-badges span {
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* CHART CARD */
.orgwf-chart {
  width: 55%;
  background: var(--blue-bg);
  border-radius: 22px;
  padding: 30px;
  border: 1px solid rgba(11, 94, 215, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

/* ROWS */
.orgwf-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.orgwf-row.center {
  justify-content: center;
}

.orgwf-row.ops {
  margin-top: 6px;
}

.orgwf-row.sales {
  margin-top: 8px;
}

/* NODES */
.orgwf-node {
  min-width: 190px;
  text-align: center;
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* NODE VARIANTS */
.orgwf-node.ceo {
  min-width: 280px;
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid var(--blue-primary);
}

.orgwf-node.md {
  background: var(--blue-primary);
  color: var(--white);
}

.orgwf-node.mm {
  background: var(--blue-dark);
  color: var(--white);
}

.orgwf-node.bdm {
  background: var(--blue-primary);
  color: var(--white);
  opacity: 0.95;
}

.orgwf-node.amm {
  background: var(--blue-light);
  color: var(--blue-dark);
  border: 1px solid rgba(11, 94, 215, 0.18);
}

.orgwf-node.op {
  background: var(--white);
  color: var(--blue-dark);
  border: 1px solid rgba(11, 94, 215, 0.18);
}

.orgwf-node.salesNode {
  background: var(--white);
  color: var(--blue-primary);
  border: 1px solid rgba(11, 94, 215, 0.22);
  min-width: 240px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .orgwf-wrap {
    flex-direction: column;
    text-align: center;
  }

  .orgwf-text,
  .orgwf-chart {
    width: 100%;
  }

  .orgwf-node,
  .orgwf-node.ceo,
  .orgwf-node.salesNode {
    min-width: 100%;
  }
}
.product-card {
  display: flex;
  gap: 30px;
  padding: 40px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.product-image img {
  width: 320px;
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.product-content h2 {
  margin: 0;
  color: #0b7c7b;
}

.product-content .subtitle {
  font-weight: 600;
  color: #555;
  margin-bottom: 12px;
}

.product-content h4 {
  margin-top: 18px;
  color: #0b7c7b;
}

.product-content ul {
  padding-left: 18px;
}

.product-content li {
  margin-bottom: 6px;
}

.product-content .note {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}
/* ---------- Global ---------- */
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #f5f9fc;
  color: #1f2937;
  line-height: 1.6;
}

/* ---------- Products Heading ---------- */
.products-heading {
  text-align: center;
  margin: 90px 0 70px;
}

.products-heading h1 {
  font-size: 44px;
  font-weight: 700;
  color: #0b6cb8;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}

.products-heading h1::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #0b6cb8, #3aa7e8);
  margin: 14px auto 0;
  border-radius: 4px;
}

/* ---------- Product Card ---------- */
.product-card {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 40px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(11, 108, 184, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 108, 184, 0.18);
}

/* ---------- Product Image ---------- */
.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 14px;
  background: #f0f7fc;
  padding: 20px;
}

/* ---------- Product Content ---------- */
.product-content h2 {
  font-size: 30px;
  color: #0b6cb8;
  margin-bottom: 6px;
}

.product-content .subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #3aa7e8;
  margin-bottom: 16px;
}

.product-content .description {
  font-size: 15.5px;
  color: #374151;
  margin-bottom: 22px;
}

/* ---------- Section Headings ---------- */
.product-content h4 {
  font-size: 18px;
  color: #0b6cb8;
  margin: 22px 0 10px;
  position: relative;
}

.product-content h4::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #3aa7e8;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ---------- Lists ---------- */
.product-content ul {
  padding-left: 18px;
  margin-bottom: 18px;
}

.product-content li {
  font-size: 14.8px;
  color: #374151;
  margin-bottom: 6px;
}

/* ---------- Paragraphs ---------- */
.product-content p {
  font-size: 14.8px;
  color: #374151;
}

/* ---------- Note ---------- */
.product-content .note {
  margin-top: 18px;
  padding: 12px 16px;
  background: #f0f7fc;
  border-left: 4px solid #0b6cb8;
  border-radius: 8px;
  font-size: 13.5px;
  color: #1f2937;
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .product-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .product-image img {
    max-height: 340px;
  }

  .products-heading h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .product-card {
    padding: 24px;
  }

  .product-content h2 {
    font-size: 26px;
  }

  .products-heading {
    margin: 70px 0 50px;
  }
}
.top-bar,
.header {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 16px;
    width: 100%;
  }

  /* HERO */
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  /* SERVICES */
  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .service-card img {
    width: 100%;
    height: auto;
  }

  /* CEO SECTION */
  .ceo-flex {
    flex-direction: column;
    text-align: center;
  }

  .ceo-image img {
    max-width: 280px;
    margin: 0 auto;
  }

  /* NAV */
  nav {
    flex-direction: column;
    gap: 12px;
  }

}
@media (max-width: 768px) {
  nav {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  nav a {
    margin: 6px 10px;
    white-space: nowrap;
  }
}




