/* =========================================
   ROOT VARIABLES
========================================= */
:root {
  --deep-blue: #002B56;
  --dark-orange: #FF7A00;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --text-gray: #555555;
}

/* =========================================
   GLOBAL RESETS
========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-gray);
  line-height: 1.7;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--deep-blue);
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
  transition: all 0.3s ease;
  min-height: 80px;
  padding: 0.8rem 0;
  background: #fdfdfd !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.navbar.scrolled {
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.navbar .nav-link {
  color: var(--deep-blue) !important;
  font-weight: 600;
}

.navbar .nav-link.active {
  color: var(--dark-orange) !important;
}
.navbar .nav-link {
  position: relative;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--dark-orange);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

.logo-box {
  display: block;
  width: 250px;
  height: 70px;
  background-image: url('../img/logo.png');
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: left center;
}

.offcanvas-body .nav-link:hover {
  background: rgba(255,122,0,0.1);
  color: var(--dark-orange) !important;
}

@media (max-width: 576px) {
  .logo-box {
    width: 180px;
  }
}

/* =========================================
   HERO WRAPPER
========================================= */
.hero-wrapper {
  margin-top: 110px !important;
}

.hero-slide {
  min-height: 75vh;
  width: 100%;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-slide-1 { background-image: url('../img/slider1.png'); }
.hero-slide-2 { background-image: url('../img/slider2.png'); }
.hero-slide-3 { background-image: url('../img/slider3.png'); }

@media (max-width: 576px) {
  .hero-content h1,
  .hero-content h2 {
    font-size: 2rem;
  }
  .hero-content p.lead {
    font-size: 1.05rem;
  }
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1 !important;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(0, 28, 64, 0.75),
    rgba(0, 44, 86, 0.55)
  ) !important;
}

/* HERO TEXT */
.hero-content {
  position: relative;
  z-index: 3;
  animation: heroFade 1.2s ease-in-out;
}

@keyframes heroFade {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-content h1,
.hero-content h2 {
  color: #FFFFFF !important;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 0 8px 25px rgba(0,0,0,0.7);
}

.hero-content p.lead {
  color: rgba(255,255,255,0.96) !important;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  text-shadow: 0 6px 20px rgba(0,0,0,0.55);
}

.badge-text {
  background: var(--dark-orange) !important;
  color: #fff !important;
  font-weight: 700;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  z-index: 5 !important;
}

/* =========================================
   BUTTONS
========================================= */
.btn-orange {
  background: var(--dark-orange);
  color: #fff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(255,122,0,0.38);
}

.btn-orange:hover {
  background: #e36f00;
}

.btn-outline-light {
  border: 2px solid #fff !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--deep-blue) !important;
}

.text-orange {
  color: var(--dark-orange) !important;
}

/* =========================================
   SECTIONS
========================================= */
.section-padding {
  padding: 80px 0;
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* =========================================
   SECTION TITLES
========================================= */
.section-label {
  font-size: 0.85rem;
  color: #6c757d;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.section-title {
  font-size: 2.4rem;
  font-family: 'Playfair Display', serif;
  color: var(--deep-blue);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 12px;
  font-weight: 700;
}

.section-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: var(--dark-orange);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-radius: 4px;
}

/* =========================================
   CARDS & STAT BOXES
========================================= */
.card-hover {
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.stat-box {
  border-radius: 12px;
  background: #fff;
  padding: 1.2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.stat-box h3 {
  color: var(--dark-orange);
  margin-bottom: 4px;
}

/* =========================================
   INDUSTRY CARDS
========================================= */
.industry-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.industry-icon {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.12);
}

/* =========================================
   INDUSTRY MARQUEE STRIP
========================================= */
.industry-marquee-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 50%, #ffffff 100%);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

/* Edge fades */
.industry-marquee-section::before,
.industry-marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.industry-marquee-section::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.industry-marquee-section::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

/* Marquee */
.industry-marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 70px;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.industry-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Individual items */
.industry-item {
  text-align: center;
  min-width: 160px;
  cursor: pointer;
  transition: transform 0.35s ease;
  position: relative;
}

.industry-item img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: 0.35s ease;
}

.industry-item span {
  font-weight: 600;
  color: var(--deep-blue);
}

/* Hover effects */
.industry-item:hover {
  transform: translateY(-10px) scale(1.05);
}

.industry-item:hover img {
  transform: scale(1.25);
  filter: drop-shadow(0 6px 16px rgba(255,122,0,0.45));
}

/* Glossy shine sweep */
.industry-item:hover::after {
  content: "";
  position: absolute;
  left: -60%;
  top: 0;
  width: 220%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.55),
    transparent
  );
  animation: shine 0.7s ease forwards;
}

@keyframes shine {
  0% { left: -60%; }
  100% { left: 100%; }
}

/* =========================
   PREMIUM FOOTER – FINAL
========================= */

.site-footer {
  background: linear-gradient(180deg, #0b1c2d 0%, #091726 100%);
  padding: 55px 0 25px;   /* 🔑 reduced height */
  color: #cfd6dd;
  font-size: 14px;
}

/* Brand */
.site-footer h5 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.site-footer p {
  color: #9fb0c3;
  max-width: 260px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Section headings */
.site-footer h6 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Links */
.footer-links li {
  margin-bottom: 7px;
}

.footer-links a {
  color: #cfd6dd;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #ff8a00;
}

/* Social icons – subtle premium */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 14px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #ff8a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,138,0,0.35);
}

/* Divider */
.footer-divider {
  margin: 25px 0 15px;
  border-color: rgba(255,255,255,0.08);
  
}

/* Copyright */
.site-footer .small {
  color: #8fa2b5;
  font-size: 12.5px;
}

.footer-copy {
 position: relative;
  display: inline-flex;   
  align-items: center;
  justify-content: center;
  color: #8fa2b5;
  font-size: 12.5px;
  transition: all 0.3s ease;
  cursor: default;
}

.footer-copy::after {
   content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #ff8a00;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.footer-copy:hover {
  color: #ffffff;
}

.footer-copy:hover::after {
  width: 100%;
}


/* Mobile */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
    padding: 45px 0 20px;
  }

  .footer-social {
    justify-content: center;
    margin-top: 12px;
  }

  .site-footer p {
    margin-left: auto;
    margin-right: auto;
  }
}


/* =========================================
   RESPONSIVE HERO TEXT ALIGNMENT
========================================= */
@media (max-width: 991.98px) {
  .hero-slide {
    text-align: center;
  }
}


/* ============================
   ABOUT HERO SECTION
============================ */
.about-hero {
  background: var(--deep-blue);
  padding: 160px 0 140px;
  position: relative;
  overflow: hidden;
}

/* Subtle textured overlay */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/pattern-light.png');
  opacity: 0.08;
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 3;
}

/* Subtitle */
.about-subtitle {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFB876;
  margin-bottom: 1rem;
}

/* Main Title */
.about-title {
  font-size: 3.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

/* Tagline */
.about-tagline {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.92);
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: 0.5px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.4rem;
  }
  .about-hero {
    padding: 130px 0 110px;
  }
}

/* ==========================
   APPROACH GRID FIX
========================== */

.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: stretch;
}

.approach-grid .card-hover {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  border-radius: 16px;
}

/* Tablet */
@media (max-width: 1199px) {
  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .approach-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.approach-grid h5 {
  font-weight: 700;
  color: var(--deep-blue);
}

.approach-grid .card-hover:hover {
  transform: translateY(-6px);
}


/* ================================
   BRAND ESSENCE BLOCK
================================ */

.brand-essence-section {
  padding: 80px 0;
  background: #ffffff;
}

.brand-essence-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.4rem;
  text-align: center;
}

.snapshot-box {
  background: #F8F9FA;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.snapshot-box h4 {
  font-size: 1.4rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
  font-weight: 700;
}

.snapshot-box p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

/* Scroll Teasers */
.teaser-card {
  display: block;
  background: linear-gradient(180deg, #ffffff, #fafafa);
  padding: 22px 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--deep-blue);
  border: 1px solid #eee;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.teaser-card:hover {
  background: #FF7A00;
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.teaser-card h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* Premium Industry Cards */
.premium-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.12);
  border-color: rgba(255,122,0,0.35);
}

.industry-icon-lg {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.premium-card:hover .industry-icon-lg {
  transform: scale(1.12);
}

.industry-desc {
  font-size: 0.95rem;
  color: #566;
  margin-top: 8px;
  line-height: 1.5;
}

/* =====================================
   INDUSTRIES PAGE TYPOGRAPHY NORMALISER
===================================== */

/* =====================================
   INDUSTRIES HERO ALIGNMENT FIX
===================================== */

.industries-page .about-hero {
  padding: 140px 0 120px; /* reduced to match About visually */
}

.industries-page .about-tagline {
  max-width: 680px; /* tighter line length like About */
  line-height: 1.55;
}

.industries-page .about-title {
  font-size: 3rem; /* slightly reduced */
}

.industries-page .about-tagline {
  font-size: 1.15rem;
}

.industries-page .section-title {
  font-size: 2.2rem;
}

.industries-page .industry-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
}

.industries-page .industry-desc {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Tablet */
@media (max-width: 991px) {
  .industries-page .about-title {
    font-size: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .industries-page .about-title {
    font-size: 2.1rem;
  }

  .industries-page .section-title {
    font-size: 1.9rem;
  }
}

/* Reduce vertical density on Industries page */

.industries-page .section-label {
  margin-bottom: 4px;
}

.industries-page .section-title {
  margin-bottom: 1.5rem;
}

.industries-page .section-padding:first-of-type {
  padding-top: 70px; /* slightly tighter than default */
}

/* Match Services card typography */

.industries-page .industry-card {
  padding: 32px 22px;
}

.industries-page .industry-card h5 {
  font-size: 1rem;
}

.industries-page .industry-desc {
  font-size: 0.9rem;
}

/* =====================================
   LEADERSHIP PAGE POLISH
===================================== */

.leadership-page .lead {
  font-size: 1.1rem;
  line-height: 1.65;
}

.leadership-page h2 {
  letter-spacing: -0.3px;
}

/* =====================================
   ADVISOR AVATAR FIX
===================================== */

.advisor-avatar {
  width: 230px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  background: #fff;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.18),
    0 0 0 8px rgba(255,122,0,0.08);
}

.advisor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* KEY FIX */
}

/* =========================
   CONTACT INFO CARD
========================= */
.contact-form .btn {
  margin-bottom: 60px;
}

.contact-info-card {
  background: #f9f9f9;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-info-card h3,
.contact-info-card h4 {
  color: var(--deep-blue);
}

.contact-info-card a {
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* =========================
   CONTACT PAGE SPACING FIX
========================= */

.contact-divider {
  height: 80px; /* controls gap */
}
.contact-divider {
  height: 80px;
  position: relative;
}

.contact-divider::after {
  content: "";
  width: 80px;
  height: 2px;
  background: rgba(0,0,0,0.05);
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

/* =========================
   TEAM & LINKEDIN STYLES
========================= */

.team-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.team-card img {
  max-width: 180px;
  margin: 0 auto;
}

.linkedin-icon {
  color: #0a66c2;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.linkedin-icon.small {
  font-size: 1rem;
}

.linkedin-icon:hover {
  transform: scale(1.15);
  color: #004182;
}

.modal-content {
  border-radius: 16px;
}

/* =========================
   LEADERSHIP PROFILE POLISH
========================= */

.leadership-profile {
  padding-top: 10px;
}

.leadership-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.leadership-designation {
  font-size: 0.95rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
}

/* Refined LinkedIn icon */
.linkedin-icon.polished {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(10, 102, 194, 0.25);
  color: #0a66c2;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.linkedin-icon.polished:hover {
  background: #0a66c2;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Image polish */
.leadership-img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leadership-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Mobile refinement */
@media (max-width: 768px) {
  .leadership-profile {
    margin-bottom: 30px;
  }
}
