* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================================
   ROOT COLORS (BRAND SYSTEM)
======================================== */
:root {
  /* BRAND COLORS */
  --primary-color: #f59e0b; /* ðŸ”¥ logo orange */
  --primary-dark: #d97706; /* darker orange */
  --primary-light: #fbbf24; /* light orange */

  /* DARK SYSTEM */
  --dark: #0b1220; /* deep navy (better than #111) */
  --dark-2: #020617; /* footer / overlay */

  /* TEXT */
  --text: #475569; /* soft gray (better readability) */
  --text-light: #94a3b8;

  /* BACKGROUNDS */
  --light: #ffffff;
  --bg: #f8fafc; /* softer than #f5f5f5 */

  /* UI */
  --border: #e5e7eb;

  /* SPACING */
  --gap-sm: 0.8rem;
  --gap-md: 1.6rem;
  --gap-lg: 2.4rem;

  /* EFFECTS */
  --transition: 0.3s ease;
  --shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.08);
}

html {
  font-size: 62.5%;
}
img {
  object-fit: cover;
  width: 100%;
}
a {
  text-decoration: none;
  color: var(--dark);
}
body {
  font-size: 1.8rem;
  /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
  /* font-family:
    ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji"; */
  font-family: sans-serif;
}
ul {
  text-align: start;
}
p {
  font-weight: 400;
}
section.bg {
  background-color: var(--bg);
}

.main_title {
  font-size: 3.4rem;
  font-weight: 600;
}
.main_title:not(.light) {
  color: var(--dark);
}
.main_title.light {
  color: var(--light);
}
.main_title:not(.t2):not(.inset) {
  margin-bottom: 4rem;
}
.main_title:not(.t2) {
  text-align: center;
}
.main_title:not(.inset).t2 {
  margin-bottom: 1.2rem;
}

section .image_frame,
section .image_frame img {
  height: 100%;
}

/* ========================================
   HEADER (COLOR ENHANCED)
======================================== */
.header {
  background: var(--light);
  border-bottom: 0.1rem solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
}

/* LOGO */
.header__logo img {
  width: 9rem;
}

/* NAV */
.header__nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* LINK */
.header__link {
  font-size: 1.4rem;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

/* underline animation (BRAND COLOR) */
.header__link::after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 0%;
  height: 0.2rem;
  background: var(--primary-color);
  transition: var(--transition);
}

.header__link:hover {
  color: var(--primary-color);
}

.header__link:hover::after {
  width: 100%;
}

/* ========================================
   DROPDOWN
======================================== */
.header__dropdown {
  position: relative;
}

.header__dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header__dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: var(--light);
  border: 0.1rem solid var(--border);
  padding: 1rem 0;
  min-width: 16rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.header__dropdown-menu.menu_width01 {
  min-width: 23rem;
  left: -3rem;
}

.header__dropdown-menu a {
  display: block;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.header__dropdown-menu a:hover {
  background: var(--bg);
  color: var(--primary-color); /* ðŸ”¥ highlight */
}

/* show dropdown */
.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ========================================
   MOBILE TOGGLE
======================================== */
.header__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.5rem;
}

.header__toggle span {
  width: 2.5rem;
  height: 0.2rem;
  background: var(--dark);
  transition: var(--transition);
}

/* hover animation */
.header__toggle:hover span {
  background: var(--primary-color);
}
.no-scroll {
  overflow: hidden;
}
/* ========================================
   BUTTON GROUP
======================================== */
.btn_grp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-lg);
}

/* BASE BUTTON */
.button {
  padding: 1.2rem 2.2rem;
  font-size: 1.4rem;
  border: 0.1rem solid #ffffff;
  background: #fff;
  color: #000000;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

/* PRIMARY BUTTON */
.button.primary {
  background: var(--primary-color);
  color: var(--light);
}

/* HOVER */
.button:hover {
  background: var(--primary-color);
  color: var(--light);
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow);
}

.button.primary:hover {
  background: transparent;
  color: var(--primary-color);
}

/* ========================================
   SECTION SPACING
======================================== */
section:not(:first-of-type) {
  padding: 8rem 0;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  height: 90vh;
  /* min-height: 60rem; */
  height: fit-content;
  overflow: hidden;
}

/* HERO IMAGE */
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY (GRADIENT FIXED) */
.hero_info {
  position: absolute;
  inset: 0;
  display: flex;
  bottom: 0.8rem;
  align-items: center;
  background: linear-gradient(135deg, rgb(2 6 23 / 35%), rgb(2 6 23 / 35%));
  display: flex;
  justify-content: center;
  align-items: center;
}
.hi_inner {
  max-width: 99.1rem;
  margin-inline: auto;
  top: 2.4rem;
  position: relative;
}
/* CONTENT */
.hero_info > div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--light);
}

/* TITLE */
.hero_info h1 {
  font-size: 5.1rem;
  font-weight: 900;
  margin-bottom: 2.4rem;
}

/* TEXT */
.hero_info p {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--light);
}

/* ========================================
   EXTRA PREMIUM EFFECT
======================================== */

/* subtle center glow */
.hero::after {
  content: "";
  position: absolute;
  width: 50rem;
  height: 50rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ========================================
   INTRO SECTION (BRAND FIXED)
======================================== */
.intro__card {
  position: relative;
  /* text-align: center; */
  transition: var(--transition);
  height: 100%;
}

.intro__card ul {
  font-size: 1.4rem;
}

.intro__text {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.intro__card:hover::before {
  width: 100%;
}

.intro__card:hover .intro__icon {
  transform: rotate(5deg) scale(1.05);
}

.project_view p {
  font-size: 1.7rem;
  text-align: center;
  font-weight: 600;
}

.project_list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.7rem;
  display: flex;
  justify-content: start;
  gap: 0.8rem;
  flex-direction: column;
  /*margin-bottom: 1.6rem;*/
}
.project_list li {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1.2rem;
}

.project_list .icon {
  --size: 3.6rem;
  font-size: 1.6rem;
  min-width: var(--size);
  min-height: var(--size);
  height: var(--size);
  background-color: var(--primary-dark);
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-radius: var(--size); */
}

.project_list .text {
  font-size: 1.6rem;
}

.intro .frame img {
  height: 35.4rem;
}

/*.intro.residential .frame img {*/
/*  height: 40rem;*/
/*}*/

/* ========================================
   STATS SECTION (FIXED + PREMIUM)
======================================== */

.stats {
  position: relative;
  padding: 11rem 0;
  background: url("../images/bg02.jpg") center / cover no-repeat;
  background-attachment: fixed !important;
  overflow: hidden;
}

/* DARK GRADIENT OVERLAY */
.stat__overlay {
  position: absolute;
  pointer-events: none;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 6, 23, 0.85),
    rgba(2, 6, 23, 0.6)
  );
}

/* CARD */
.stats__card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--light);
  border: 0.1rem solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

/* TOP LINE */
.stats__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0.2rem;
  width: 0%;
  background: var(--primary-color); /* ðŸ”¥ */
  transition: var(--transition);
}

/* ICON */
.stats__icon {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1.5rem;
  background: rgba(245, 158, 11, 0.1); /* ðŸ”¥ */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
}

/* COUNT */
.stats__count {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

/* LABEL */
.stats__label {
  font-size: 1.4rem;
  color: var(--text);
}

/* HOVER */
.stats__card:hover {
  transform: translateY(-0.6rem);
  box-shadow: var(--shadow);
}

.stats__card:hover::before {
  width: 100%;
}

/* ========================================
   WHY US SECTION
======================================== */

/* HEADER */
.why__head {
  text-align: center;
  margin-bottom: 4rem;
}

.why__subtitle {
  font-size: 1.6rem;
  color: var(--text);
  max-width: 60rem;
  margin: 1rem auto 0;
}

/* CARD */
.why__card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.2rem 2rem;
  background: var(--light);
  border: 0.1rem solid var(--border);
  /* border-radius: 1.0rem; */
  transition: var(--transition);
  height: 100%;
  position: relative;
}

/* ICON */
.why__icon {
  min-width: 4.2rem;
  height: 4.2rem;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: .6rem; */
  font-size: 1.4rem;
}

/* TEXT */
.why__text {
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1.7;
  text-align: start;
}

/* HOVER */
.why__card:hover {
  transform: translateY(-0.6rem);
  box-shadow: var(--shadow);
}

.why__card:hover::before {
  width: 100%;
}

/* ========================================
   TESTIMONIALS (UNIQUE STYLE)
======================================== */
.testimonials {
  background: var(--bg);
}

.testimonials__head {
  text-align: center;
}

.testimonials__subtitle {
  font-size: 1.5rem;
  color: var(--text);
  margin-top: 1rem;
}

/* CARD */
.testimonial__card {
  background: var(--light);
  border: 0.1rem solid var(--border);
  padding: 3rem 2.5rem;
  /* border-radius: 1.2rem; */
  position: relative;
  transition: var(--transition);
  height: 100%;
  min-height: 30rem;
}

/* QUOTE ICON */
.testimonial__quote {
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* TEXT */
.testimonial__text {
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* STARS */
.testimonial__rating {
  font-size: 1.6rem;
  color: #fbbf24;
  margin-bottom: 1.5rem;
}

/* USER */
.testimonial__user h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial__user span {
  font-size: 1.3rem;
  color: var(--text-light);
}

/* HOVER */
.testimonial__card:hover {
  /* transform: translateY(-.6rem); */
  /* box-shadow: var(--shadow); */
}

/* DOTS */
.testimonials__slider .owl-dot span {
  width: 1rem;
  height: 1rem;
  background: #ccc;
  margin: 0.5rem;
  display: inline-block;
  border-radius: 50%;
}

.testimonials__slider .owl-dot.active span {
  background: var(--primary-color);
}

.owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ========================================
  PROPERTIES SECTION TABS
======================================== */
.properties__tabs {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  border: none;
}

.properties__tabs .nav-link {
  padding: 0.8rem 1.8rem;
  font-size: 1.4rem;
  border: 0.1rem solid var(--border);
  color: var(--dark);
  font-weight: 600;
  background: var(--light);
  transition: var(--transition);
  text-transform: uppercase;
}

/* ACTIVE */
.properties__tabs .nav-link.active {
  background: var(--primary-color);
  color: var(--light);
  border-color: var(--primary-color);
}

/* HOVER */
.properties__tabs .nav-link:hover {
  background: var(--primary-color);
  color: var(--dark-2);
  border-color: var(--primary-color);
}

/* ========================================
   CARD
======================================== */
.property__card {
  background: var(--light);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  cursor: pointer;
}

/* IMAGE */
.property__image {
  position: relative;
  top: 0;
}

.overlay_with_effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  scale: 0.8;
  display: flex;
  color: var(--light);
  font-size: 2.4rem;
  justify-content: center;
  align-items: center;
  z-index: 99;
}
.property__card:hover .overlay_with_effect {
  opacity: 1;
  scale: 1;
  visibility: visible;
}

.property__image img {
  width: 100%;
  height: fit-content;
  object-fit: cover;
  z-index: -1;
}

/* TAGS */
.property__tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  color: var(--dark-2);
  padding: 0.6rem 1.2rem;
  font-size: 1.3rem;
}

.property__price {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(2, 6, 23, 0.85);
  color: var(--light);
  padding: 0.6rem 1.2rem;
  font-size: 1.3rem;
}

/* CONTENT */
.property__body {
  padding: 1.8rem 1.5rem;
  text-align: center;
}

/* RATING */
.property__rating {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  margin-bottom: 1.8rem;
}

.property__stars {
  color: #f59e0b;
}

/* TITLE */
.property__name {
  font-size: 1.7rem;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

/* LOCATION */
.property__location {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 2rem;
}

/* BUTTON */
.property__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-size: 1.3rem;
  background: var(--primary-color);
  color: var(--light);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

/* BUTTON HOVER */
.property__btn:hover {
  background: var(--primary-dark);
  transform: translateY(-0.2rem);
}

/* HOVER EFFECT */
.property__card:hover {
  transform: translateY(-0.6rem);
  box-shadow: var(--shadow);
}

/* TAB CONTENT */
.properties__content {
  margin-top: 3rem;
}

/* ========================================
   CTA SECTION (PREMIUM IMAGE)
======================================== */
.cta {
  position: relative;
  padding: 11rem 0;
  background: url("../images/bg01.jpg") center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* DARK GRADIENT OVERLAY */
.cta__overlay {
  position: absolute;
  pointer-events: none;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 6, 23, 0.5),
    rgba(2, 6, 23, 0.548)
  );
}

/* CONTENT */
.cta__content {
  position: relative;
  text-align: center;
  max-width: 70rem;
  margin: 0 auto;
  color: var(--light);
}

/* TEXT */
.cta__text {
  font-size: 1.6rem;
  color: var(--light);
  margin-bottom: 2.5rem;
}

/* BUTTON */
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.6rem;
  background: var(--primary-color);
  color: var(--light);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

/* BUTTON HOVER */
.cta__btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: var(--shadow);
  background: var(--primary-light);
}

/* ========================================
   EXTRA PREMIUM EFFECT (OPTIONAL)
======================================== */

/* subtle glow center */
.cta::after {
  content: "";
  position: absolute;
  width: 50rem;
  height: 50rem;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.15),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ========================================
   FOOTER (ROOT COLOR SYSTEM)
======================================== */
.footer_section {
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  color: var(--text-light);
  padding: 7.5rem 0 2rem;
  font-family: "Poppins", sans-serif;
}

.footer_logo {
  width: 10.5rem;
  margin-bottom: 2rem;
}

/* ================= ABOUT ================= */
.mini_about p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ================= TITLES ================= */
.link_title {
  font-weight: 600;
  color: var(--light);
  margin-bottom: 1.8rem;
  position: relative;
}

/* ACCENT UNDERLINE */
.link_title::after {
  content: "";
  width: 3rem;
  height: 0.2rem;
  background: var(--primary-color);
  display: block;
  margin-top: 0.8rem;
}

/* ================= LINKS ================= */
.url_list a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  text-decoration: none;
  font-size: 1.4rem;
  transition: var(--transition);
}

/* ICON COLOR */
.url_list a i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* hover */
.url_list a:hover {
  color: var(--light);
  transform: translateX(0.6rem);
}

/* ================= CONTACT ================= */
.contact_child {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

/* ICON BG */
.icon_frame {
  min-width: 3.8rem;
  height: 3.8rem;
  background: rgba(245, 158, 11, 0.15); /* fallback if no var */
  background: color-mix(in srgb, var(--primary-color) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 50%; */
  margin-right: 1.2rem;
  color: var(--primary-color);
  font-size: 1.4rem;
  transition: var(--transition);
}

/* TEXT */
.info_frame {
  font-size: 1.4rem;
  color: var(--text-light);
}

/* hover effect */
.contact_child:hover .icon_frame {
  background: var(--primary-color);
  color: var(--light);
  transform: scale(1.08);
}

.contact_child:hover .info_frame {
  color: var(--light);
}

/* ================= BOTTOM ================= */
.footer_bottom {
    border-top: 0.1rem solid rgba(148, 163, 184, 0.15);
    margin-top: 2.5rem;
    padding-top: 1.8rem;
    text-align: center;
}

.footer_bottom .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.policy_links_outer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}
.policy_links_outer a{
    color: var(--text-light);
}
.policy_links_outer a:hover{
    color:var(--light);
    text-decoration: underline;
}
.policy_links_outer span{
    color:var(--light);
}
.footer_bottom p {
  font-size: 1.3rem;
  color: var(--text-light);
}
/* ========================================
   ABOUT SECTION
======================================== */
.about {
  padding: 8rem 0;
}

.about__frame {
  position: relative;
}

.about__frame img {
  width: 100%;
  height: 30.5rem;
  object-fit: cover;
  /* box-shadow: var(--shadow); */
}

.about__title {
  margin-bottom: 2rem;
}

.about__text {
    font-size:1.6rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
  letter-spacing: 0.3px;
}

.about__text:last-of-type {
  margin-bottom: 0;
}

/* ========================================
   CORE VALUES
======================================== */

.values__head-title {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.values__head-text {
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.8;
  max-width: 52rem;
}

.values__image img {
  width: 100%;
  max-height: 32rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

/* GRID */
.values__row {
  margin-top: 6rem;
}

/* CARD */
.values__card {
  padding: 3rem 2rem;
  height: 100%;
  border-left: 0.1rem solid var(--border); /* ðŸ”¥ fixed */
  transition: var(--transition);
  position: relative;
}

/* TOP ACCENT LINE */
.values__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 0.2rem;
  background: var(--primary-color);
  transition: var(--transition);
}

.values__row .col-md-3:first-child .values__card {
  border-left: none;
}

.values__card:hover {
  transform: translateY(-0.5rem);
}

.values__card:hover::before {
  width: 100%;
}

/* MINI TITLE */
.values__mini {
  font-size: 1.3rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 1.8rem;
}

.values__mini::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 0.1rem;
  background: var(--primary-color); /* ðŸ”¥ accent */
  opacity: 0.5;
  margin-top: 0.8rem;
}

/* TEXT */
.values__card h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.values__card p {
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1.6;
}

/* ================================
   CONTACT SECTION
================================ */
.contact {
  padding: 9rem 0;
  background: var(--bg);
}

/* TITLE */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}
/* FORM */
.contact__group input,
.contact__group textarea {
  width: 100%;
  padding: 1.4rem;
  border: 0.1rem solid var(--border);
  font-size: 1.4rem;
  background: var(--light);
  transition: var(--transition);
}

/* FOCUS */
.contact__group input:focus,
.contact__group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.15);
  outline: none;
}

/* ROW */
.contact__row {
  display: flex;
  gap: 1.5rem;
}

.contact__row .contact__group {
  flex: 1;
}

/* BUTTON */
.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.8rem;
  background: var(--primary-color);
  color: var(--light);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: fit-content;
}

.contact__btn:hover {
  background: var(--primary-dark);
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow);
}

/* CARD */
.contact__card {
  background: var(--light);
  padding: 3rem;
  border: 0.1rem solid var(--border);
  transition: var(--transition);
}

.contact__card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow);
}

/* ITEM */
.contact__item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* ICON */
.contact__icon {
  width: 4.5rem;
  height: 4.5rem;
  min-width: 4.5rem;
  min-height: 4.5rem;
  background: color-mix(in srgb, var(--primary-color) 15%, transparent);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact__item:hover .contact__icon {
  background: var(--primary-color);
  color: var(--light);
}

/* TEXT */
.contact__item h4 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.contact__item p {
  font-size: 1.4rem;
  color: var(--text);
}

/* SOCIAL */
/*.contact__icons a {*/
/*  display: inline-flex;*/
/*  width: 3.6rem;*/
/*  height: 3.6rem;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  background: var(--bg);*/
/*  color: var(--dark);*/
/*  margin-right: 0.8rem;*/
/*  transition: var(--transition);*/
/*}*/

/*.contact__icons a:hover {*/
/*  background: var(--primary-color);*/
/*  color: var(--light);*/
/*}*/


.contact__icons a {
  display: inline-flex;
  width: 3.6rem;
  height: 3.6rem;
  align-items: center;
  justify-content: center;
  margin-right: 0.8rem;
  color: #fff;
  transition: 0.3s ease;
}

/* Facebook */
.contact__icons a.facebook {
  background: #1877f2;
}

/* Instagram (gradient look 🔥) */
.contact__icons a.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* LinkedIn */
.contact__icons a.linkedin {
  background: #0a66c2;
}

/* Twitter (X) */
.contact__icons a.twitter {
  background: #000000;
}

/* Hover Effect */
.contact__icons a:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 76.8rem) {
  .highlights__list {
    grid-template-columns: 1fr;
  }

  .contact__row {
    flex-direction: column;
  }

  .contact {
    padding: 6rem 0;
  }
}

/* team_leader */

section.team_leader {
  padding: 0;
  margin: 8rem 0;
  position: relative;
  /*background:*/
  /*  linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),*/
  /*  url("../images/bg_image_about.jpg") center / cover no-repeat;*/
    background-color: var(--bg);
}

.team_leader .context {
  /*color: var(--light);*/
  color: var(--dark-2);
  padding: 8rem 0;
}

.team__head-title {
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.team__head-title span {
  color: var(--primary-color);
  font-size: 4.8rem;
}
.team__head-text {
  margin-bottom: 3.2rem;
}
.contect_div {
  padding: 1.6rem 1.8rem;
  background-color: var(--light);
  color: var(--dark);
  display: flex;
  gap: 1.8rem;
}
.contect_div .icon {
  height: 4.5rem;
  width: 4.5rem;
  min-width: 4.5rem;
  min-height: 4.5rem;
  background: color-mix(in srgb, var(--primary-color) 15%, transparent);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.contect_div:first-of-type {
  margin-bottom: 2.4rem;
}

.team__head-name {
  margin-bottom: 1.8rem;
  font-size: 2.2rem;
}
.contect_div p {
  margin-bottom: 0;
}

.team_leader .frame {
  height: 100%;
  display: flex;
  align-items: self-end;
}

/* BANNER */
.banner {
  position: relative;
  padding: 5.6rem 0;
  color: var(--light);
  overflow: hidden;
}

/* DARK OVERLAY */
.banner::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(2, 6, 23, 0.35),
    rgba(2, 6, 23, 0.2)
  );
}

/* GLOW EFFECT */
.banner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 50rem;
  height: 50rem;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.15),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* CONTENT */
.banner .container {
  position: relative;
  text-align: center;
  max-width: 70rem;
  margin: 0 auto;
}

/* TITLE */
.banner h1 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 0rem;
  line-height: 1.2;
}

/* ACCENT UNDERLINE */
.banner h1::after {
  content: "";
  width: 6rem;
  height: 0.3rem;
  background: var(--primary-color);
  display: block;
  margin: 0.2rem auto 0;
}

/* TEXT */
.banner p {
  font-size: 1.6rem;
  color: var(--light);
  margin-top: 0.8rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.project {
  padding: 8rem 0;
}

/* TITLE */
.project__title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2rem;
}

/* ================= SIDEBAR ================= */
.project__aside {
  background: var(--light);
  border: 0.1rem solid var(--border);
  padding: 2.5rem;
  position: sticky;
  top: 10rem;
}

.project__aside-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.project__aside-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.project__link {
  padding: 1.2rem 1.4rem;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: var(--dark);
  border: 0.1rem solid var(--border);
  transition: var(--transition);
  align-items: baseline;
}

.project__link:hover,
.project__link.active {
  background: var(--primary-color);
  color: #fff;
  transform: translateX(0.4rem);
}

/* ================= RIGHT WRAPPER ================= */
.project__wrapper {
  padding: 2.5rem;
  background: var(--light);
  border: 0.1rem solid var(--border);
}

/* ================= HERO ================= */
.project__hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.project__hero img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  transition: 0.4s;
}

.project__hero:hover img {
  transform: scale(1.05);
}

.project__hero-content {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.8rem 2rem;
}

.project__hero-content h3 {
  font-weight: 600;
}

.project__hero-content p {
  font-size: 1.5rem;
}

.project__price {
  color: var(--primary-color);
  font-weight: 600;
}

/* ================= OVERVIEW ================= */
.project__overview {
  margin-bottom: 4rem;
}

.project__card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: #fff;
  transition: var(--transition);
}

.project__card.flex-col {
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

.project__card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
}

.project__icon {
  width: 4rem;
  height: 4rem;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= LOCATION CARDS ================= */
.project__mini-card {
  border: 0.1rem solid var(--border);
  padding: 2.2rem;
  text-align: center;
  transition: var(--transition);
  background: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.project__mini-card .icon {
  width: 4.5rem;
  height: 4.5rem;
  min-width: 4.5rem;
  min-height: 4.5rem;
  background: color-mix(in srgb, var(--primary-color) 15%, transparent);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: .6rem; */
}
.project__mini-card p {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.project__mini-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: var(--shadow);
}

/* ================= BENEFITS ================= */
.project__benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project__benefit {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.4rem;
}

.project__benefit i {
  color: var(--primary-color);
}
.title_23 {
  font-size: 2.4rem;
  font-weight: 600;
}

.fancybox__content img {
  background-color: var(--light);
}

#project_view .frame,
.map {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #efefef;
  padding: 12px;
}
#project_view .map_big .map {
  aspect-ratio: 3/1;
}
#project_view .frame img {
  width: 100%;
  height: 100%;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.project_view .frame img {
  background: var(--light);
}

.card_34 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #efefef;
  height: 100%;
  font-size: 16px;
}

.card_34 .icon {
  font-size: 16px;
}

.carousel.frame{
  height: 100%;
}
.carousel.frame .carousel-inner{
  height: 100%;
}
.carousel.frame .carousel-inner .carousel-item {
  height: 100%;
}
.carousel.frame .carousel-inner .carousel-item img {
  height: 100%;
}
.carousel.frame button {
  background: #11111140;
  width: 10%;
}
.carousel.frame button .carousel-control-prev-icon,
.carousel.frame button .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  filter: brightness(14.5);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (min-width: 1399px) {
  .intro.residential .frame img {
    height: 36.8rem;
  }
}

@media (max-width: 1199px) {
  html {
    font-size: 60%;
  }
  section:not(:first-of-type) {
    padding: 6rem 0;
  }

  .hi_inner {
    max-width: 71rem;
  }

  .hero_info h1 {
    font-size: 4.1rem;
  }

  .project__card {
    padding: 0.8rem 1rem;
    gap: 1rem;
    height: 100%;
    font-size: 1.6rem;
  }

  .project__mini-card p {
    font-size: 1.4rem;
  }
  .project__title {
    font-size: 2rem;
  }
  .team__head-title span {
    font-size: 3.8rem;
  }
  section.team_leader {
    padding: 0;
    margin: 6rem 0;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  body {
    font-size: 1.6rem;
  }
  .main_title {
    font-size: 2.8rem;
  }
  .project__aside {
    padding: 1.2rem;
  }
  .project__wrapper {
    padding: 1.5rem;
  }

  /* about */
  .team__head-title {
    line-height: 1.2;
  }
  .team__head-text {
    margin-bottom: 2.2rem;
  }
  .contect_div:first-of-type {
    margin-bottom: 1.4rem;
  }
  .contect_div {
    padding: 1rem 1.2rem;
    gap: 1rem;
  }
  .project__hero {
    margin-bottom: 2rem;
  }
  .project__mini-card {
    padding: 1.2rem;
  }
  .contact__card {
    padding: 1.6rem;
  }
  .contact__item {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 60%;
  }
  section .container {
    padding-inline: 1.2rem;
  }
  .hero {
    height: 300px;
  }
  .hero_info {
    height: 100%;
  }
  .max-md-col-reverse {
    flex-direction: column-reverse;
  }
  .main_title:not(.t2):not(.inset) {
    margin-bottom: 3rem;
  }
  .hero_info h1 {
    font-size: 3.4rem;
  }
  .cta {
    padding: 7rem 0;
    background-attachment: scroll;
  }

  .cta__text {
    font-size: 1.4rem;
  }
  .button {
    padding: 0.8rem 1.8rem;
    font-size: 1.6rem;
  }

  .intro {
    padding: 6rem 0;
  }

  .values__card {
    border-left: none;
    border-top: 0.1rem solid var(--border); /* ðŸ”¥ fixed */
  }

  .values__row {
    margin-top: 3rem;
  }

  .goal__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .project__hero img {
    height: 22rem;
  }

  .project__hero-content {
    position: static;
    margin-top: 1rem;
  }
  #project_view .frame:not(.h) {
    height: fit-content;
  }
  #project_view .map_big .map {
    aspect-ratio: 1/1;
  }
  .project__title {
    margin-bottom: 1.6rem;
  }

  .banner {
    padding: 4rem 0;
  }

  .banner h1 {
    font-size: 2.4rem;
  }

  .banner p {
    font-size: 1.2rem;
  }

  .about__frame img {
    height: 30rem;
  }
  .stats__card {
    padding: 2.5rem 1.5rem;
  }

  .stats__count {
    font-size: 2.6rem;
  }

  /* HEADER NAV */
  /* NAV */
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 30rem;
    height: 100vh;
    background: var(--light);
    display: flex;
    flex-direction: column;
    padding: 9rem 2.5rem 2.5rem;
    gap: 2rem;

    box-shadow: -2rem 0 4rem rgba(0, 0, 0, 0.12);

    transform: translateX(100%);
    transition: 0.45s cubic-bezier(0.77, 0, 0.18, 1);

    z-index: 1000;
  }

  .header__nav.active {
    transform: translateX(0);
  }

  /* OVERLAY */
  .header__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(0.3rem);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }

  .header__overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* LINKS */
  .header__link {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.2rem 0;
    border-bottom: 0.1rem solid var(--border);
  }

  /* DROPDOWN */
  .header__dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .header__dropdown-toggle i {
    transition: 0.3s;
  }

  .header__dropdown.active .header__dropdown-toggle i {
    transform: rotate(180deg);
  }

  .header__dropdown-menu {
    position: static;
    width: 100%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    border: none;
    height: 0px;
    overflow: hidden;
    transition: 0.35s ease;
    padding: 0 1rem;
    box-shadow: none;
  }

  /*.header__dropdown.active .header__dropdown-menu {*/
  /*  max-height: 30rem;*/
  /*  padding: 1rem;*/
  /*}*/

  .header__dropdown {
    width: 100%;
  }
  .header__dropdown.active .header__dropdown-menu {
    height: fit-content;
    margin-top: 0.8rem;
  }
  .header__dropdown.active .header__dropdown-menu.menu_width01 {
    height: fit-content;
  }

  .header__dropdown-menu a {
    display: block;
    padding: 1rem 1.2rem;
    font-size: 1.4rem;
    color: var(--dark);
    border-radius: 0.4rem;
    transition: var(--transition);
  }

  .header__dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary-color);
  }

  /* TOGGLE */
  .header__toggle {
    display: flex;
    z-index: 1100;
  }

  /* HAMBURGER â†’ CROSS */
  .header__toggle span {
    transition: 0.3s;
  }

  .header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.4rem, 0.4rem);
  }

  .header__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.6rem, -0.6rem);
  }
}

@media (max-width: 576px) {
  html {
    font-size: 62.5%;
  }
  .hero_info h1 {
    font-size: 2.8rem;
  }
  .main_title {
    font-size: 2.4rem;
  }

  .why__card {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .why__card .why__text {
    text-align: center;
  }
  
  
.carousel.frame,
.carousel.frame .carousel-inner,
.carousel.frame .carousel-inner * {
  height: fit-content;
}
}

@media (min-width: 769px) {
  .header__dropdown:hover .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}


 @media (min-width: 1399px) {
  .about .image_frame img {
    height: 312px;
  }
}
.about .image_frame img{
  background-position: left;
}

.frame_abt_section {
  position: relative;
  height:100%;
}
.frame_abt_section img {
  border-radius: 10px;
}
.logo_mini_frame {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 12px 16px;
  background: #fff;
  height: fit-content;
  /*border: 1px solid #ccc;*/
  border-radius: 5px;
  box-shadow: 0 0 10px #09090929;
}
.logo_mini_frame img {
  width: clamp(68px, 10vw,120px);
  height: fit-content;
}

