:root {
  --black: #0b0b0b;
  --gold: #c9a24d;
  --white: #ffffff;
  --muted: #b5b5b5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: white;
  color: black;
  line-height: 1.6;
  }

a {
  text-decoration: none;
  color: inherit;
}

html,
body {
  overflow-x: hidden;
}



#nangu-hero {
  width: 100vw;
  height: 80vh;
  background-image: url(imagess/apex.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nangu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

#nangu-hero h2 {
  font-size: 75px;
  font-weight: 700;
margin: 0;
  text-align: center;
  color: #ffffff;
}

#nangu-hero h2 span {
  color: #c9a14a;
}

section:not(#nangu-hero):not(.divisions-cta) {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}



.btn {
  padding: 0.9rem 2.5rem;
  border: 1px solid #c9a24d;
  color: #c9a24d;
  background: transparent;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #c9a24d;
  color: #1a1a1a;
}

section {
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.3rem;
      margin-bottom: 0.5rem;
    }

    .section-title p {
      color: var(--muted);
      font-size: 1rem;
    }







    .group-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
    }

    .group-card {
      background-color: #ffffff;
      border: 1px solid rgba(201,162,77,0.4);
      border-radius: 10px;
      overflow: hidden;
      padding: 1.5rem 1.2rem; 
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      min-height: 110px; 
      display: flex;
      font-family: 'Playfair Display', serif;
      color: #c9a24d;

      flex-direction: column;
      justify-content: center;
      align-items: center
}

  .portfolio-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    background-color: #f6f6f6;
    align-items: stretch;

  }



  .portfolio-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}



.portfolio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
    display: block;
    
}

.portfolio-card h3 {
  margin: 16px 16px 8px;
  font-size: 20px;
  text-align: center;
  color: #c08a2c;
}

.portfolio-card p {
  margin: 0 18px 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.portfolio-card ul {
  margin: 0 22px 20px;
  padding-left: 18px;
}

.portfolio-card ul li {
  font-size: 13.5px;
  margin-bottom: 6px;
  color: #555;
}


.division-text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin: 0 2rem 1.2rem;
}

.division-list {
  list-style: none;
  padding: 0 1.5rem 1.8rem;
}

.division-list li {
  font-size: 0.9rem;
  color: #555;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.division-list li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.division-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #0b0b0b;
  margin: 1.2rem 1.5rem 0.6rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}





.navbar {
  width: 100%;
  padding: 1.5rem 2rem;
  top: 0;
  left: 0;
  z-index: 10;
}


/* Premium upgrade (adds polish, doesn't override structure) */
.navbar {
backdrop-filter: blur(10px);
-webkit-backdrop-filter:  blur(10px);
background: rgba(255, 255, 255, 0.6); /* soft glass effect */
transition: all 0.3s ease;
}

/* Nav links (classy gold edge feel) */
.navbar a {
position: relative;
padding: 8px 14px;
transition: all 0.3s ease;
border-radius: 6px;
}

/* Gold underline animation */
.navbar a::after {
content: "";
position: absolute;
left: 50%;
bottom: 0;
width: 0%;
height: 2px;
background: linear-gradient(90deg, #c9a24e, #f5d78e);
transition: all 0.3s ease;
transform: translateX(-50%);
}

/* Hover effect */
.navbar a:hover {
color: #c9a24e;
transform: translateY(-2px);
}

.navbar a:hover::after {
width: 70%;
}

/* Optional: active link feel */
.navbar a.active {
color: #c9a24e;
}

.navbar a.active::after {
width: 70%;
}






































.nav-container {
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  }

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: black;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
left: 0;
  bottom: -6px;
width: 0%;
  height: 1px;
  background-color: #c9a24d;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.75rem;
    white-space: nowrap;
    letter-spacing: 1px;
  }

  .nav-links {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    display: flex;
  }
}





.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding: 0;
  border: none;
  background: none;
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #ffffff;
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 100;
  border: 1px solid rgba(201,162,77,0.3);
}

.dropdown-content a {
  color: #1a1a1a;
  padding: 0.8rem 1rem;
  display: block;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dropdown-content a:hover {
  background-color: rgba(201,162,77,0.1);
}

.dropdown:hover .dropdown-content {
  display: block;
}


.dropbtn::after {
  content: "";
  position: absolute;
  left: 0;
bottom: -6px;
  width: 0%;
  height: 1px;
  background-color: #c9a24d;
  transition: width 0.3s ease;
}

.dropdown:hover .dropbtn::after {
  width: 100%;
}



.logo-box img {
  height: 140px;
  width: auto;
}


.introduction {
  text-align: center;

}


footer {
  background-color: #f0d59b;
  color: #1a1a1a;
  padding: 2rem 0;
  font-size: 15px;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 1px 20px;
}

.footer-left p {
  margin-bottom: 0.5rem;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
}




#features {
  background-color: #f2f2f2; 
  color: #1a1a1a;
  padding: 80px 20px;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;

}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}


.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
}


.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #c9a24d;
  margin: 0.5rem auto 0;
}

.section-title p {
  text-align: center;
  color: #4d4b4b;
  font-size: 1rem;
  margin-bottom: 3rem;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}


@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 15px;
  }

  .feature-card {
    padding: 20px 12px;
    min-width: 0;
  }

  .feature-card h3 {
    font-size: 0.8rem;
  }
}


.feature-card {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 40px 20px;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(201,162,77,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  opacity: 0; 
  transform: translateY(20px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-card.active {
  opacity: 1;
  transform: translateY(0);
}


.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(201,162,77,0.3);
  background-color: #222222;
}


.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #c9a24d;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #ccc;
}

.feature-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}


.features-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.features-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #222;
}

.features-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}


.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}


.divisions-visual {
  width: 100%;
  margin: 0;
  padding: 0;
}


.divisions-cta {
  background-color: #ffffff;
  padding: 2rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.divisions-cta::before {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: #c9a14a; 
  margin: 0 auto 1.5rem;
}

.divisions-cta .btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: #000000;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}


.divisions-cta .btn:hover {
  background-color: transparent;
  color: #000000;
}



.intro-text {
  max-width: 800px;           
  margin: 1.5rem auto 3rem;   
  font-size: 1rem;            
  line-height: 1.7;           
  text-align: center;          
  color: #0b0b0b;             
  font-family: 'Open Sans', sans-serif;
}



.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: #111;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  border-top: 3px solid #d4af37;
}



.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 60px;       
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
}

.hero-white {
  color: #ffffff;
}




.portfolio-section {
  background-image: url('imagess/construction-background.jpeg');
  
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 80vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white; 
  padding: 100px 20px; 
}


.portfolio-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

.portfolio-content {
  position: relative;
  z-index: 2; 
  text-align: center;
}

.video-hero {
  position: relative;
  width: 100vw;
  height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}


.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.1;
}

.hero-white {
  color: #ffffff;
}

.hero-gold {
  color: #c9a24d;
}


/*
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .video-hero {
    height: 70vh;
  }
} */

















.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}


.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.1;
}

.hero-white {
  color: #ffffff;
}

.hero-gold {
  color:var(--gold) ;
}

/*
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .video-hero {
    height: 70vh;
  }
}*/





.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(201,162,77,0.35);
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-info {
  padding: 1.5rem;
  text-align: center;
}

.portfolio-info h3 {
  font-family: 'Playfair Display', serif;
  color: #c9a24d;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  font-size: 10px;
  color: #666;
}

.portfolio-details {
  max-width: 500px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.detail-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(201,162,77,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(201,162,77,0.25);
}

.detail-card h3 {
  font-family: 'Playfair Display', serif;
  color: #c9a24d;
  margin-bottom: 0.5rem;
}




.leadership-hero {
  position: relative;
  width: 100%;
  height: 60vh; 
  background: url('imagess/leadership-background.jpeg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  color: #fff;
}

.leadership-info {
  padding: 80px 20px;
  background-color: #ffffff;
}

.leadership-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.leadership-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.leadership-intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #444;
}

.leadership-container h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.leadership-values {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.leadership-values li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  position: relative;
}

.leadership-values li::before {
  content: "•";
  color: #FFD700; 
  font-weight: bold;
  margin-right: 8px;
}

.leadership-closing {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}




.contact-hero {
  background: #f5f2ed; 
  padding: 6rem 2rem 3rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
}

.contact-hero h1 span {
  color: #c8a951; 
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form button {
  background: #c8a951;
  color: black;
  padding: 1rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
}



/*
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
}


@media (max-width: 768px) {
  .nangu-hero {
    min-height: 100vh;
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .nangu-hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .nangu-hero p {
    font-size: 1rem;
    margin-top: 1rem;
  }
}


@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-card {
    aspect-ratio: 1 / 1; 
    padding: 1.5rem;
  }

  .portfolio-card h3 {
    font-size: 1.2rem;
  }
}


@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  .contact-form button {
    width: 100%;
  }
}



@media (max-width: 768px) {
  .video-background video {
    object-fit: cover;
    height: 100vh;
    width: 100%;
  }

  .about-content {
    padding: 3rem 1.5rem;
    text-align: center;
  }
}

hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}



.nav {
  display: flex;
  align-items: center;
}

.


@media (max-width: 768px) {
  .hamburger {
    display: flex;
margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
text-transform: uppercase;
  }
}


.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
*/


/* MOBILE FIX - keep navbar clean on small screens */
@media (max-width: 768px) {

.navbar {
backdrop-filter: none; /* removes blur on mobile */
-webkit-backdrop-filter: none;
background: rgba(255, 255, 255, 0.95);
justify-content: center;
gap: 2px;
display: flex;
flex-wrap: wrap;
overflow: visible;
padding: 8px 6px;
}

/* Disable hover movement on mobile (prevents "jumping") */
.navbar a:hover {
transform: none;
}

/* Make underline simpler on touch devices */
.navbar a::after {
height: 2px;
width: 0;
}

.navbar a:hover::after {
width: 0; /* disables hover animation on mobile */
}

/* Optional: better spacing for touch */
.navbar a {
padding: 5px 5px;
font-size: 11px;
white-space: nowrap;
flex: 1 1 auto;
text-align: center;
}



/* IMPORTANT: control the container, not just navbar */
.nav-container {
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center;
gap: 6px;
}

/* Logo sizing + placement */
.logo-box img {
max-width: 120px; /* adjust if needed */
height: auto;
}

/* Nav links layout */
.nav-links {
display: flex !important;
flex-wrap: wrap !important;
justify-content: center !important;
gap: 2px;
}

.nav-links a {
font-size: 11px;
padding: 5px 5px;
white-space: nowrap;
}
}
