/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; color: #333; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }

/* ─── THEME COLORS ─── */
:root {
  --theme: #394545;
  --orange: #ef7f1b;
  --btn:    #1273c0;
  --bg1:    #2c3333;
  --bg2:    #1e2828;
  --bg3:    #333f3f;
  --text-light: #ccc;
}

/* ─── NAVBAR ─── */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 999; }
nav.navbar {
  background: var(--theme);
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.navbar-brand img { height: 55px; width: auto; }
.navbar-brand { display: flex; align-items: center; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 0;
}
.navbar-nav li a {
  color: #fff;
  padding: 10px 14px;
  display: block;
  font-size: 14px;
  transition: color .2s;
}
.navbar-nav li a:hover { color: #f9aa6d; }

.toggle-nav { display: none; font-size: 22px; color: #fff; cursor: pointer; }

/* ─── SIDE MENU ─── */
#site-menu {
  position: fixed; top: 0; left: -280px; width: 260px; height: 100vh;
  background: var(--theme); z-index: 9999;
  padding: 20px 0;
  transition: left .3s ease;
  overflow-y: auto;
}
#site-menu.open { left: 0; }
#site-menu h4 { color: #fff; padding: 12px 20px; font-size: 16px; }
#site-menu .closeMenu {
  position: absolute; top: 14px; right: 16px;
  color: #fff; font-size: 20px; cursor: pointer;
}
#site-menu ul li a {
  display: block; padding: 12px 20px;
  color: #ccc; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
#site-menu ul li a:hover { color: #f9aa6d; background: rgba(255,255,255,0.05); }
#site-menu .dropdown-menu {
  display: none; background: rgba(0,0,0,0.2); padding: 0;
}
#site-menu .dropdown.open .dropdown-menu { display: block; }
#site-menu .dropdown-menu li a { padding-left: 36px; font-size: 13px; }
.siteOverlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998;
}
.siteOverlay.active { display: block; }

/* ─── HERO SLIDER ─── */
.main-carousel-wrapper {
  padding-top: 70px;
  position: relative;
  background: #222;
  overflow: hidden;
}
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform .6s ease;
}
.slider-track img {
  min-width: 100%;
  width: 100%;
  height: 500px;
  object-fit: cover;
  flex-shrink: 0;
}
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer; border: none;
  transition: background .2s;
}
.slider-dot.active { background: #fff; }
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4); color: #fff;
  border: none; padding: 12px 16px; font-size: 20px; cursor: pointer; z-index: 10;
}
.slider-prev { left: 10px; }
.slider-next { right: 10px; }

/* triangle strip */
.bannerBottomStrip {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40px; overflow: hidden; pointer-events: none;
}
.bannerBottomStrip.theme::before {
  content: '';
  display: block;
  width: 0; height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-bottom: 40px solid var(--theme);
  margin: auto;
}

/* ─── SECTION BASE ─── */
section { padding: 40px 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
.container-fluid { width: 100%; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
[class*="col-"] { padding: 0 15px; }
.col-md-2 { width: 16.666%; }
.col-md-3 { width: 25%; }
.col-md-4 { width: 33.333%; }
.col-md-6 { width: 50%; }
.col-md-8 { width: 66.666%; }
.col-md-9 { width: 75%; }
.col-md-10 { width: 83.333%; }
.col-md-12 { width: 100%; }
.col-sm-6 { width: 50%; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ─── HEADINGS ─── */
h2.heading {
  font-size: 28px; font-weight: 700;
  color: #333; margin-bottom: 10px;
}
h3.heading {
  font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 20px;
}

/* ─── FEATURED PROJECTS CAROUSEL ─── */
.featuredProjects-carousel-wrapper { padding: 20px 0; }
.featured-slider-container { position: relative; overflow: hidden; }
.featured-track { display: flex; transition: transform .5s ease; }

.featuredItemWrapper {
  display: flex;
  flex-direction: row;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  min-height: 340px;
  width: 100%;
}
.featuredItem-left {
  width: 55%;
  flex-shrink: 0;
  position: relative;
}
.featuredItemImageWrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.featuredItemImageWrapper img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* corner accents */
.topLeftAngle {
  position: absolute; top: 0; left: 0;
  width: 0; height: 0;
  border-top: 30px solid var(--theme);
  border-right: 30px solid transparent;
}
.bottomRightAngle {
  position: absolute; bottom: 0; right: 0;
  width: 0; height: 0;
  border-bottom: 30px solid var(--theme);
  border-left: 30px solid transparent;
}

.featuredItem-body {
  width: 45%;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.featuredItem-body h4.title {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme);
  margin-bottom: 14px;
}
.featuredItem-body p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 6px;
}
.featuredItem-body p strong { color: #333; }
.featuredItem-body .highlights {
  margin: 12px 0;
}
.featuredItem-body .highlights li {
  font-size: 14px; color: #555;
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 4px;
}
.featuredItem-body .highlights li .fa { color: var(--orange); }

/* carousel controls */
.bx-controls-direction {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}
.bx-prev, .bx-next {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--theme); color: #fff; font-size: 20px;
  cursor: pointer; border: none; transition: background .2s;
}
.bx-prev:hover, .bx-next:hover { background: var(--orange); }

/* ─── BTN ─── */
.btn { display: inline-block; padding: 8px 20px; border-radius: 4px; font-size: 14px; cursor: pointer; border: none; }
.btn-primary { background: var(--btn); color: #fff; }
.btn-primary:hover { background: #0f5da0; }
.rounded { border-radius: 20px !important; }

/* ─── VISION / GROUP / MILESTONES ICONS ─── */
.vision-section {
  background: #fff;
  padding: 50px 15px;
  margin: 30px 0 0;
}
.vision-section .col-md-4 {
  text-align: center;
  padding: 20px 30px;
}
.vision-section img {
  height: 80px; width: auto; margin: 0 auto 14px;
}
.vision-section h3 {
  font-weight: 700; color: var(--orange); font-size: 18px; margin-bottom: 10px;
}
.vision-section p { font-size: 15px; color: #555; line-height: 1.7; }

/* ─── MILESTONES COUNTER ─── */
.bg-black1 { background: var(--bg1); }
.bg-black2 { background: var(--bg2); }
.bg-black3 { background: var(--bg3); }

.milestone-wrapper { padding: 20px 0; }
.milestone-wrapper h2 { color: #fff; margin-bottom: 30px; }

ul.highlights.text-center {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
}
ul.highlights.text-center li {
  text-align: center; padding: 20px 40px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
ul.highlights.text-center li:last-child { border-right: none; }
.number { font-size: 42px; font-weight: 700; color: var(--orange); line-height: 1; }
ul.highlights.text-center li p { color: #ccc; font-size: 13px; margin-top: 6px; }

/* ─── ENQUIRY FORM ─── */
.formBoxHome { padding: 40px 0; }
.moreInfo-wrapper { max-width: 900px; margin: 0 auto; text-align: center; }
.moreInfoForm-wrapper { margin-top: 20px; }
.enquire-form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.form-group { margin: 0; }
.form-control {
  padding: 10px 14px; border: 1px solid #999; border-radius: 4px;
  font-size: 14px; width: 200px; background: rgba(255,255,255,0.1); color: #fff;
}
.form-control::placeholder { color: #bbb; }
.form-control:focus { outline: none; border-color: var(--orange); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg2);
  padding: 40px 0 20px;
  color: #ccc;
}
footer .footer-wrapper { padding: 0; }
footer h4.title { color: #fff; font-size: 16px; margin-bottom: 14px; font-weight: 700; }
footer p { font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: #ccc; font-size: 14px; transition: color .2s; }
footer ul li a:hover { color: var(--orange); }

.social { display: flex; gap: 10px; margin-top: 12px; }
.social li a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 15px;
  transition: background .2s;
}
.social li a:hover { background: var(--orange); }

.footer-contact a { color: var(--orange); font-size: 20px; font-weight: 700; display: inline-block; margin: 8px 0; }
.footer-contact a:hover { color: #fff; }

/* footer bottom */
.footer-bottom {
  background: var(--bg1);
  padding: 14px 0;
  color: #bbb;
}
.footer-bottom h5 { font-size: 13px; font-weight: 400; }
.footer-bottom h5 a { color: #fff; }

/* mobile bottom bar */
.mob-box {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--theme); z-index: 990;
}
.btn-group-justified { display: flex; }
.btn-bottom {
  flex: 1; text-align: center; padding: 10px 4px; color: #fff;
  font-size: 12px; border-right: 1px solid rgba(255,255,255,0.2);
  background: none; border-top: none; border-left: none; border-bottom: none;
  cursor: pointer;
}
.btn-bottom:last-child { border-right: none; }
.btn-bottom .fa { display: block; font-size: 18px; margin-bottom: 2px; }

/* ─── MODAL ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 9998;
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--theme); border-radius: 6px;
  width: 90%; max-width: 540px; overflow: hidden;
}
.modal-header {
  padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h4 { color: #fff; font-size: 17px; }
.modal-close { background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }
.modal-body { padding: 24px 20px; }
.listForm { display: flex; gap: 16px; }
.listForm-left { width: 36%; text-align: center; }
.listForm-left h5 { color: #fff; margin-bottom: 14px; font-size: 14px; }
.listForm-left > div { margin-bottom: 16px; }
.listForm-left img { height: 50px; margin: 0 auto 6px; }
.listForm-left p { color: #fff; font-size: 12px; }
.listForm-right { width: 64%; text-align: center; }
.listForm-right img { height: 60px; margin: 0 auto 14px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .col-md-2, .col-md-3, .col-md-4, .col-md-6, .col-md-8, .col-md-9, .col-md-10, .col-md-12 { width: 100%; }
  .hidden-xs, .hidden-sm { display: none !important; }
  .toggle-nav { display: block; }
  .navbar-nav { display: none; }
  .mob-box { display: block; }
  body { padding-bottom: 50px; }
  .featuredItemWrapper { flex-direction: column; }
  .featuredItem-left, .featuredItem-body { width: 100%; }
  .featuredItemImageWrapper img { height: 220px; }
  ul.highlights.text-center li { padding: 14px 20px; }
  .vision-section .col-md-4 { width: 100%; }
  .slider-track img { height: 240px; }
}
@media (min-width: 993px) {
  .visible-xs { display: none !important; }
}
