/* =============================================
   CSS VARIABLES & ROOT
============================================= */
:root {
  --royal-blue: #19529f;
  ;
  --royal-blue-light: #122848;
  --royal-blue-mid: #0D2444;
  --orange: #FF7A00;
  --orange-light: #FF9A30;
  --orange-glow: rgba(255, 122, 0, 0.3);
  --white: #FFFFFF;
  --soft-gray: #F5F7FA;
  --gray-100: #E8EDF5;
  --text-muted-light: rgba(255, 255, 255, 0.65);
  --text-muted-dark: #6B7280;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-luxury: 0 20px 60px rgba(11, 31, 58, 0.18);
  --shadow-card: 0 8px 40px rgba(11, 31, 58, 0.12);
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
}

/* =============================================
   GLOBAL RESET & BASE
============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--royal-blue);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =============================================
   TOPBAR
============================================= */
#topbar {
  background: var(--royal-blue);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 122, 0, 0.2);
  position: relative;
  z-index: 1050;
}

#topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

#topbar .topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#topbar .topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-accent);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-muted-light);
  letter-spacing: 0.02em;
  transition: var(--transition);
}

#topbar .topbar-item i {
  color: var(--orange);
  font-size: 13px;
}

#topbar .topbar-item:hover {
  color: var(--white);
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

#topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted-light);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-schedule {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-schedule:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px var(--orange-glow);
  color: var(--white);
}

/* =============================================
   NAVBAR
============================================= */
#mainNav {
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: all 0.5s ease;
  padding: 0px 0;
  background: #fff;
}

/* #mainNav.scrolled {
  background: rgba(11, 31, 58, 0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: 12px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,122,0,0.15);
} */

#mainNav .navbar-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  font-weight: 900;
  letter-spacing: -1px;
}

.brand-text span {
  color: var(--orange);
}

.navbar-nav .nav-link {
  font-family: var(--font-accent);
  font-size: 20.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fd7824;
  padding: 6px 16px !important;
  position: relative;
  transition: var(--transition);
  background: #fff;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

/* .navbar-nav .nav-link:hover { color: var(--white); } */
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.btn-nav-cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 5px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-nav-cta:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 25px var(--orange-glow);
  transform: translateY(-1px);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* =============================================
   HERO SLIDER
============================================= */
#heroSlider {
  position: relative;
  height: 70vh;
  min-height: 650px;
  overflow: hidden;

}

.swiper-hero {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

/* Slide backgrounds using gradient placeholders (production: replace with real images) */
.slide-1 .hero-slide-bg {
  background-image:
    linear-gradient(135deg, rgba(11, 31, 58, 0.648) 0%, rgba(11, 31, 58, 0.4) 50%, rgba(11, 31, 58, 0.7) 100%),
    url('img/bnr2.jpg');
  background-size: 100% 100% !important;
  background-position: center !important;
  width: 100% !important;
}

.slide-2 .hero-slide-bg {
  background-image:
    linear-gradient(135deg, rgba(11, 31, 58, 0.436) 0%, rgba(11, 31, 58, 0.35) 60%, rgba(11, 31, 58, 0.75) 100%),
    url('img/bnr1.jpg');
  background-size: 100% 100% !important;
  background-position: center !important;
  width: 100% !important;
}

.slide-3 .hero-slide-bg {
  background-image:
    linear-gradient(135deg, rgba(11, 31, 58, 0.446) 0%, rgba(11, 31, 58, 0.4) 50%, rgba(11, 31, 58, 0.72) 100%),
    url('img/bnr3.jpg');
  background-size: cover !important;
  background-position: center !important;
  width: 100% !important;
}

/* Orange glow orb */
.hero-slide::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-label {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.3s;
}

.hero-label::before {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--orange);
}

.swiper-slide-active .hero-label {
  opacity: 1;
  transform: translateY(0);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 66px);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.5s;
}

.hero-headline em {
  font-style: normal;
  color: var(--orange);
}

.swiper-slide-active .hero-headline {
  opacity: 1;
  transform: translateY(0);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.7s;
}

.swiper-slide-active .hero-sub {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.9s;
}

.swiper-slide-active .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.btn-hero-primary {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 34px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 122, 0, 0.45);
  color: var(--white);
}

.btn-hero-secondary {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 34px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 122, 0, 0.2);
  padding: 20px 0;
}

.hero-stat-item {
  text-align: center;
  position: relative;
}

.hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-family: var(--font-accent);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
}

/* Swiper customization */
.swiper-button-next,
.swiper-button-prev {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  top: 45%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  color: white;
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.swiper-pagination {
  bottom: 110px !important;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--orange);
  width: 28px;
  border-radius: 4px;
}

/* =============================================
   SECTION COMMONS
============================================= */
.section-label {
  font-family: var(--font-accent);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1.5px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--royal-blue);
}

.section-title.light {
  color: var(--white);
}

.section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted-dark);
  line-height: 1.75;
}

.section-sub.light {
  color: rgba(255, 255, 255, 0.65);
}

/* Orange accent line */
.orange-line {
  width: 56px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-top: 16px;
}

/* =============================================
   ABOUT SECTION
============================================= */
#about {
  padding: 110px 0;
  background: var(--soft-gray);
  overflow: hidden;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  /* box-shadow: var(--shadow-luxury); */
}

.about-image-wrap img {
  width: 100%;
  /* height: 560px; */
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image-wrap:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: 28px;
  right: -18px;
  background: var(--orange);
  color: white;
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(255, 122, 0, 0.4);
  text-align: center;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-badge-text {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content {
  padding-left: 20px;
}



.counter-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.counter-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
}

.counter-card:hover::before {
  transform: scaleX(1);
}

.counter-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--royal-blue);
  letter-spacing: -0.03em;
  line-height: 1;
}

.counter-num span {
  color: var(--orange);
}

.counter-label {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-top: 6px;
}

.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--royal-blue);
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* =============================================
   FEATURED PROJECTS
============================================= */
#projects {
  padding: 110px 0;
  background: var(--royal-blue);
  position: relative;
  overflow: hidden;
}

#projects::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

#projects::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* .project-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transition: var(--transition);
  cursor: pointer;
  height: 420px;
} */

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-card-img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.97) 0%, rgba(11, 31, 58, 0.5) 45%, transparent 70%);
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(11, 31, 58, 0.98) 0%, rgba(11, 31, 58, 0.65) 50%, rgba(11, 31, 58, 0.2) 80%);
}

.project-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
}

.project-status {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.status-launching {
  background: rgba(255, 122, 0, 0.2);
  color: var(--orange);
  border: 1px solid rgba(255, 122, 0, 0.4);
}

.status-selling {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-upcoming {
  background: rgba(99, 102, 241, 0.15);
  color: #A5B4FC;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.project-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.2;
}

.project-location {
  font-family: var(--font-accent);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-location i {
  color: var(--orange);
  font-size: 12px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.project-card:hover .project-link {
  opacity: 1;
  transform: translateY(0);
}

/* Orange glow border on hover */
/* .project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-lg);
  border: 1.5px solid transparent;
  transition: var(--transition);
  pointer-events: none;
} */

.project-card:hover::after {
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: inset 0 0 30px rgba(255, 122, 0, 0.04);
}

/* Section header filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

/* =============================================
   ARCHITECTURE SHOWCASE
============================================= */
#architecture {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.arch-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-luxury);
  transition: transform 0.7s ease;
}

.arch-hero-img:hover {
  transform: scale(1.02);
}

.arch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 520px;
}

.arch-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.6s ease;
}

.arch-grid-img:hover {
  transform: scale(1.04);
}

.arch-feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--gray-100);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.arch-feature-item {
  padding: 36px 28px;
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.arch-feature-item:last-child {
  border-right: none;
}

.arch-feature-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.arch-feature-item:hover {
  background: var(--soft-gray);
}

.arch-feature-item:hover::before {
  transform: scaleX(1);
}

.arch-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 16px;
}

.arch-feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 8px;
}

.arch-feature-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-muted-dark);
  line-height: 1.65;
}

/* =============================================
   CONTACT SECTION
============================================= */
#contact {
  padding: 110px 0;
  background: var(--soft-gray);
  overflow: hidden;
}

.contact-info-panel {
  background: var(--royal-blue);
  border-radius: var(--border-radius-xl);
  padding: 50px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.contact-info-panel::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-detail-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-detail-label {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

/* Contact Form */
.contact-form-panel {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 50px 40px;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 8px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--royal-blue);
  background: var(--soft-gray);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.08);
}

.form-control::placeholder {
  color: rgba(107, 114, 128, 0.6);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 122, 0, 0.4);
}

/* =============================================
   TESTIMONIAL SECTION
============================================= */
#testimonials {
  padding: 110px 0;
  background: var(--soft-gray);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 35px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: 0.4s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-quote {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(255, 122, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 28px;
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted-dark);
  margin-bottom: 30px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-user img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 122, 0, 0.15);
}

.testimonial-user h5 {
  margin: 0;
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--royal-blue);
}

.testimonial-user span {
  font-size: 13px;
  color: var(--text-muted-dark);
  letter-spacing: 0.03em;
}




/* =============================================
   FOOTER
============================================= */
#footer {
  background: #19529f;
  ;
  border-top: 1px solid rgba(255, 122, 0, 0.25);
  padding: 70px 0 0;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo .brand-icon {
  background: var(--orange);
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 16px;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 18px;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  font-size: 13.5px;
  color: white;
  outline: none;
  transition: var(--transition);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter input:focus {
  border-color: var(--orange);
}

.footer-newsletter button {
  padding: 12px 20px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter button:hover {
  background: var(--orange-light);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-family: var(--font-accent);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-copyright span {
  color: var(--orange);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-family: var(--font-accent);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* =============================================
   UTILITY / ANIMATIONS
============================================= */

/* Floating glow background elements */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* Orange separator line */
.orange-sep {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.orange-sep::before,
.orange-sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-100);
}

.orange-sep-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 90px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, white);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

.scroll-text {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  writing-mode: vertical-lr;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 992px) {
  #topbar .topbar-left {
    gap: 12px;
  }

  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .about-counters {
    grid-template-columns: repeat(3, 1fr);
  }

  .arch-feature-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .arch-feature-item {
    border-bottom: 1px solid var(--gray-100);
  }

  .arch-feature-item:nth-child(2n) {
    border-right: none;
  }

  .contact-info-panel,
  .contact-form-panel {
    height: auto;
  }

  .contact-info-panel {
    margin-bottom: 24px;
  }

  .arch-grid {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 38px;
  }

  .about-counters {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .counter-num {
    font-size: 26px;
  }

  .about-badge {
    right: 10px;
  }

  .arch-feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  #topbar .topbar-item:not(:first-child) {
    display: none;
  }

  .topbar-divider {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stat-item:nth-child(n+3) {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-counters {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    font-size: 11px;
    padding: 12px 20px;
  }

  .arch-feature-row {
    grid-template-columns: 1fr;
  }

  .arch-feature-item {
    border-right: none;
  }

  .contact-form-panel,
  .contact-info-panel {
    padding: 30px 24px;
  }

  .arch-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .arch-grid-img {
    height: 220px;
  }

  .project-card {
    height: 340px;
  }

  #mainNav .navbar-brand {
    width: 48%;
  }
}



.footer-contact-item {
  gap: 15px;
}

.footer-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}

.footer-contact-label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.footer-contact-text {
  color: #fff;
  text-decoration: none;
  line-height: 1.7;
  font-size: 15px;
  transition: 0.3s;
}

a.footer-contact-text:hover {
  color: var(--orange);
}








/* about page  */


/* :root {
      --royal-blue: #19529f;
      --royal-blue-light: #122848;
      --royal-blue-mid: #0D2444;
      --orange: #FF7A00;
      --orange-light: #FF9A30;
      --orange-glow: rgba(255, 122, 0, 0.3);
      --white: #FFFFFF;
      --soft-gray: #F5F7FA;
      --gray-100: #E8EDF5;
      --text-muted-light: rgba(255,255,255,0.65);
      --text-muted-dark: #6B7280;
      --font-display: 'Montserrat', sans-serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
      --font-accent: 'Outfit', sans-serif;
      --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --shadow-luxury: 0 20px 60px rgba(11,31,58,0.18);
      --shadow-card: 0 8px 40px rgba(11,31,58,0.12);
      --border-radius-lg: 16px;
      --border-radius-xl: 24px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: var(--font-body);
      background: var(--soft-gray);
      color: #1a1a2e;
      overflow-x: hidden;
    } */





/* HERO SECTION     */

.hero-about {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #19529f91 0%, #0a0c4a52 50%, #07348394 100%), url(./img/about_page_banner.jpg);
  background-size: 100% 100%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-contact {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #19529f91 0%, #0a0c4a52 50%, #07348394 100%), url(./img/contact.jpg);
  background-size: 100% 100%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-project {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #19529f91 0%, #0a0c4a52 50%, #07348394 100%), url(./img/real-estate.webp);
  background-size: 100% 100%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

h1.hero-about-heading.fade-up.visible {
  color: #ffffff !important;
  font-size: 88px !important;
  text-transform: uppercase !important;
  font-weight: 900;
}

p.hero-about-sub.fade-up.fade-up-delay-1.visible {
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
}













/* ── ABOUT SECTION ─────────────────────────────────────── */
.about-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f8 50%, #f0f4fb 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Floating decorative blobs */
.about-section::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(25, 82, 159, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── IMAGE COLUMN ─────────────────────────────────────── */
.image-wrapper {
  position: relative;
  height: 100%;
  min-height: 640px;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.building-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-wrapper:hover .building-img {
  transform: scale(1.04);
}

/* Gradient overlays on image */
.img-overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 36, 68, 0.30) 0%, transparent 40%, rgba(13, 36, 68, 0.55) 100%);
  pointer-events: none;
}

/* Floating badge on image */
.img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--border-radius-lg);
  padding: 18px 24px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.img-badge-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--orange-glow);
}

.img-badge-text {
  line-height: 1.3;
}

.img-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}

.img-badge-text span {
  font-size: 0.75rem;
  font-family: var(--font-accent);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Year tag top-right */
.img-year-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Vertical accent bar */
.img-accent-bar {
  position: absolute;
  top: 60px;
  left: 0;
  width: 5px;
  height: 120px;
  background: linear-gradient(180deg, var(--orange), var(--orange-light));
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 18px var(--orange-glow);
}

/* ── CONTENT COLUMN ───────────────────────────────────── */
.content-col {
  padding-left: 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  box-shadow: 0 0 8px var(--orange-glow);
}

.main-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  line-height: 1.18;
  color: var(--royal-blue-mid);
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.main-heading .accent-word {
  color: var(--orange);
  position: relative;
}

.main-heading .accent-word::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  opacity: 0.4;
}

.divider-thin {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  margin-bottom: 28px;
  box-shadow: 0 0 10px var(--orange-glow);
}

.desc-text {
  font-family: var(--font-body);
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--text-muted-dark);
  margin-bottom: 18px;
}

/* ── FEATURES GRID ────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--royal-blue-mid);
  padding: 6px 0;
  transition: var(--transition);
}

.feature-item:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.feature-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 3px 10px var(--orange-glow);
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 5px 16px var(--orange-glow);
}

/* Tagline strip */
.tagline-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--royal-blue-mid), var(--royal-blue));
  border-radius: var(--border-radius-lg);
  padding: 16px 28px;
  margin-top: 8px;
  box-shadow: var(--shadow-card);
}

.tagline-strip i {
  color: var(--orange);
  font-size: 1.1rem;
}

.tagline-strip span {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  font-style: italic;
}

/* ── CARDS ROW ────────────────────────────────────────── */
.cards-section {
  background: linear-gradient(135deg, var(--royal-blue-mid) 0%, var(--royal-blue) 60%, #1a5fb0 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cards-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cards-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(25, 82, 159, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

/* Decorative grid pattern */
.cards-section .grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.glass-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--border-radius-xl);
  padding: 44px 38px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), transparent);
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 40px rgba(255, 122, 0, 0.12);
  border-color: rgba(255, 122, 0, 0.25);
}

.card-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: 0 6px 20px var(--orange-glow);
  transition: var(--transition);
}

.glass-card:hover .card-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px var(--orange-glow);
}

.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.card-body-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted-light);
}

/* Decorative large letter */
.card-bg-letter {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── COUNTER SECTION ──────────────────────────────────── */
.counter-section {
  background: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--royal-blue-mid), var(--royal-blue), var(--orange), var(--orange-light));
}

.counter-section-inner {
  background: linear-gradient(135deg, var(--royal-blue-mid) 0%, #0f3166 50%, var(--royal-blue) 100%);
  border-radius: var(--border-radius-xl);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.counter-section-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); */
  background-size: 48px 48px;
  pointer-events: none;
}

.counter-glow-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.counter-label-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 14px;
}

.counter-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 52px;
}

.counter-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.counter-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.counter-item:last-child::after {
  display: none;
}

.counter-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 30%, var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.counter-suffix {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--orange-light);
  -webkit-text-fill-color: var(--orange-light);
}

.counter-desc {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted-light);
}

.counter-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--orange-light);
  margin: 0 auto 16px;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 991.98px) {
  .content-col {
    margin-top: 48px;
  }

  .image-wrapper {
    min-height: 460px;
  }

  .counter-section-inner {
    padding: 50px 30px;
  }

  .counter-item::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .about-section {
    padding: 70px 0 50px;
  }

  .cards-section {
    padding: 60px 0;
  }

  .glass-card {
    padding: 32px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .counter-section-inner {
    padding: 40px 20px;
  }

  .main-heading {
    font-size: 1.75rem;
  }

  h1.hero-about-heading.fade-up.visible {
    color: #f07e01 !important;
    font-size: 30px !important;
    text-transform: uppercase !important;
  }
}

/* ── ENTRANCE ANIMATIONS ──────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

/* ── MISC ─────────────────────────────────────────────── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.5), transparent);
  max-width: 60px;
}

.cards-section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.cards-section-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted-light);
  margin-bottom: 48px;
}






/* index new project work */
/* *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fafafa;
    color:#222;
} */

.project-section {
  width: 100%;
  padding: 100px 6%;
}

.project-wrapper {
  max-width: 1300px;
  margin: 80px auto;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 50px;
  /* background: #fff; */
  border-radius: 20px;
  /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06); */
  transition: .4s ease;
}

.project-wrapper:hover {
  transform: translateY(-5px);
}

.project-image {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.project-image img {
  width: 100%;
  /* height:550px; */
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.project-wrapper:hover .project-image img {
  transform: scale(1.08);
}

.project-content {
  flex: 1.1;
  position: relative;
}

.project-content::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  width: 3px;
  height: 120px;
  background: #f07e01;
}

.project-content h1 {
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #111;
}

.subtitle {
  font-size: 24px;
  line-height: 1.5;
  color: #444;
  font-weight: 300;
  margin-bottom: 25px;
}

.description {
  font-size: 16px;
  line-height: 2;
  color: #666;
  max-width: 650px;
}

.btn {
  margin-top: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 55px;
  text-decoration: none;
  color: #111;
  border: 1px solid #c8a96b;
  background: transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  transition: .4s;
}

.btn:hover {
  background: #c8a96b;
  color: #fff;
}

@media(max-width:992px) {

  .project-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 30px;
  }

  .project-content::before {
    display: none;
  }

  .project-image img {
    height:auto !important;
  }

  .project-content h1 {
    font-size: 38px;
  }

  .subtitle {
    font-size: 20px;
  }

  .description {
    font-size: 15px;
  }
}

h2.showcase-title {
  color: #f07f04;
  font-size: 51px;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 3%;
}


.project-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 100px 0;
}

.project-wrapper:nth-of-type(even) {
  flex-direction: row-reverse;
}

.project-image,
.project-content {
  flex: 1;
}

.project-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

@media(max-width:768px) {

  .project-wrapper,
  .project-wrapper:nth-of-type(even) {
    flex-direction: column;
  }
}








/* =========================
   Mobile Responsive (550px)
========================= */
/* @media (max-width: 550px) {

  #heroSlider {
    height: 100vh;
    overflow: hidden;
  }

  .hero-slide {
    min-height: 100vh;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }

  .hero-label {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }

  .hero-headline {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero-headline em {
    display: inline-block;
  }

  .hero-content .col-lg-8 {
    width: 100%;
    max-width: 100%;
  }

  /* Navigation Arrows 
  .swiper-button-prev,
  .swiper-button-next {
    width: 38px;
    height: 38px;
    transform: scale(0.8);
  }

  .swiper-button-prev {
    left: 10px;
  }

  .swiper-button-next {
    right: 10px;
  }

  /* Pagination 
  .swiper-pagination {
    bottom: 20px !important;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  /* Scroll Indicator Hide
  .scroll-indicator {
    display: none;
  }

  Stats Bar 
  .hero-stats-bar {
    padding: 15px 0;
  }

  .hero-stat-num {
    font-size: 18px;
  }

  .hero-stat-label {
    font-size: 10px;
    line-height: 1.3;
  }
  .swiper-hero {
  width: 100%;
  height: 100%;
}
} */
@media (max-width: 550px) {
  .hero-slide {
    position: relative;
    width: 100%;
    height: 41%;
    overflow: hidden;
  }

  .hero-headline {
    font-size: 25px;
  }

  h2.showcase-title {
    font-size: 21px !important;
  }
}



@media (max-width: 550px) {
  #heroSlider {
    /* height: 68vh !important; */
    min-height: 337px;
  }
}

.swiper-hero,
.swiper-slide,
.hero-slide {
  height: 100%;
}

.hero-content {
  text-align: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 2px;
  justify-content: center;
  margin-bottom: 15px;
}

.hero-label::before {
  width: 20px;
}

.hero-headline {
  font-size: 34px !important;
  line-height: 1.15;
  margin-bottom: 15px;
}

.hero-headline br {
  display: none;
}

.hero-slide::before {
  width: 220px;
  height: 220px;
  bottom: -50px;
  left: -20px;
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

.swiper-pagination {
  bottom: 25px !important;
}

.scroll-indicator {
  display: none;
}

.slide-1 .hero-slide-bg,
.slide-2 .hero-slide-bg,
.slide-3 .hero-slide-bg {
  background-size: cover !important;
  background-position: center center !important;
}

.hero-content .container {
  padding-left: 15px;
  padding-right: 15px;
}

.hero-content .row {
  justify-content: center;
}

.hero-content .col-lg-8 {
  width: 100%;
  max-width: 100%;
}

@media (max-width:550px) {

  .slide-1 .hero-slide-bg {
    background-image:
      linear-gradient(135deg, rgba(11, 31, 58, .75), rgba(11, 31, 58, .45)),
      url('img/bnr2.jpg');
  }

  .slide-2 .hero-slide-bg {
    background-position: 65% center !important;
  }

  .slide-3 .hero-slide-bg {
  width: 100% !important;
  }
}

.active {
  text-decoration: underline #f07e01 2px;
  color: #f07e01 !important;
}

/* =============================================
   ONGOING & UPCOMING PROJECT INFO FOOTER STRIP
============================================= */
.project-info-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eef2f6;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.4;
}

.project-type-badge {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  line-height: 1.2;
}

.project-type-badge.type-commercial {
  background: rgba(25, 82, 159, 0.08);
  color: #19529f;
  border: 1px solid rgba(25, 82, 159, 0.2);
}

.project-type-badge.type-residential {
  background: rgba(255, 122, 0, 0.1);
  color: #FF7A00;
  border: 1px solid rgba(255, 122, 0, 0.25);
}

.project-info-spec {
  color: #4a5568;
  font-weight: 600;
  font-size: 13px;
}

.project-info-sep {
  color: #cbd5e1;
  font-weight: 400;
  font-size: 13px;
  user-select: none;
}