/* ================================
   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;
  }
}

/* GLOBAL */
body {
  padding-top: 50px;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #0f172a;
  background: #f8fafc;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* SECTION SPACING */
.section {
  padding: 60px 0;
}





/* ================= GLOBAL ================= */

.section-space {
  padding: 50px 0;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}

.section-label.purple {
  color: #6E276C;
}

.section-heading {
  margin-bottom: 35px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #222;
}

.section-heading p {
  max-width: 700px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}


/* ================= ABOUT HERO ================= */

.about-hero {
  background: linear-gradient(135deg, #6E276C, #163e63);
  color: #fff;
  padding: 75px 0 55px;
}

.about-hero-content {
  max-width: 850px;
}

.about-hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 18px;
  color: #fff;
}

.about-hero p {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,0.88);
}


/* ================= ABOUT INTRO ================= */

.about-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 45px;
  align-items: start;
}

.about-heading h2 {
  font-size: 2.4rem;
  margin: 0;
  color: #222;
}

.heading-line {
  width: 55px;
  height: 4px;
  background: linear-gradient(90deg, #6E276C, #163e63);
  margin-top: 18px;
  border-radius: 10px;
}

.about-content p {
  color: #555;
  line-height: 1.75;
  margin: 0 0 14px;
}


/* ================= MISSION / VISION ================= */

.mission-section {
  background: #f6f5f8;
  padding: 55px 0;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.purpose-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  display: flex;
  gap: 20px;
  border: 1px solid #e9e6eb;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.purpose-icon {
  min-width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6E276C, #163e63);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.purpose-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: #222;
}

.purpose-card p {
  margin: 0 0 10px;
  color: #666;
  line-height: 1.65;
}


/* ================= WHAT WE DO ================= */

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

.expertise-card {
  min-height: 115px;
  padding: 20px;
  border: 1px solid #e5e2e6;
  border-radius: 12px;
  background: #fff;
  transition: 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-4px);
  border-color: #6E276C;
  box-shadow: 0 10px 25px rgba(110,39,108,0.09);
}

.expertise-card span {
  font-size: 12px;
  font-weight: 700;
  color: #6E276C;
}

.expertise-card h3 {
  font-size: 15px;
  line-height: 1.45;
  margin: 14px 0 0;
  color: #333;
}

.expertise-bottom {
  margin-top: 25px;
  padding: 18px 22px;
  border-left: 4px solid #6E276C;
  background: #f7f5f7;
  color: #555;
  line-height: 1.6;
}


/* ================= INDUSTRIES ================= */

.industries-section {
  background: linear-gradient(135deg, #6E276C, #163e63);
  padding: 55px 0;
  color: #fff;
}

.industries-section .section-heading h2 {
  color: #fff;
}

.industries-section .section-heading p {
  color: rgba(255,255,255,0.78);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 35px;
}

.industry-card {
  display: block;
  padding: 18px 15px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.industry-card:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
}


/* ================= WHY ARG ================= */

.why-section {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 45px;
  align-items: start;
}

.why-title h2 {
  font-size: 2.2rem;
  line-height: 1.25;
  margin: 0;
  color: #222;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f7f6f8;
  border-radius: 9px;
}

.why-item span {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #6E276C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.why-item p {
  margin: 0;
  font-size: 14px;
  color: #444;
}


/* ================= FAQ ================= */

.faq-section {
  background: #f6f5f8;
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  margin-top: 30px;
}

.faq-list details {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 9px;
  border: 1px solid #e7e4e8;
  overflow: hidden;
}

.faq-list summary {
  padding: 19px 22px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  list-style: none;
  position: relative;
  padding-right: 50px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  color: #6E276C;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 22px 20px;
  margin: 0;
  color: #666;
  line-height: 1.7;
}


/* ================= CTA ================= */

.about-cta {
  padding: 55px 0;
}

.cta-box {
  background: linear-gradient(135deg, #6E276C, #163e63);
  border-radius: 16px;
  padding: 35px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-box h2 {
  color: #fff;
  font-size: 1.8rem;
  margin: 0;
}

.cta-btn {
  background: #fff;
  color: #6E276C;
  padding: 13px 25px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

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

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

}

@media (max-width: 768px) {

  .section-space {
    padding: 50px 0;
  }

  .about-hero {
    padding: 65px 0 50px;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-heading h2,
  .why-title h2 {
    font-size: 2rem;
  }

  .expertise-grid,
  .industry-grid,
  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

}

@media (max-width: 576px) {

  .expertise-grid,
  .industry-grid,
  .why-list {
    grid-template-columns: 1fr;
  }

  .purpose-card {
    flex-direction: column;
  }

  .about-hero h1 {
    font-size: 1.9rem;
  }

}




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

.site-footer {
  font-size: 25px;
  background: #dedddd;
  color: #000000;
  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: #000000;
  max-width: 360px;
}

.footer-socials a {
  color: #000000;
  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: #000000;
}

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

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

.footer-col ul li a {
  color: #000000;
  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: #000000;
}

.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: #000000;
}

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

.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 {
    font-size: 17px;
    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: 55px 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;
}

/* @media (max-width: 992px) {

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

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

  .hero-image {
    text-align: center;
  }

  .hero-image img {
    max-width: 320px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
} */