body {
  background-color: #ffffff;
  font-family: Verdana, sans-serif;
  padding-top: 8rem;
}

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.white {
  display: flex;
  justify-content: flex-start;
  background-color: #ffffff;
}

.white p {
  margin-left: 2rem;
  color: rgb(0, 0, 0);
}

.white p {
  position: relative;
  left: 100px;
  animation: slide-right .6s linear forwards;
  animation-delay: 1.3s;
  opacity: 0;
}

@keyframes slide-right {
  0% {
    left: 50px;
    opacity: 0;
  }

  100% {
    left: 0;
    opacity: 1;
  }
}

.slider {

  width: 400%;
  height: 100%;
  transition: transform 1s ease;
}

.slide {
  width: 25%;
  height: 100%;
  float: left;
}

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

@keyframes slideLeft {
  0% { transform: translateX(0); }
  25% { transform: translateX(-25%); }
  50% { transform: translateX(-50%); }
  75% { transform: translateX(-75%); }
  100% { transform: translateX(0); }
}

@keyframes slideText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50vw); }
}

@keyframes slideIn {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

.blue {
  background-color: rgb(0, 0, 0);
  width: 100%;
  height: 9rem;
  display: flex;
  justify-content: space-evenly;
}

img {
  height: 8rem;
  width: 10rem;
  object-fit: cover;
}

.navigation a {
  text-decoration: none;
  color: white;
  margin-left: 2rem;
}

.navigation {
  margin: 2rem;
}

input {
  height: 2rem;
  width: 12rem;
  margin: 1rem;
  background-color: transparent;
  border-color: transparent;

}

.container {
  position: relative;
  height: 100vh;
  width: 100%;
  margin-top: -1rem;
  overflow: hidden;
}

.content {
  width: 100%;
  padding-top: 10rem;
  text-align: center;

}

.content h1 {
  font-size: 4rem;
  color: rgb(0, 0, 0);
  animation: slideIn 1s ease-out 4s both;
}

.content h3 {
  color: #ffffff;
  text-transform: bold;
  margin: 3rem;
  animation: slideIn 1s ease-out 5s both;
}

.move {
  background-color: #ffffff;
  height: 4rem;
}

.move {
  overflow: hidden;
}

.move ul {
  display: block;
  white-space: nowrap;
  animation: slideText 20s linear infinite;
}

.move ul li {
  display: inline-block;
  width: 100vw;
  font-size: 13px;
}

.move button {
  margin: 0 3rem;
  background-color: #DAA520;
  color: #000;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  vertical-align: middle;
  min-width: 180px;
  text-align: center;
}

.move button:hover {
  background-color: #B8860B;
}

.unique {
  background-color: #ffffff;
  height: 30rem;
  width: 100%;

}

.combine {
  display: flex;
  justify-content: space-between;
  border: #b3acac;
  border-color: 5px solid #b3acac;
  height: 95%;
  width: 95%;
  margin: 2rem;
}

.photo {
  width: 50%;
  height: 100%;
}

.photo img {
  width: 100%;
  height: 100%;
  margin: 0;
}

.discription {
  margin: 3rem;
  width: 50%;
}

.discription h1 {
  margin-bottom: 2rem;
}

.head {
  background-color: #000;
  text-align: center;
  color: #ffffff;
  height: 10rem;
}

.head h1 {
  padding-top: 3rem;
  font-size: 3rem;
}

.pictures {
  background-color: #ffffff;
  padding: 2rem 0;
  animation: fadeInPictures 1s ease-out;
}

@keyframes fadeInPictures {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.one {
  display: flex;
  justify-content: space-between;
  width: 100%;

}

.architect {
  width: 50%;
}

.pink {
  width: 50%;
  margin: 5rem 5rem 5rem 10rem;
}

.pink h1 {
  font-size: 2rem;
}

.architect {
  overflow: hidden;
  border-bottom-right-radius: 2rem;
  border-top-left-radius: 2rem;
  position: relative;
}

.architect .slider {
  width: 400%;
  height: 30rem;
  transition: transform 1s ease;
}

.architect .slide {
  width: 25%;
  height: 100%;
  float: left;
}

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

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

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  border-radius: 50%;
  transition: background 0.3s ease;
  display: none;
}

.prev:hover, .next:hover {
  background: #DAA520;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media (max-width: 768px) {
  .prev, .next {
    display: block;
  }
}

button {
  height: 2rem;
  width: 10rem;
  margin-top: 2rem;
  border-color: transparent;
  background-color: transparent;
}

.pink button {
  background-color: #DAA520;
  color: #000;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pink button:hover {
  background-color: #B8860B;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.why {
  background-color: #000;
  color: #ffffff;
}

.fine {
  display: flex;
  justify-content: space-around;
}

.fine h1 {
  font-size: 6rem;
}

.fine p {
  margin-top: 5rem;
  line-height: 2rem;
}

.win {
  display: flex;
  justify-content: space-around;
  border: 1px solid #b3acac;
  text-align: center;
  height: 25rem;
}

.une {
  margin-top: 10rem;
}

.une h1 {
  font-size: 25px;
}

.une p {
  font-size: 14px;
  line-height: 20px;

}

.line {
  height: 15rem;
  width: 1px;
  background-color: #b3acac;
  margin-top: 5rem;
}

.more {
  display: flex;
  justify-content: center;
  padding-bottom: 5rem;
}

.more button {
  background-color: rgb(0, 0, 0);
  text-decoration: underline;
  color: #ffffff;
  font-size: 15px;
}

.more p {
  margin-top: 2.5rem;
}

.percent {
  height: 70vh;
  width: 100%;
  background-image: url('https://res.cloudinary.com/dbtchmsoy/image/upload/v1757328679/WhatsApp_Image_2025-08-29_at_6.05.47_PM_1_m01swn.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-around;
}

.work {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.hash {
  height: 23rem;
  width: 23rem;
  background-color: #000;
  color: #ffffff;
  text-align: center;
  margin: 8rem 0 0 0;
}

.hash p {
  margin: 10px;
}

.residential {
  height: 28rem;
  width: 25rem;
  background-color: #da990db8;
  color: #000000;
  margin: 5rem 0 0 0;
}

.residential p {
  margin: 20px;
}

.hive {
  height: 23rem;
  width: 23rem;
  background-color: #000000;
  color: #ffffff;
  margin: 8rem 0 0 0;
  text-align: center;
}

.hive p {
  margin: 10px;
}

.circle {
  height: 25rem;
  width: 25rem;
 
  border: 1px solid #ffffff;
  text-align: center;
  margin-top: 11rem;
  color: #ffffff;
}

.circle h1 {
  margin-top: 30%;
  font-size: 3rem;
}

.circle p {
  font-size: 1rem;
}

.apartment {
  background-color: #ffffff;
  padding: 2rem 0;
}

.apartment ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.apartment li {
  margin: 0 1.5rem;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.apartment li:hover {
  color: #DAA520;
}

.firstly, .secondaly, .thridly {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 2rem;
}

.onely {
  text-align: center;
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
}

.onely:nth-child(1) { animation-delay: 0.1s; }
.onely:nth-child(2) { animation-delay: 0.2s; }
.onely:nth-child(3) { animation-delay: 0.3s; }

.onely img {
  height: 28rem;
  width: 100%;
  max-width: 28rem;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.onely img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.onely h1 {
  font-size: 15px;
  color: #b3acac;
  margin: 0.5rem 0;
}

.onely p {
  font-size: 22px;
  margin: 0.5rem 0;
  font-weight: bold;
}

.apartment button {
  height: 3rem;
  width: 15rem;
  background-color: #000;
  color: #ffffff;
  border: none;
  margin: 2rem auto;
  display: block;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.apartment button:hover {
  background-color: #DAA520;
  color: #000;
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.last {
  background-color: #000;
  color: #ffffff;
  padding: 2rem 0 1rem;
  animation: fadeInFooter 1s ease-out;
}

@keyframes fadeInFooter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.media {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.media img {
  height: 8rem;
  width: 10rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.media img:hover {
  transform: scale(1.05);
}

.medi ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.medi li {
  margin-left: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.medi li:hover {
  color: #DAA520;
  transform: translateY(-2px);
}

.service {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.service h1 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #DAA520;
}

.service p {
  font-size: 15px;
  font-weight: 100;
  line-height: 1.4;
  margin: 0.3rem 0;
}

.new input {
  width: 100%;
  max-width: 18rem;
  padding: 0.4rem;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.new input:focus {
  outline: none;
  border-color: #DAA520;
}

.new button {
  color: #ffffff;
  background-color: #DAA520;
  border: none;
  padding: 0.4rem 0.8rem;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 4px;
}

.new button:hover {
  background-color: #B8860B;
  transform: translateY(-2px);
}

.copy {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #333;
  margin-top: 1.5rem;
}





/* ---------- MOBILE VIEW ---------- */
@media (max-width: 768px) {

  /* Top white bar */
  .white {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .white p {
    margin: 0.3rem 0;
  }

  .hash {
    margin: 0 0 0 0;
  }

  /* Navbar */
  .blue {
    flex-direction: column;
    height: auto;
    padding: 1rem;
    text-align: center;
  }

  .navigation ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 1rem 0;
  }

  .navigation a {
    margin: 0;
    font-size: 1rem;
  }

  input {
    width: 90%;
    margin: 0.5rem auto;
    display: block;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 0.5rem;
    color: #fff;
  }

  /* Logo */
  img {
    height: 6rem;
    width: 7rem;
  }

  .media img {
    height: 8rem;
    width: 9rem;
  }

  /* Hero text */
  .content h1 {
    font-size: 2rem;
    margin-left: 1rem;
  }

  .content h3 {
    font-size: 1.2rem;
    margin-left: 1rem;
  }

  .content p {
    margin: 2rem 1rem;
    font-size: 0.9rem;
  }

  /* Move section */
  .move ul {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    margin: 1rem 0;
  }

  /* Unique section */
  .combine {
    flex-direction: column;
    margin: 1rem;
  }

  .photo,
  .discription {
    width: 100%;
  }

  .discription {
    margin: 1rem;
  }

  /* Services cards */
  .one {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .architect,
  .pink {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .architect img {
    height: auto;
  }

  /* Why Us */
  .fine {
    flex-direction: column;
    text-align: center;
  }

  .win {
    flex-direction: column;
    height: auto;
    padding: 2rem 1rem;
  }

  .line {
    display: none;
  }

  .une {
    margin: 2rem 0;
  }

  /* Percent section */
  .percent {
    flex-direction: column;
    height: auto;
    padding: 2rem 0;
    gap: 2rem;
  }

  .circle {
    width: 12rem;
    height: 12rem;
    margin: 0 auto;
  }

  /* Projects */
  .apartment ul {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }

}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  margin: 1rem;
}

/* Hide menu by default on small screens */
#nav-menu {
  display: flex;
}

/* Tablets (2-column layout) */
@media (max-width: 1024px) {
  .work {
    flex-direction: column;
  }

  .firstly,
  .secondaly,
  .thridly {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Phones (stacked layout) */
@media (max-width: 768px) {
  .work {
    padding: 1rem;
  }

  .firstly,
  .secondaly,
  .thridly {
    grid-template-columns: 1fr;
  }

  .apartment ul {
    flex-direction: column;
    align-items: center;
  }

  .apartment button {
    width: 90%;
  }

  .onely {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hash {
    margin: 0 0 0 0;
  }

  .media {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

}

/* Small screens */
@media (max-width: 480px) {
  img {
    height: 5rem;
    width: 6rem;
  }

  .media img {
    height: 6rem;
    width: 7rem;
  }

  .content h1 {
    font-size: 1.5rem;
  }

  .content h3 {
    font-size: 1rem;
  }

  .head h1 {
    font-size: 2rem;
  }

  .circle {
    width: 10rem;
    height: 10rem;
  }

  .circle h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .media {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #nav-menu {
    display: none;
    flex-direction: column;
    background-color: rgb(0, 140, 255);
    width: 100%;
    padding: 1rem 0;
  }

  .hash {
    margin: 0 0 0 0;
  }

  #nav-menu.active {
    display: flex;
  }

  .navigation ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .navigation a {
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
  }

  .service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}