/* ============================================================
   Nawaloka Construction Company (PVT) Ltd — Main Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0a1f44;
  --primary-light: #122f6b;
  --accent: #f5a623;
  --accent-dark: #d4891a;
  --dark: #111827;
  --grey-dark: #374151;
  --grey: #6b7280;
  --grey-light: #e5e7eb;
  --light: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --success: #10b981;
  --danger: #ef4444;

  --font-main: 'Inter', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .12);
  --shadow: 0 4px 20px rgba(0, 0, 0, .12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .18);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .22);

  --radius: 8px;
  --radius-lg: 16px;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--grey-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: .02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.05rem;
}

p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.8;
}

.lead {
  font-size: 1.15rem;
  font-weight: 400;
}

/* ---------- Utilities ---------- */
.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.bg-primary-dark {
  background: var(--primary);
}

.bg-light-grey {
  background: var(--light);
}

.text-accent {
  color: var(--accent) !important;
}

.text-primary-dark {
  color: var(--primary) !important;
}

.section-badge {
  display: inline-block;
  background: rgba(245, 166, 35, .15);
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: .75rem;
  border: 1px solid rgba(245, 166, 35, .3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .5rem;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--grey);
  max-width: 620px;
  line-height: 1.8;
}

.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 2px;
  margin: .75rem 0 1.5rem;
}

.divider-center {
  margin: .75rem auto 1.5rem;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border: none;
  padding: .85rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 6px 20px rgba(245, 166, 35, .35);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 166, 35, .5);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: .8rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-dark-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: .85rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-dark-custom:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#mainNav {
  background: transparent;
  transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
  padding: 1.1rem 0;
  z-index: 1050;
}

#mainNav.scrolled {
  background: var(--primary);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .35);
  padding: .6rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.brand-logo-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}

.brand-text .company-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: .04em;
}

.brand-text .company-tag {
  font-size: .68rem;
  color: var(--accent);
  opacity: 0.85;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, .9) !important;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .5rem .9rem !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .9rem;
  right: .9rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: .5rem 1.2rem !important;
  font-weight: 700 !important;
  margin-left: .5rem;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  opacity: .9;
  color: var(--white) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .4);
  padding: .4rem .6rem;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Dropdown */
.dropdown-menu {
  background: var(--primary);
  border: none;
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0;
  min-width: 220px;
}

.dropdown-item {
  color: rgba(255, 255, 255, .85) !important;
  font-size: .88rem;
  font-weight: 500;
  padding: .55rem 1.2rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(245, 166, 35, .15);
  color: var(--accent) !important;
  padding-left: 1.6rem;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
#heroSlider {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 31, 68, .88) 0%,
      rgba(10, 31, 68, .6) 50%,
      rgba(0, 0, 0, .4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245, 166, 35, .2);
  border: 1px solid rgba(245, 166, 35, .5);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown .8s ease;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: .02em;
  animation: fadeInUp .9s ease .2s both;
}

.hero-title span {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .85);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: fadeInUp .9s ease .35s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp .9s ease .5s both;
}

.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .6rem;
}

.hero-indicators button {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, .4);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-indicators button.active {
  background: var(--accent);
  width: 60px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Stats Bar */
.hero-stats-bar {
  background: var(--primary);
  padding: 0;
  position: relative;
  z-index: 10;
}

.hero-stats-bar .container {
  padding: 0;
}

.stat-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: var(--transition);
}

.stat-pill:last-child {
  border-right: none;
}

.stat-pill:hover {
  background: rgba(245, 166, 35, .08);
}

.stat-pill .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, .15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-pill .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-pill .label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   INTRO / ABOUT STRIP
   ============================================================ */
.intro-strip {
  position: relative;
  overflow: hidden;
}

.intro-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.intro-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform .6s ease;
}

.intro-img-wrap:hover img {
  transform: scale(1.04);
}

.experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.experience-badge .years {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.experience-badge .text {
  font-size: .68rem;
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  line-height: 1.2;
}

.intro-feature-list {
  margin: 1.5rem 0;
}

.intro-feature-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--grey-light);
  font-weight: 500;
  font-size: .95rem;
  color: var(--grey-dark);
}

.intro-feature-list li:last-child {
  border-bottom: none;
}

.intro-feature-list li i {
  width: 32px;
  height: 32px;
  background: rgba(245, 166, 35, .12);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 68, .7), transparent);
}

.service-icon-float {
  position: absolute;
  bottom: -24px;
  left: 1.5rem;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
}

.service-card-body {
  padding: 2.5rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}

.service-card-body p {
  font-size: .9rem;
  color: var(--grey);
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: .88rem;
  margin-top: 1rem;
  transition: var(--transition);
}

.service-link:hover {
  gap: .8rem;
  color: var(--primary);
}

/* ============================================================
   PROJECTS
   ============================================================ */
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  height: 320px;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 68, .9) 0%, rgba(10, 31, 68, .2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.project-category {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: .5rem;
  width: fit-content;
}

.project-overlay h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.project-overlay .location {
  color: rgba(255, 255, 255, .75);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.project-hover-info {
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  font-size: .82rem;
  color: rgba(255, 255, 255, .8);
  margin-top: .5rem;
}

.project-card:hover .project-hover-info {
  opacity: 1;
  transform: translateY(0);
}

/* Filter Buttons */
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}

.filter-btn {
  background: var(--white);
  border: 2px solid var(--grey-light);
  color: var(--grey);
  padding: .5rem 1.4rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ============================================================
   STATISTICS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-block {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.stat-block::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, .15);
}

.col-lg-3:last-child .stat-block::after {
  display: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
}

.stat-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .5rem;
}

.stat-icon-bg {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(245, 166, 35, .15), rgba(245, 166, 35, .05));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
}

.why-card h5 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--light);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: rgba(245, 166, 35, .15);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: var(--accent);
  font-size: .9rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.author-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  border: 3px solid var(--accent);
  flex-shrink: 0;
}

.author-info .name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary);
  font-family: var(--font-heading);
}

.author-info .title {
  font-size: .8rem;
  color: var(--grey);
}

/* ============================================================
   CLIENT LOGOS
   ============================================================ */
.clients-section {
  padding: 100px;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}

.client-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 1.5rem;
  transition: var(--transition);
}

.client-logo-wrap:hover {
  transform: scale(1.05);
}

.client-logo-wrap img {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
}

.client-logo-placeholder {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-placeholder img {
  max-height: 80px;
  max-width: 150px;
  object-fit: contain;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.cta-section h2 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
}

.cta-section p {
  color: rgba(255, 255, 255, .85);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--grey-light);
}

.form-control-custom {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-main);
  color: var(--grey-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 166, 35, .12);
}

.form-control-custom::placeholder {
  color: var(--grey);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

.form-label-custom {
  font-size: .85rem;
  font-weight: 600;
  color: var(--grey-dark);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.alert-success-custom {
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .3);
  color: #065f46;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-weight: 500;
  display: none;
}

.alert-success-custom.show {
  display: block;
  animation: fadeInUp .4s ease;
}

.alert-error-custom {
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .3);
  color: #7f1d1d;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-weight: 500;
  display: none;
}

.alert-error-custom.show {
  display: block;
  animation: fadeInUp .4s ease;
}

/* Contact Info Card */
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}

.contact-info-card h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: .5rem;
}

.contact-info-card p {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 166, 35, .2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item .label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .5);
  margin-bottom: .2rem;
}

.contact-info-item .value {
  color: var(--white);
  font-size: .95rem;
  font-weight: 500;
}

.contact-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.contact-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f5a623' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
}

.page-hero .breadcrumb-item a {
  color: var(--accent);
}

.page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, .75);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .4);
}

/* Value Cards */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--grey-light);
  height: 100%;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.value-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(245, 166, 35, .2);
  line-height: 1;
  margin-bottom: -.5rem;
}

.value-card h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}

/* CEO Message */
.ceo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
  position: relative;
}

.ceo-card blockquote {
  font-size: 1.05rem;
  color: var(--grey);
  font-style: italic;
  line-height: 1.9;
  margin: 0;
}

.ceo-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.ceo-signature {
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  color: var(--primary);
  margin-top: .75rem;
  display: block;
}

/* Certifications */
.cert-badge {
  background: var(--white);
  border: 2px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.cert-badge:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.cert-badge .cert-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: .75rem;
}

.cert-badge h6 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: .3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent);
}

.timeline-year {
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.timeline-item h6 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .2rem;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--grey-light);
}

.service-detail-section:last-child {
  border-bottom: none;
}

.service-detail-section:nth-child(even) {
  background: var(--light);
}

.service-detail-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .92rem;
  color: var(--grey-dark);
}

.service-feature-item i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(245, 166, 35, .08);
  line-height: 1;
  position: absolute;
  top: -1rem;
  right: 0;
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.project-card-list {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.project-card-list:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.project-card-list .project-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.project-card-list .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.project-card-list:hover .project-img img {
  transform: scale(1.06);
}

.project-status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .3rem .8rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-ongoing {
  background: rgba(16, 185, 129, .9);
  color: #fff;
}

.status-completed {
  background: rgba(59, 130, 246, .9);
  color: #fff;
}

.project-card-list .card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card-list h5 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: .75rem 0;
}

.project-meta-item {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  color: var(--grey);
}

.project-meta-item i {
  color: var(--accent);
}

.project-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

/* Project Detail */
.project-detail-hero {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.project-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 68, .8), rgba(10, 31, 68, .3));
}

.detail-info-table {
  width: 100%;
}

.detail-info-table th {
  color: var(--grey);
  font-weight: 500;
  padding: .6rem 0;
  width: 40%;
  font-size: .9rem;
}

.detail-info-table td {
  color: var(--grey-dark);
  font-weight: 600;
  padding: .6rem 0;
  font-size: .9rem;
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.job-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.job-icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 166, 35, .1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.job-card h5 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .3rem;
}

.job-tag {
  display: inline-block;
  background: rgba(10, 31, 68, .08);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 50px;
  margin-right: .3rem;
  margin-bottom: .3rem;
}

.job-tag.accent {
  background: rgba(245, 166, 35, .15);
  color: var(--accent-dark);
}

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.news-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.06);
}

.news-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: .8rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .75rem;
}

.news-card h5 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: .88rem;
  margin-top: auto;
  padding-top: 1rem;
  transition: var(--transition);
}

.news-read-more:hover {
  gap: .6rem;
  color: var(--primary);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.map-embed iframe {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .8);
  padding-top: 72px;
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}

.footer-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  margin: 1rem 0;
}

.footer-social {
  display: flex;
  gap: .6rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: .6rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links li {
  margin-bottom: .5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: .3rem;
}

.footer-links a i {
  font-size: .7rem;
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: .2rem;
  flex-shrink: 0;
}

.footer-bottom {
  background: rgba(0, 0, 0, .3);
  padding: 1.25rem 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  margin: 0;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
  z-index: 1000;
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .6);
  color: var(--white);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 6px 30px rgba(37, 211, 102, .8);
  }
}

.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  box-shadow: var(--shadow);
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .08em;
  margin-bottom: 2rem;
}

.preloader-logo span {
  color: var(--accent);
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: preload 1.5s ease forwards;
}

@keyframes preload {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ============================================================
   AOS OVERRIDES
   ============================================================ */
[data-aos] {
  transition-duration: 700ms !important;
}

/* ============================================================
   BOARD OF DIRECTORS & MANAGEMENT TEAM
   ============================================================ */

/* Tab switcher */
.team-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.team-tab-btn {
  background: var(--white);
  border: 2px solid var(--grey-light);
  color: var(--grey-dark);
  padding: .65rem 1.8rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  letter-spacing: .03em;
}

.team-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.team-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(10, 31, 68, .25);
}

.team-tab-panel {
  display: none;
}

.team-tab-panel.active {
  display: block;
  animation: fadeInUp .5s ease;
}

/* Person card */
.person-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.person-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

/* Photo wrapper */
.person-photo-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
  flex-shrink: 0;
}

.person-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .55s ease;
}

.person-card:hover .person-photo-wrap img {
  transform: scale(1.05);
}

/* Gradient overlay */
.person-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(10, 31, 68, .7), transparent);
  pointer-events: none;
}

/* Role badge floating on photo */
.person-role-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .25);
}

/* Card body */
.person-card-body {
  padding: 1.5rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.person-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .15rem;
  line-height: 1.2;
}

.person-title {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}

.person-qualifications {
  font-size: .8rem;
  color: var(--grey);
  margin-bottom: .75rem;
  font-style: italic;
}

.person-bio {
  font-size: .87rem;
  color: var(--grey);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1rem;
}

/* Social links */
.person-social {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--grey-light);
}

.person-social a {
  width: 34px;
  height: 34px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-dark);
  font-size: .85rem;
  transition: var(--transition);
}

.person-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.person-social a.linkedin:hover {
  background: #0077b5;
}

.person-social a.email:hover {
  background: var(--accent-dark);
}

/* Chairman highlight card */
.chairman-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  box-shadow: var(--shadow-xl);
  border: none;
  margin-bottom: 3rem;
}

.chairman-img-wrap {
  width: 320px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.chairman-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.chairman-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(10, 31, 68, .6));
}

.chairman-info {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chairman-info .badge-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(245, 166, 35, .2);
  border: 1px solid rgba(245, 166, 35, .4);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  width: fit-content;
}

.chairman-info h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: .3rem;
}

.chairman-info .role {
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .2rem;
}

.chairman-info .qualifs {
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.chairman-info .bio {
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.chairman-info .expertise-tag {
  display: inline-block;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .85);
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 50px;
  margin: .2rem .2rem 0 0;
}

/* Compact management card */
.mgmt-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: stretch;
  gap: 0;
}

.mgmt-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mgmt-card-photo {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  overflow: hidden;
}

.mgmt-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease;
}

.mgmt-card:hover .mgmt-card-photo img {
  transform: scale(1.06);
}

.mgmt-card-info {
  padding: 1.1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mgmt-card-info .mgmt-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: .15rem;
}

.mgmt-card-info .mgmt-title {
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .3rem;
}

.mgmt-card-info .mgmt-qualif {
  font-size: .75rem;
  color: var(--grey);
  font-style: italic;
  margin-bottom: .4rem;
}

.mgmt-card-info .mgmt-dept {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  color: var(--primary);
  background: rgba(10, 31, 68, .07);
  padding: .15rem .6rem;
  border-radius: 50px;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section {
    padding: 70px 0;
  }

  #heroSlider {
    height: 90vh;
    min-height: 600px;
  }

  .hero-scroll-hint {
    display: none;
  }

  .stat-pill {
    padding: 1rem;
  }

  .stat-pill .num {
    font-size: 1.5rem;
  }

  .stat-pill::after {
    display: none;
  }

  .intro-img-wrap img {
    height: 350px;
  }

  .experience-badge {
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
  }

  .experience-badge .years {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: .97rem;
  }

  .hero-stats-bar .d-flex {
    flex-direction: column;
  }

  .stat-pill {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .stat-pill:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }

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

  .contact-form-card {
    padding: 1.5rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .map-embed iframe {
    height: 300px;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }

  .back-to-top {
    bottom: 4.5rem;
    right: 1rem;
  }

  .ceo-img {
    height: 260px;
  }
}

@media (max-width: 575.98px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .service-detail-img {
    height: 250px;
  }
}

/* Team responsive */
@media (max-width: 991.98px) {
  .chairman-card {
    flex-direction: column;
  }

  .chairman-img-wrap {
    width: 100%;
    height: 300px;
  }

  .chairman-img-wrap::after {
    background: linear-gradient(to top, rgba(10, 31, 68, .7), transparent);
  }

  .chairman-info {
    padding: 1.75rem;
  }

  .chairman-info h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .person-photo-wrap {
    height: 240px;
  }

  .mgmt-card-photo {
    width: 150px;
    height: 150px;
  }

  .chairman-img-wrap {
    height: 240px;
  }
}

@media (max-width: 575.98px) {
  .mgmt-card {
    flex-direction: column;
  }


}