/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000a9;

  /* Because we want header to be sticky later */
  height: 7.4rem;
  padding: 0 4.8rem;
  position: fixed; /* <-- key change */
  top: 0;
  left: 0;
  width: 100%;

  z-index: 10;
}

.logo {
  height: 7.2rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
  padding-top: 2rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #00E8F7;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  /* border-radius: 9px; */
  color: #fff;
  background-color: #000;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #000;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #CCCCCC;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.hero {
  max-width: 200rem;
  margin: 0 auto;
  padding: 0;
  display: grid;
  align-items: center;
  justify-items: center;
  height: 100vh; /* optional: make it full screen */
  position: relative;
  overflow: hidden;
}



/* Dark overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.45); /* adjust darkness here */
  z-index: 1; /* sits above the image but below text */
}

/* Image box */
.hero-img-box {
  position: absolute;
  inset: 0;
  z-index: 0; /* behind overlay */
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text box */
.hero-text-box {
  position: relative;
  z-index: 2; /* above overlay */
  text-align: center;
  color: #fff;
  padding: 0 3.2rem;
  max-width: 80rem;
}

.hero-icon {
  width: 20rem;
  height: auto;
  filter: drop-shadow(2px 2px 0px #000);
}

.hero-primary {
  color: #fff;
  text-shadow: 2px 2px #000;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}


/**************************/
/* FEATURED IN SECTION */
/**************************/

.section-featured {
  padding: 4.8rem 0 4.8rem 0;
  background-color: #fff;
}

.heading-featured-in {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #061326;
}

.logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.logos img {
  height: 3.2rem;
  filter: brightness(0) invert(6%) sepia(10%) saturate(800%) hue-rotate(190deg);
  
}
/**************************/
/* ABOUT SECTION */
/**************************/

.about {
  padding: 9.6rem 0;
  background-color: #061326;
  padding-right: 3rem;
  padding-left: 3rem;

}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; /* space between text and photos */
  align-items: center;
  margin: 0;
  
}

.about-text {
  color: #fff;
}

.about-sub {
  color: #fff;
}

.about-heading {
  color: #fff;
  font-size: 3.8rem;
}

.about-content {
  color: #fff;
  line-height: 2.6rem;
  font-size: 2rem;
  width: 100%;
  padding-bottom: 7rem;
}

/* 📸 Photos container */
.about-photos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 80%;
  position: relative;
  perspective: 1200px;
  background: linear-gradient(135deg, #f7f7f7 0%, #ebebeb 100%);
  transition: background 1s ease;
  overflow: hidden;
}

/* 🖼️ Individual images - grayscale initially */
.about-img-one,
.about-img-two {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transform-origin: center;
  opacity: 0.95;
}

/* Hover — reveal original image colors with subtle lift */
.about-img-one:hover,
.about-img-two:hover {
  filter: grayscale(0%); /* original colors */
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.about-img-one {
  transform: translateY(-60px); /* push image 1 slightly up */
}

/* 🖼️ Staggered vertical offset */
.about-img-two {
  transform: translateY(40px); /* push image 2 down */
}

/* ✨ Entrance animation */
@keyframes architecturalEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.about-photos img {
  animation: architecturalEntrance 1s ease forwards;
}

.about-photos img:nth-child(1) {
  animation-delay: 0.2s;
}

.about-photos img:nth-child(2) {
  animation-delay: 0.4s;
}

/* Optional: background subtle shift on hover */
.about-photos:hover {
  background: linear-gradient(135deg, #eaeaea 0%, #f0f0f0 60%, #dfe3ea 100%);
}

/**************************/
/* HOME GALLERY SECTION */
/**************************/

.home-gallery {
  padding: 9.6rem 0 15rem 0;
}

.gallery-sub {
  color: #000;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5rem;
}

.home-gallery *:focus {
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important; /* keep original padding */
  margin-left: 1.8rem;

}

.home-gallery img {
  display: block;
  vertical-align: top;
  transition: transform 0.2s ease;
}

.home-gallery img:active {
  transform: scale(1.05);
}



/* .slider-whole,
.slider-whole .uk-slider-items li,
.slider-whole .uk-slider-items li img {
  pointer-events: none;
  z-index: 9999;
  position: relative;
  pointer-events: auto;
}

.uk-slidenav-previous,
.uk-slidenav-next {
  z-index: 9999;
  position: relative; 
  pointer-events: auto; 
} */



/**************************/
/* NUMERICAL SECTION */
/**************************/

#company-stats {
  background-color: #061326;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 40px;
  color: #fff;
  margin-top: 10px;
}

 .stat-number {
      font-size: 7rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.5rem;
      transition: color 0.6s ease;
    }

    .stat-number span {
      font-weight: 400;
    }

    /* Optional: style for the paragraph below numbers */
    #company-stats p {
      font-size: 1.7rem;
      color: #fff;
      
    }

    
/**************************/
/* COMMERCIAL SPACE SECTION */
/**************************/

.section-archi-design {
  padding: 9.6rem 0;
  background-color: #fff;
}



.archi-design-description {
  font-size: 1.8rem;
  line-height: 1.8;
}



.archi-design-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #0d253f; /* Dark blue box */
  overflow: visible; /* Let image overflow */
}

.archi-design-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

  position: relative;
  transform: translate(30px, -70px); /* X and Y together */
  box-shadow: 0 20px 40px rgba(0,0,0,0.3); /* Floating shadow */
  transition: transform 0.4s ease; /* Smooth transition */
}

/* On hover, image sits perfectly in box */
.archi-design-img-box:hover .archi-design-img {
  transform: translate(0, 0);
}

/**************************/
/* ARCHITECHURAL VID SECTION */
/**************************/




/**************************/
/* MEALS SECTION */
/**************************/

.section-pricing {
  padding: 9.6rem 0 12rem;
}

.pricing {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.445);
  overflow: hidden;
  transition: all 0.4s;
}

.pricing:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.pricing-content {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}

.pricing-tags {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

.tag--contemporary {
  background-color: #23364b;
}

.tag--traditional {
  background-color: #546273;
}

.pricing-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.pricing-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pricing-attribute {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.pricing-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #00254B;
}

.pricing-img {
  width: 100%;
}

.test {
  padding-top: 5rem;
  text-align: center;
  font-weight: 500;
  font-size: 1.4rem;
}






/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */

  /* top / horizontal / left */
  padding: 9.6rem 0 7.8rem;
}

.cta {
  display: grid;
  /* 2/3 = 66.6% + 1/3 = 33.3% */
  grid-template-columns: 2fr 1fr;
  /* background-color: #e67e22; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  /* border-radius: 11px; */

  background-image: linear-gradient(to right bottom, #061326, #000);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #fff;
}

.cta .heading-secondary {
  /* color: #45260a; */
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(0, 0, 0, 0.349),
      rgba(6, 19, 38, 0.349)
    ),
    url("../img/cta-img.jpg");
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: #000;
  border: none;
  background-color: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
  background-color: #000;
  color: #fff;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #fff;

}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}
