@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
:root {
  --amber:      #f5a623;
  --amber-lt:   #ffdc82;
  --navy:       #0a0e1a;
  --navy-card:  #141b2d;
  --navy-dark:  #060b14;
  --light-bg:   #f8f9fb;
  --white:      #ffffff;
  --gray:       #9ca3af;
  --gray-lt:    #d1d5db;
  --pill:       9999px;
  --ease:       0.3s ease;
  --body-bg: var(--navy);
  --body-color: var(--white);
  --text-muted: var(--gray-lt);
  --surface: var(--navy-card);
  --surface-soft: rgba(255,255,255,.06);
  --surface-soft-strong: rgba(255,255,255,.1);
  --surface-border: rgba(255,255,255,.08);
  --panel-bg: rgba(20,27,45,.97);
  --nav-bg: rgba(10,14,26,.93);
  --overlay: rgba(10,14,26,.95);
}
/* google font start */
.black-ops-one-regular {
  font-family: "Black Ops One", system-ui;
  font-weight: 400;
  font-style:initial;
}

/* google font end */
:root[data-theme='light'] {
  --navy: #ffffff;
  --white: #0a0e1a;
  --navy-card: #f1f5f9;
  --navy-dark: #eef1f6;
  --light-bg: #f8f9fb;
  --gray: #4b5563;
  --gray-lt: #6b7280;
  --body-bg: #ffffff;
  --body-color: #0a0e1a;
  --text-muted: #4b5563;
  --surface: #ffffff;
  --surface-soft: rgba(10,14,26,.06);
  --surface-soft-strong: rgba(10,14,26,.1);
  --surface-border: rgba(10,14,26,.08);
  --panel-bg: rgba(255,255,255,.95);
  --nav-bg: rgba(255,255,255,.93);
  --overlay: rgba(255,255,255,.85);
}
/*common form start*/
/* Main layout */
.form-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  gap: 2.5rem;
  align-items: start;
}

/* Left panel */
.info-panel {
  position: sticky;
  top: 2rem;
}

.info-panel__content {
  animation: fadeIn 0.5s ease-out;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.info-panel__title {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.info-panel__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 420px;
}

/* Contained image box */
.image-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.image-box__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius-lg) - 4px);
}

/* Info list */
.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.info-list__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-soft);
  border-radius: var(--radius);
  color: var(--primary);
}

.info-list__icon svg {
  width: 20px;
  height: 20px;
}

.info-list__item div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.info-list__item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.info-list__item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Open popup button */
.btn-open-popup {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-open-popup svg {
  width: 1.15rem;
  height: 1.15rem;
}

.btn-open-popup:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}

.btn-open-popup:active {
  transform: scale(0.98);
}

/* Right form panel */
.form-panel {
  animation: fadeIn 0.5s ease-out 0.1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.form-card__header {
  padding: 1.75rem 2rem 0;
}

.form-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.form-card__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Form fields */
.contact-form {
  padding: 1.5rem 2rem 2rem;
}

.field {
  margin-bottom: 1.15rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.req {
  color: #ef4444;
}

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--surface-muted);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.field__input::placeholder,
.field__textarea::placeholder {
  color: #94a3b8;
}

.field__input:hover,
.field__select:hover,
.field__textarea:hover {
  border-color: #cbd5e1;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  background: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.field__textarea {
  resize: vertical;
  min-height: 100px;
}

.field__select-wrap {
  position: relative;
}

.field__select {
  appearance: none;
  padding-right: 2.25rem;
  cursor: pointer;
}

.field__arrow {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  color: var(--text-muted);
  pointer-events: none;
}

/* Submit */
.btn-submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.8rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}

.btn-submit:active {
  transform: scale(0.99);
}

.form-disclaimer {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* Footer */
.page-footer {
  padding: 1.25rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.page-footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Modal popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
}

.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
}

.modal__title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.modal__subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.modal__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal__close svg {
  width: 1.1rem;
  height: 1.1rem;
}

.modal__close:hover {
  background: var(--border);
  color: var(--text);
}

.contact-form--modal {
  padding: 1.25rem 1.5rem 1.5rem;
}

/* Fixed right side action icons */
.fixed-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 100px;
  top: auto;
  transform: none;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
}

.fixed-actions__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fixed-actions__enquire-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.fixed-actions__enquire-wrap:hover .fixed-actions__btn--enquire {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.22);
}

.fixed-actions__enquire-wrap:active .fixed-actions__btn--enquire {
  transform: scale(0.96);
}

.fixed-actions__text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.fixed-actions__btn svg {
  width: 1.35rem;
  height: 1.35rem;
}

.fixed-actions__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.22);
}

.fixed-actions__btn:active {
  transform: scale(0.96);
}

.fixed-actions__btn--whatsapp {
  background: #25d366;
}

.fixed-actions__btn--whatsapp:hover {
  background: #1ebe57;
}

.fixed-actions__btn--enquire {
  background: var(--primary);
}

.fixed-actions__btn--enquire:hover {
  background: var(--primary-dark);
}

.fixed-actions__btn--contact {
  background: #0f172a;
}

.fixed-actions__btn--contact:hover {
  background: #1e293b;
}

.fixed-actions__label {
  position: absolute;
  right: calc(100% + 10px);
  white-space: nowrap;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  pointer-events: none;
}

.fixed-actions__btn:hover .fixed-actions__label,
.fixed-actions__btn:focus-visible .fixed-actions__label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 1.25rem;
  }

  .info-panel {
    position: static;
  }

  .info-panel__title {
    font-size: 1.55rem;
  }

  .image-box__img {
    max-height: 200px;
  }
}

@media (max-width: 540px) {
  .top-bar {
    padding: 1rem 1.25rem;
  }

  .top-bar__tag {
    display: none;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-card__header,
  .contact-form {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .info-list {
    gap: 0.85rem;
  }

  .fixed-actions {
    right: 0.75rem;
    bottom: 100px;
  }

  .fixed-actions__btn {
    width: 46px;
    height: 46px;
  }

  .fixed-actions__btn svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .fixed-actions__label {
    display: none;
  }
}

/*common form end*/


.text-white{color: white;}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--body-bg);
  color: var(--body-color);
  overflow-x: hidden;
  line-height: 1.6;
}
html[data-theme='light'] body {
  background: var(--body-bg);
  color: var(--body-color);
}
h1,h2,h3,h4,h5 { font-family: 'Oswald', sans-serif; line-height: 1.1; letter-spacing: 0.02em; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.d-none{
    display: none;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: var(--pill);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--amber-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,166,35,.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--pill);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--ease);
}
.theme-toggle:hover {
  background: rgba(255,255,255,.16);
}
html[data-theme='light'] .theme-toggle {
  border-color: rgba(10,14,26,.15);
  background: rgba(10,14,26,.08);
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: var(--pill);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--ease);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── CONTAINER ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── GRAD TEXT ── */
/*.text-grad {*/
/*  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-lt) 100%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  background-clip: text;*/
/*}*/

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  border-color: rgba(255,255,255,.05);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  /* padding: 0 24px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo span { color: var(--amber); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-lt);
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); }
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0;
  transition: var(--ease);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { opacity: 1; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-arrow {
  display: inline-block;
  width: 14px; height: 14px;
  vertical-align: middle;
  margin-left: 2px;
  opacity: .7;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: var(--panel-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  border-left: 3px solid var(--amber);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-lt);
  transition: var(--ease);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--amber); background: var(--surface-soft); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background:lightblue;
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay > a, .mobile-overlay > .mob-services-toggle {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.7);
  transition: var(--ease);
  background: none; border: none; cursor: pointer;
}
.mobile-overlay > a:hover, .mobile-overlay > .mob-services-toggle:hover { color: var(--amber); }
.mob-service-links { display: none; flex-direction: column; gap: 6px; text-align: center; }
.mob-service-links.open { display: flex; }
.mob-service-links a {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.5);
  transition: var(--ease);
}
.mob-service-links a:hover { color: var(--amber); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  /* background: var(--navy); */
   background:linear-gradient(to right,#000,#000);
  overflow: hidden;
}
.hero-bg .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  /* background: linear-gradient(135deg, var(--overlay) 0%, rgba(10,14,26,.7) 60%, transparent 100%); */
 /* background:linear-gradient(to right,#00000071,#00000047); */
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-accent-line {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 120px;
  background: var(--amber);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 20px rgba(245,166,35,.6);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px;
  /* margin: 0 auto; */
  padding:24px;
  padding-top: 80px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--amber);
}
.hero h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.hero h1 .grad { color: var(--amber); }
.hero-desc {
  font-size: 1rem;
  color: var(--gray-lt);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stat {
  background: var(--surface-soft);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(10px);
  border-radius: var(--pill);
  padding: 14px 24px;
  text-align: center;
  transition: var(--ease);
}
.hero-stat:hover { border-color: rgba(245,166,35,.3); }
.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}
.hero-stat-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
}

/* ============================================================
   STATS SECTION (parallax bg)
   ============================================================ */
.stats-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.stats-bg {
  position: absolute; inset: 0;
  background: url('../images/stats-bg.png') center/cover fixed;
}
.stats-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--overlay);
  backdrop-filter: blur(2px);
}
.stats-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-card {
  padding: 48px 32px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(245,166,35,.12);
  background: var(--surface-soft);
  backdrop-filter: blur(6px);
  transition: var(--ease);
}
.stat-card:hover { background: rgba(245,166,35,.06); }
.stat-card + .stat-card::before {
  content: '';
  position: absolute; left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(245,166,35,.4), transparent);
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--amber), var(--amber-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 15px rgba(245,166,35,.3));
}
.stat-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--body-color);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.services-section .section-head { text-align: center; margin-bottom: 80px; }
.services-section h2 {
  font-size: clamp(2.5rem,5vw,3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.services-section h2 .ul-line {
  display: block;
  width: 96px; height: 4px;
  background: var(--amber);
  border-radius: 2px;
  margin: 16px auto 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}
.svc-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  group: true;
}
.svc-card:hover {
  border-color: rgba(245,166,35,.3);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.svc-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.08); }
.svc-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-card) 0%, transparent 60%);
}
.svc-img-wrap .svc-hover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(245,166,35,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  mix-blend-mode: overlay;
  z-index: 2;
}
.svc-card:hover .svc-hover-overlay { opacity: 1; }
.svc-body {
  padding: 32px;
  padding-top: 44px;
  position: relative;
  margin-top: -32px;
  background: var(--navy-card);
  border-radius: 24px 24px 0 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.svc-icon {
  position: absolute;
  top: -22px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--amber);
  border: 4px solid var(--navy-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(245,166,35,.4);
}
.svc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  transition: var(--ease);
}
.svc-card:hover .svc-title { color: var(--amber); }
.svc-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border: 2px solid rgba(245,166,35,.5);
  border-radius: var(--pill);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--ease);
}
.svc-link:hover { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.svc-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-bottom-bar { transform: scaleX(1); }

/* ============================================================
   WHY US
   ============================================================ */
.whyus-section { position: relative; }
.whyus-left {
  background: var(--navy);
  padding: 120px 96px 120px 24px;
  max-width: 640px;
  margin-left: auto;
}
.whyus-section .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.whyus-img-col {
  background: url('/images/project-img/whyus-bg.png') center/cover;
  position: relative;
  min-height: 600px;
}
.whyus-img-col::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,14,26,.5) 0%, transparent 60%);
}
.whyus-h2 {
  font-size: clamp(2rem,3.5vw,2.8rem);
  text-transform: uppercase;
  margin-bottom: 48px;
}
.reasons-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.reason-item {
  display: flex;
  gap: 20px;
  background: var(--navy-card);
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.05);
  transition: var(--ease);
  align-items: flex-start;
}
.reason-item:hover { border-color: rgba(245,166,35,.3); }
.reason-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,.3);
  background: rgba(245,166,35,.08);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
}
.reason-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.reason-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-section { padding: 120px 0; background: var(--light-bg); }
.projects-section .section-head { text-align: center; margin-bottom: 60px; }
.projects-section h2 {
  font-size: clamp(2.5rem,5vw,3.5rem);
  text-transform: uppercase;
  color: #0a0e1a;
  margin-bottom: 40px;
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.filter-tab {
  padding: 10px 28px;
  border-radius: var(--pill);
  border: 1px solid rgba(0,0,0,.1);
  background: var(--white);
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: var(--ease);
}
.filter-tab.active,
.filter-tab:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  box-shadow: 0 8px 20px rgba(245,166,35,.3);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.proj-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.proj-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.proj-card:hover img { transform: scale(1.1); }
.proj-overlay {
  position: absolute; inset: 0;
  background: rgba(10,14,26,.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  opacity: 0;
  transition: var(--ease);
}
.proj-card:hover .proj-overlay { opacity: 1; }
.proj-eye {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(245,166,35,.4);
  transform: translateY(16px);
  transition: transform 0.5s ease;
  color: var(--navy);
}
.proj-card:hover .proj-eye { transform: translateY(0); }
.proj-cat {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--amber); margin-bottom: 8px;
}
.proj-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
}
.proj-hint {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(255,255,255,.5);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { padding: 120px 0; background: var(--body-bg); overflow: hidden; }
.process-section .section-head { text-align: center; margin-bottom: 96px; }
.process-section h2 {
  font-size: clamp(2.5rem,5vw,3.5rem);
  text-transform: uppercase;
  color: var(--body-color);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 48px;
  position: relative;
}
.process-connector {
  display: none;
  position: absolute;
  top: 180px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(245,166,35,.4), transparent);
}
@media (min-width:768px) { .process-connector { display: block; } }
.proc-card {
  background: var(--surface);
  padding: 40px 32px 32px;
  border-radius: 20px;
  border: 1px solid var(--surface-border);
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
  position: relative;
  text-align: center;
  transition: var(--ease);
  z-index: 2;
}
.proc-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.12); }
.proc-num {
  position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--amber);
  border: 4px solid var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--body-color);
  box-shadow: 0 8px 20px rgba(245,166,35,.4);
  z-index: 3;
}
.proc-img {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin: 16px 0 24px;
  overflow: hidden;
}
.proc-step {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--amber); margin-bottom: 10px;
}
.proc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--body-color);
  margin-bottom: 14px;
}
.proc-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   TEAM
   ============================================================ */
.team-section { padding: 120px 0; background: var(--navy); }
.team-section .section-head { text-align: center; margin-bottom: 80px; }
.team-section h2 {
  font-size: clamp(2.5rem,5vw,3.5rem);
  text-transform: uppercase;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
}
.team-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  position: relative;
  aspect-ratio: 3/4;
  transition: border-color 0.3s ease;
}
.team-card:hover { border-color: rgba(245,166,35,.5); }
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover img { transform: scale(1.05); }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy) 0%, rgba(10,14,26,.4) 50%, transparent 100%);
  opacity: .8;
}
.team-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 24px;
  transform: translateY(48px);
  transition: transform 0.5s ease;
}
.team-card:hover .team-info { transform: translateY(0); }
.team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--amber);
  margin-bottom: 20px;
}
.team-socials {
  display: flex; gap: 10px;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}
.team-card:hover .team-socials { opacity: 1; }
.team-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: var(--ease);
}
.team-social:hover { background: var(--amber); color: var(--navy); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 120px 0; background: var(--body-bg); }
.testimonials-section .section-head { text-align: center; margin-bottom: 80px; }
.testimonials-section h2 {
  font-size: clamp(2.5rem,5vw,3.5rem);
  text-transform: uppercase;
  color: var(--body-color);
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.testi-card {
  background: var(--surface);
  padding: 48px;
  border-radius: 20px;
  border: 1px solid var(--surface-border);
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
  position: relative;
  transition: all 0.3s ease;
}
.testi-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.testi-quote {
  position: absolute; top: 32px; right: 32px;
  font-size: 5rem; line-height: 1;
  color: var(--amber); opacity: .08;
  font-family: Georgia, serif;
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 24px; }
.testi-stars span { color: var(--amber); font-size: 1.1rem; }
.testi-text {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--body-color);
}
.testi-company { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--amber); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--surface);
}
.cta-bg-img {
  position: absolute; inset: 0;
  background: url('../images/cta-bg.png') center/cover;
  opacity: .4;
  mix-blend-mode: luminosity;
}
.cta-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--overlay) 0%, var(--overlay) 50%, var(--overlay) 100%);
}
.cta-orb1 {
  position: absolute; left: 10%; top: 50%; transform: translateY(-50%);
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--amber);
  opacity: .18;
  filter: blur(100px);
}
.cta-orb2 {
  position: absolute; right: 20%; bottom: 0;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--amber);
  opacity: .12;
  filter: blur(80px);
}
.cta-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-content h2 {
  font-size: clamp(3rem,8vw,6rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: .95;
  margin-bottom: 48px;
}
.cta-content p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(245,166,35,.2);
  padding: 96px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 20px;
}
.footer-brand-name span { color: var(--amber); }
.footer-tagline { font-size: 0.9rem; color: var(--gray); line-height: 1.75; margin-bottom: 28px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--ease);
}
.footer-social:hover { background: var(--amber); color: var(--navy-dark); }
.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-col-title::after {
  content: '';
  display: block;
  width: 32px; height: 3px;
  background: var(--amber);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: var(--ease);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--amber); }
.newsletter-text { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.newsletter-form { position: relative; display: flex; }
.newsletter-form input {
  width: 100%;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  padding: 14px 140px 14px 20px;
  border-radius: var(--pill);
  font-size: 0.85rem;
  outline: none;
  transition: var(--ease);
}
.newsletter-form input::placeholder { color: var(--gray); }
.newsletter-form input:focus { border-color: var(--amber); }
.newsletter-form button {
  position: absolute;
  right: 4px; top: 4px; bottom: 4px;
  padding: 0 22px;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: var(--pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--ease);
}
.newsletter-form button:hover { background: var(--amber-lt); }
.footer-bottom {
  border-top: 1px solid rgba(245,166,35,.15);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gray); transition: var(--ease); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 32px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg-2d{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #000000ac ,#000000a8),url(/images/banners/2d-design.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-3d{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #000000ac ,#00000060),url(/images/banners/3d-design.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-commercial{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #000000ac ,#00000060),url(/images/banners/commercial.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-construction{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000083 ,#00000060),url(/images/banners/construction.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-institutional{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000083 ,#00000060),url(../banner/interior-design.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-elevation{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000083 ,#00000060),url(/images/banners/elevation.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-exterior{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000083 ,#00000060),url(/images/banners/exterior-design.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-interior{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000083 ,#00000060),url(/images/banners/interior-design.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-structural{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000083 ,#00000060),url(/images/banners/structural-drawings.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-service{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000083 ,#00000060),url(/images/banners/service-banner.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-about{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000079 ,#000000ac),url(/images/banners/about.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-projects{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000079 ,#000000ac),url(/images/banners/project.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-contact{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000057 ,#0000004c),url(/images/banners/contact.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-team{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000057 ,#0000004c),url(/images/banners/team.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-testimonials{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000057 ,#0000004c),url(/images/banners/testimonials.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-bg-residential{
  position: absolute; inset: 0;
  background:linear-gradient(to right, #00000057 ,#0000004c),url(/images/banners/residential.webp) no-repeat;
  background-size:cover;
  z-index: -5;
}
.page-hero-border {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.08), transparent);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color:white;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--amber); }
.page-hero h1 {
  font-size: clamp(3rem,6vw,5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.page-hero p { font-size: 1.05rem; max-width: 580px; line-height: 1.75; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0;
}
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-img-main { grid-column: 1/-1; height: 280px; object-fit: cover; border-radius: 16px; }
.about-img-sub { height: 200px; object-fit: cover; border-radius: 16px; }
.about-mini-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0;
}
.mini-stat {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(245,166,35,.15);
  border-radius: 14px;
  padding: 20px;
}
.mini-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem; font-weight: 700;
  color: var(--amber); line-height: 1;
}
.mini-stat-lbl { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-top: 4px; }
.values-section { padding: 100px 0; background: var(--navy-card); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.val-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--ease);
}
.val-card:hover { border-color: rgba(245,166,35,.3); transform: translateY(-4px); }
.val-icon { font-size: 2.8rem; margin-bottom: 16px; }
.val-title { font-family: 'Oswald', sans-serif; font-size: 1.15rem; text-transform: uppercase; margin-bottom: 12px; }
.val-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-left {
  background: var(--navy);
  padding: 100px 64px 100px 24px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 640px;
  margin-left: auto;
}
.contact-right {
  background: var(--light-bg);
  padding: 100px 24px 100px 64px;
  max-width: 640px;
}
.contact-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 36px; }
.contact-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  transition: var(--ease);
}
.contact-item:hover .contact-icon-wrap { background: var(--amber); border-color: var(--amber); }
.contact-lbl { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray); margin-bottom: 6px; }
.contact-val { font-size: 1.05rem; color: var(--white); font-weight: 500; }
.contact-form-wrap {
  background: var(--white);
  padding: 48px;
  border-radius: 28px;
  box-shadow: 0 8px 60px rgba(0,0,0,.08);
}
.contact-form-wrap h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--light-bg);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--amber);
  outline: none;
  transition: all 0.25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--white); color: var(--navy); }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.svc-detail-hero { padding: 160px 0 80px; background: var(--navy); }
.svc-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  padding: 80px 0;
  align-items: start;
}
.svc-detail-sidebar {
  background: var(--navy-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: 100px;
}
.svc-sidebar-title {
  background: var(--amber);
  color: var(--navy);
  padding: 20px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.svc-sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-lt);
  transition: var(--ease);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.svc-sidebar-link:last-child { border-bottom: none; }
.svc-sidebar-link:hover, .svc-sidebar-link.active { color: var(--amber); background: rgba(245,166,35,.06); }
.svc-sidebar-link .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--navy-card);
  border: 1px solid rgba(245,166,35,.4);
  border-radius: 14px;
  padding: 16px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 5000;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(.175,.885,.32,1.275);
  max-width: 320px;
  color: var(--white);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-check { color: var(--amber); margin-right: 8px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  position: relative;
  text-align: center;
}
.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  display: inline-block;
}
.lb-caption {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--gray-lt);
}
.lb-caption strong { color: var(--amber); font-family: 'Oswald', sans-serif; font-size: 1rem; }
.lb-btn {
  position: fixed;
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--ease);
}
.lb-btn:hover { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.lb-close { top: 20px; right: 24px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
/* form design start*/

/* form design end*/
:root {
  --bg: #f1f5f9;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --text: #0f172a;
  --text-muted: #64748b;
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --primary-soft: #fff7ed;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --radius: 10px;
  --radius-lg: 16px;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Page */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main layout */
.form-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  gap: 2.5rem;
  align-items: start;
}

/* Left panel */
.info-panel {
  position: sticky;
  top: 2rem;
}

.info-panel__content {
  animation: fadeIn 0.5s ease-out;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.info-panel__title {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.info-panel__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 420px;
}

/* Contained image box */
.image-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.image-box__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius-lg) - 4px);
}

/* Info list */
.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.info-list__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-soft);
  border-radius: var(--radius);
  color: var(--primary);
}

.info-list__icon svg {
  width: 20px;
  height: 20px;
}

.info-list__item div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.info-list__item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.info-list__item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Open popup button */
.btn-open-popup {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-open-popup svg {
  width: 1.15rem;
  height: 1.15rem;
}

.btn-open-popup:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}

.btn-open-popup:active {
  transform: scale(0.98);
}


/* Modal popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
}

.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
}

.modal__title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.modal__subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.modal__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal__close svg {
  width: 1.1rem;
  height: 1.1rem;
}

.modal__close:hover {
  background: var(--border);
  color: var(--text);
}

.contact-form--modal {
  padding: 1.25rem 1.5rem 1.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 1.25rem;
  }

  .info-panel {
    position: static;
  }

  .info-panel__title {
    font-size: 1.55rem;
  }

  .image-box__img {
    max-height: 200px;
  }
}

@media (max-width: 540px) {
  .top-bar {
    padding: 1rem 1.25rem;
  }

  .top-bar__tag {
    display: none;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-card__header,
  .contact-form {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .info-list {
    gap: 0.85rem;
  }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid,
  .projects-grid,
  .team-grid,
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .whyus-section .two-col { grid-template-columns: 1fr; }
  .whyus-left { max-width: 100%; padding: 80px 24px; margin: 0; }
  .whyus-img-col { min-height: 400px; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-left { max-width: 100%; padding: 80px 24px; margin: 0; }
  .contact-right { max-width: 100%; padding: 0 24px 80px; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-detail-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid,
  .process-grid,
  .values-grid { grid-template-columns: 1fr; }
  .projects-grid,
  .team-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.8rem,10vw,4rem); }
  .about-mini-stats { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom-links { gap: 16px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .about-mini-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
