:root {
  --primary-color: #c67a2a; /* Construction Amber */
  --primary-dark: #9f5f1e;
  --secondary-color: #1f2933; /* Steel Charcoal */
  --accent-color: #e6a23c; /* Warm Gold */
  --text-primary: #24303b;
  --text-secondary: #5f6b76;
  --bg-light: #f7f3ec;
  --bg-white: #ffffff;
  --border-color: #ddd6cb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-white);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* --- PIVOT Style Navbar --- */
.navbar {
  background: var(--bg-white);
  border-top: 3px solid var(--primary-color);
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.navbar-container {
  /* width: 100%; */
  /* max-width: none; */
  /* margin: 0 auto; */
  /* padding: 0 36px; */
  /* display: grid; */
  /* grid-template-columns: 1fr auto 1fr; */
  /* align-items: center; */
  height: 90px;
}

.navbar-brand {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: 0.8px;
  text-decoration: none;
  flex-shrink: 0;
  justify-self: start;
  white-space: nowrap;
  line-height: 1;
}

.navbar-brand span {
  color: var(--primary-color);
  margin-left: 2px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 34px;
  margin: 0;
  padding: 0;
  justify-self: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: "Inter", sans-serif;
  color: #3f4b56;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 10px 2px;
  transition:
    color 0.25s ease,
    transform 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
  transform: translateY(-1px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  border-radius: 99px;
  transition: width 0.25s ease;
  display: block;
  pointer-events: none;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar .nav-link.active,
.navbar .nav-link.show,
.navbar .nav-link:focus,
.navbar .nav-link:focus-visible {
  color: var(--primary-color);
  text-decoration: none !important;
}

.navbar .nav-link.active::after,
.navbar .nav-link.show::after,
.navbar .nav-link:focus::after,
.navbar .nav-link:focus-visible::after {
  width: 0 !important;
}

.dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 5px;
  font-size: 0.8rem;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 10px;
  min-width: 220px;
}

.dropdown-item {
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all 0.3s;
}

.dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary-color);
  padding-left: 25px;
}

.navbar-cta {
  flex-shrink: 0;
  justify-self: end;
  margin-left: 0;
}

.btn-quotation {
  font-family: "Inter", sans-serif;
  background: transparent;
  color: var(--secondary-color);
  border: 1px solid #cbd5e1;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  animation: quotationPulse 2.8s ease-in-out infinite;
}

.btn-quotation:hover {
  border-color: var(--primary-color);
  color: white;
  background: var(--primary-color);
  box-shadow: 0 8px 20px rgba(198, 122, 42, 0.28);
  animation-play-state: paused;
}

.btn-quotation::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: translateX(-160%);
  animation: quotationShine 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes quotationPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(198, 122, 42, 0);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(198, 122, 42, 0.16);
  }
}

@keyframes quotationShine {
  0%,
  20% {
    transform: translateX(-160%);
  }
  55% {
    transform: translateX(160%);
  }
  100% {
    transform: translateX(160%);
  }
}

.navbar-toggler {
  border: 1px solid var(--border-color);
  padding: 10px;
  display: none;
  border-radius: 8px;
  background: #f8fafc;
  transition: all 0.25s ease;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  border-color: #b7a894;
  background: #f3ece3;
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 41, 59, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mobileMenu {
  position: fixed;
  top: 83px;
  left: 0;
  right: 0;
  z-index: 1029;
}

.mobile-menu-wrapper {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
  border-radius: 0 0 14px 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 22px 20px;
}

.mobile-nav-list .nav-link {
  padding: 11px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.96rem;
}

.mobile-nav-list .nav-item:last-child .nav-link {
  border-bottom: 0;
}

.mobile-quotation-btn {
  width: 100%;
  margin-top: 12px;
  text-align: center;
}

/* --- Carousel --- */
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #1f71b5 0%, #40a1d0 42%, #8ccf84 100%);
}

.hero-carousel-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 6% 90%,
      rgba(255, 255, 255, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 25% 74%,
      rgba(255, 255, 255, 0.1),
      transparent 22%
    ),
    radial-gradient(
      circle at 92% 12%,
      rgba(255, 255, 255, 0.42),
      transparent 24%
    ),
    linear-gradient(
      130deg,
      rgba(8, 28, 54, 0.22) 0%,
      rgba(8, 28, 54, 0.08) 36%,
      rgba(255, 255, 255, 0) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.carousel-item {
  min-height: 700px;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 52px;
  padding: 132px 24px 116px;
}

.hero-copy {
  max-width: 650px;
  color: white;
}

.caption-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.caption-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 4.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.02;
  letter-spacing: -1.8px;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.hero-copy h1 span {
  color: #fff;
}

.hero-copy p {
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  max-width: 92%;
  margin-bottom: 2.1rem;
  line-height: 1.58;
}

.carousel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.carousel-btn {
  min-width: 205px;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
}

.carousel-btn-primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 18px 34px rgba(198, 122, 42, 0.3);
}

.carousel-btn-primary:hover {
  color: #fff;
  background: var(--primary-dark);
  box-shadow: 0 16px 34px rgba(159, 95, 30, 0.32);
}

.carousel-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.carousel-btn-secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.18);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  padding: 36px 0 70px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% 0 10% 10%;
  border-radius: 54px 54px 54px 240px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.84)
  );
  box-shadow: 0 30px 60px rgba(17, 53, 86, 0.14);
}

.hero-visual-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  margin-left: auto;
  aspect-ratio: 1 / 0.96;
  overflow: hidden;
  border-radius: 44px 44px 44px 210px;
  box-shadow: 0 28px 54px rgba(17, 53, 86, 0.18);
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.carousel-item.active .hero-visual-frame img {
  transform: scale(1.03);
}

.hero-highlight-card {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  max-width: 360px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-primary);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(12px);
}

.hero-highlight-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-highlight-card h2 {
  font-size: 1.34rem;
  line-height: 1.24;
  margin-bottom: 1.1rem;
  color: var(--secondary-color);
}

.hero-metrics {
  display: grid;
  gap: 12px;
}

.hero-metric {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(36, 48, 59, 0.1);
}

.hero-metric strong {
  font-size: 1.36rem;
  color: var(--primary-color);
}

.hero-metric span {
  max-width: 180px;
  text-align: right;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(198, 122, 42, 0.1);
  border: 1px solid rgba(198, 122, 42, 0.16);
  color: var(--secondary-color);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 32px rgba(17, 53, 86, 0.14);
}

.carousel-control-btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
  box-shadow: 0 8px 18px rgba(17, 53, 86, 0.1);
}

.carousel-control-btn:hover {
  transform: translateY(-1px);
  background: #f7f3ec;
}

.hero-indicators {
  position: static;
  margin: 0;
  display: inline-flex;
  gap: 10px;
}

.hero-indicators [data-bs-target] {
  width: 38px;
  height: 6px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 41, 51, 0.16);
  opacity: 1;
}

.hero-indicators .active {
  background: var(--primary-color);
}

.hero-enquiry-tab {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 4;
  transform: translateY(-50%);
  padding: 18px 14px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 18px 34px rgba(159, 95, 30, 0.26);
}

.hero-enquiry-tab:hover {
  color: #fff;
  background: var(--primary-dark);
}

/* --- Section Styling --- */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--primary-color);
}

/* --- Main Work Section --- */
.main-work-section {
  /* background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%); */
  background-image: url(../assests/image/Construction_basedSlider.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.main-work-section::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #002240de;
}

.main-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.work-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-color);
  border-radius: 12px;
  padding: 26px 24px 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.work-card h4 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--secondary-color);
}

.work-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-secondary);
}

.work-card li {
  margin-bottom: 9px;
  line-height: 1.65;
}

.work-card li:last-child {
  margin-bottom: 0;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--primary-color);
  color: white;
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(198, 122, 42, 0.3);
}

.experience-badge h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.about-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.about-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.founder-card {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.founder-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Services Cards --- */
.services-section {
  background: var(--bg-light);
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--primary-color);
  color: white;
  transform: rotate(-5deg);
}

.service-card h5 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Manpower Section --- */
.stat-box {
  background: white;
  padding: 15px;
  height:100%;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.603);
  transition: all 0.3s;
  border: 1px solid var(--border-color);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.stat-box .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-box p {
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0;
}

.deployment-box {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(198, 122, 42, 0.24);
}

.deployment-box h5 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.deployment-box p {
  opacity: 0.9;
  margin: 0;
}

/* --- Clients Section --- */
.clients-section {
  background: white;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.client-badge {
  background: var(--bg-light);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  box-shadow: 0 0 10px #c67a2a;
}

.client-badge:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(198, 122, 42, 0.22);
}

/* --- Contact/Quote --- */
.quote-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2b3641 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(230, 162, 60, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.quote-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  color: white;
  box-shadow: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 50px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(198, 122, 42, 0.3);
}

/* --- Footer --- */
footer {
  background: var(--secondary-color);
  color: #b7bfc6;
  padding: 80px 0 30px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  display: inline-block;
  letter-spacing: 2px;
}
.footer-logo img{
    border-radius:22px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer-link {
  display: block;
  color: #b7bfc6;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s;
  padding-left: 0;
  position: relative;
}

.footer-link:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--primary-color);
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 5px 20px rgba(198, 122, 42, 0.38);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  background: var(--primary-dark);
}

/* --- Sticky WhatsApp --- */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  z-index: 1100;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.48);
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-container {
    display: flex;
    height: 72px;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
  }

  .navbar-brand {
    font-size: 0.95rem;
    letter-spacing: 0.4px;
  }

  .navbar-menu {
    display: none;
    margin-left: 0;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-toggler {
    display: block;
  }

  #mobileMenu {
    top: 75px;
    padding: 0 12px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main-work-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .caption-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .hero-slide-content {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    padding: 116px 20px 106px;
  }

  .hero-copy p {
    max-width: 100%;
    margin-bottom: 1.4rem;
  }

  .carousel-actions {
    gap: 0.8rem;
  }

  .carousel-btn {
    min-width: 0;
    flex: 1 1 220px;
    padding: 0.9rem 1.2rem;
  }

  .hero-visual {
    min-height: auto;
    padding: 24px 0 100px;
  }

  .hero-visual::before {
    inset: 4% 0 13% 8%;
    border-radius: 36px 36px 36px 150px;
  }

  .hero-visual-frame {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 34px 34px 34px 150px;
  }

  .hero-highlight-card {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 380px;
    padding: 22px;
  }

  .hero-highlight-card h2 {
    font-size: 1.3rem;
  }

  .hero-metric span {
    max-width: 150px;
  }

  .carousel-item {
    min-height: 860px;
  }

  .hero-carousel-controls {
    bottom: 18px;
    gap: 10px;
    padding: 8px 10px;
  }

  .carousel-control-btn {
    width: 40px;
    height: 40px;
  }

  .hero-enquiry-tab {
    display: none;
  }

  .quote-form-wrapper {
    padding: 30px;
  }

  .cta-section {
    padding: 82px 20px 94px;
  }

  .cta-shell {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 28px;
    gap: 28px;
  }

  .cta-copy h2 {
    font-size: 2.45rem;
  }

  .cta-copy p {
    max-width: 100%;
  }

  .cta-actions {
    min-width: 0;
    width: 100%;
    align-items: stretch;
  }

  .cta-note {
    max-width: 100%;
  }

  .cta-contact-meta {
    width: 100%;
  }

  .whatsapp-float {
    left: 16px;
    bottom: 22px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

.hero-content {
  max-width: 760px;
  margin-left: min(8vw, 90px);
  padding: 2.3rem 2.8rem;
  background: rgba(255, 255, 255, 0.92);
  border-left: 5px solid var(--primary-color);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(3px);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 12px;
  line-height: 1.12;
  letter-spacing: -1px;
}

.hero-content h1 span {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 500;
  max-width: 92%;
  margin: 0;
}

/* --- Intro Section --- */
.intro-section {
  padding: 60px 20px;
  text-align: center;
  background: var(--bg-white);
}
.intro-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}
.intro-section p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* --- Detailed Service Blocks --- */
.service-block {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid var(--border-color);
}

.service-block:last-child {
  border-bottom: none;
}

/* Alternate Layouts */
.service-block.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  height: 400px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-content {
  flex: 1.2;
}

.service-tag {
  display: inline-block;
  background-color: #eef2f5;
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-tag.major {
  background-color: var(--secondary-color);
  color: var(--white);
}

.service-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-content p.description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid var(--secondary-color);
}

.feature-item h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.detailed-list {
  margin-bottom: 30px;
}

.detailed-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 1rem;
}

.detailed-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.btn-detail {
  display: inline-block;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-detail:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* --- Manpower Specific Section --- */
.manpower-deployment {
  background-color: #eef2f5;
  padding: 60px 20px;
  margin-top: 40px;
  border-radius: 10px;
}

.deployment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.deploy-item {
  background: var(--white);
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  color: var(--primary-color);
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 110px 20px;
  margin-top: 80px;
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 122, 42, 0.22),
      transparent 32%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(14, 28, 47, 0.18),
      transparent 36%
    ),
    linear-gradient(135deg, #f5efe7 0%, #fffaf4 45%, #eef3f7 100%);
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.cta-section::before {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -60px;
  background: rgba(198, 122, 42, 0.14);
  filter: blur(8px);
}

.cta-section::after {
  width: 220px;
  height: 220px;
  bottom: -90px;
  left: -40px;
  background: rgba(14, 28, 47, 0.08);
}

.cta-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(14, 28, 47, 0.12);
}

.cta-copy {
  max-width: 690px;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(198, 122, 42, 0.12);
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-copy h2 {
  margin-bottom: 16px;
  color: var(--secondary-color);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.1;
}

.cta-copy p {
  margin: 0;
  max-width: 620px;
  color: #455468;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-actions {
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  background: linear-gradient(135deg, var(--secondary-color), #233a5a);
  color: white;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(14, 28, 47, 0.2);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}

.btn-main:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(14, 28, 47, 0.24);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.cta-note {
  color: #627284;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-slide-content {
    padding: 104px 16px 98px;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: 2.15rem;
    line-height: 1.06;
    letter-spacing: -1.2px;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .carousel-btn {
    width: 100%;
  }

  .hero-visual {
    padding-bottom: 86px;
  }

  .hero-visual::before {
    inset: 6% 0 15% 0;
    border-radius: 28px 28px 28px 100px;
  }

  .hero-visual-frame {
    border-radius: 24px 24px 24px 100px;
    aspect-ratio: 1 / 1.02;
  }

  .hero-highlight-card {
    width: calc(100% - 20px);
    padding: 20px;
  }

  .hero-highlight-card h2 {
    font-size: 1.1rem;
  }

  .hero-metric {
    gap: 10px;
  }

  .hero-metric strong {
    font-size: 1.2rem;
  }

  .hero-metric span {
    max-width: 120px;
    font-size: 0.84rem;
  }

  .hero-carousel-controls {
    left: 16px;
    right: 16px;
    transform: none;
    justify-content: space-between;
  }

  .hero-indicators [data-bs-target] {
    width: 28px;
  }

  .cta-section {
    padding: 72px 16px 84px;
  }

  .cta-shell {
    padding: 24px 18px;
    gap: 24px;
    border-radius: 26px;
  }

  .cta-copy h2 {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .cta-copy p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .cta-tags span {
    font-size: 0.86rem;
  }

  .cta-actions {
    width: 100%;
  }

  .btn-main {
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    text-align: center;
    white-space: normal;
  }

  .cta-contact-meta a,
  .cta-contact-meta span {
    font-size: 0.9rem;
    width: 100%;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: 54vh;
    padding: 110px 16px 50px;
    justify-content: center;
  }

  .hero-content {
    margin-left: 0;
    padding: 1.7rem;
    border-radius: 12px;
    border-left-width: 4px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
  }

  .service-block,
  .service-block.reverse {
    flex-direction: column;
    gap: 30px;
  }

  .service-image {
    width: 100%;
    height: 250px;
  }

  .service-content h2 {
    font-size: 1.8rem;
  }
}

/* --- Contact Cards --- */
.contact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 0px 10px rgb(0 0 0 / 55%);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 4px solid transparent;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--accent-orange);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.contact-card:hover .icon-box {
  background: var(--primary-blue);
  color: var(--accent-orange);
}

/* --- Form Styling --- */
.form-section {
  background-color: white;
  padding: 80px 0;
}

.form-control {
  border-radius: 4px;
  padding: 12px 15px;
  border: 1px solid #dee2e6;
  background-color: #fcfcfc;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-blue);
  background-color: white;
}

.btn-submit {
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 40px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  background-color: var(--accent-orange);
  color: white;
  transform: translateY(-2px);
}

/* --- Map Section --- */
.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.1); /* Professional desaturated look */
  transition: filter 0.5s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1);
}

/* --- CTA Section --- */
.cta-section {
  background-color: var(--primary-blue);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.btn-outline-light-custom {
  border: 2px solid white;
  color: white;
  padding: 10px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-light-custom:hover {
  background-color: white;
  color: var(--primary-blue);
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 64px 0 34px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-content h1 {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 56px 0 26px;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 20px;
    border-radius: 18px;
  }
}

/* Match the shared services hero styling on this page. */
.hero {
  background:
    linear-gradient(
      108deg,
      rgba(19, 25, 31, 0.62) 8%,
      rgba(19, 25, 31, 0.25) 48%,
      rgba(19, 25, 31, 0.58) 100%
    ),
    url("./image/slider-image.png");
  background-size: cover;
  background-position: top;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 20px 70px;
}

.hero .hero-content {
  max-width: 760px;
  margin-left: min(8vw, 90px);
  padding: 2.3rem 2.8rem;
  background: rgb(0 0 0 / 50%);
  border-left: 5px solid var(--accent-orange);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(3px);
}

.hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.12;
  letter-spacing: -1px;
  max-width: none;
  opacity: 1;
  transform: none;
}

.hero .hero-content p {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 500;
  max-width: 92%;
  margin: 0;
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .hero {
    min-height: 54vh;
    padding: 110px 16px 50px;
    justify-content: center;
  }

  .hero .hero-content {
    margin-left: 0;
    padding: 1.7rem;
    border-radius: 12px;
    border-left-width: 4px;
  }

  .hero .hero-content h1 {
    font-size: 2rem;
  }

  .hero .hero-content p {
    font-size: 1rem;
    max-width: 100%;
  }
}
