/* ===============================
   RESET
=============================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
}

/* ===============================
   NAVBAR
=============================== */
.navbar {
  background-color: #ffffff;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 3em;
}

.logo img {
  width: 50px;
}
.hamburger {
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.5em;
}

/* links */
.navbar a {
  color: #c5a47e;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  font-size: 15px;
}

/* underline base */
.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #c5a47e;
  transition: 0.3s ease;
}

/* hover underline */
.navbar a:hover::after {
  width: 100%;
}

/* active underline */
.navbar a.active::after {
  width: 100%;
}

/* ===============================
   HERO SLIDER
=============================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: "Barlow", sans-serif;
}

/* slides wrapper */
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ===============================
   EACH SLIDE
=============================== */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

/* ⭐ VERY IMPORTANT (shows slide) */
.slide.active {
  opacity: 1;
  z-index: 2;
}

/* image */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* ⭐ zoom start */
  transform: scale(1.2);
  transition: transform 6s ease;
}

/* ===============================
   DARK OVERLAY
=============================== */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* change 0.55 to control darkness */
  z-index: 2;
}

/* ===============================
   TEXT CONTENT
=============================== */
.content {
  position: absolute;
  color: white;
  max-width: 600px;
  bottom: 350px;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.9s ease;
  padding-left: 5em;
  z-index: 3;
}

/* animate when active */
.slide.active .content {
  transform: translateY(0);
  opacity: 1;
}

/* project number */
.project-no {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* heading */
.content h1 {
  font-family: "Oswald", sans-serif;
  font-size: 55px;
  line-height: 1.4em;
}

/* description */
.desc {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 25px;
}

/* ===============================
   CONTROLS
=============================== */
.controls {
  position: absolute;
  bottom: 200px;
  right: 40px;

  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 5em;
  color: white;
  z-index: 10; /* always visible */
}

/* counter */
.counter {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* buttons */
.nav-btns button {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: #c5a47e;
  padding: 10px 16px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
}

.nav-btns button:hover {
  background: #c5a47e;
  color: white;
}
.slide.active img {
  transform: scale(1);
}
.about-us {
  display: flex;
}
/* ===============================
   ABOUT US SECTION
=============================== */
.about-us {
  display: flex;
  justify-content: space-between;
  gap: 4em;

  padding: 6em 8%;
}

/* LEFT 40% */
.about-col-1 {
  flex: 0 0 30%;
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  font-weight: 600;
  text-transform: uppercase;
  color: #c5a47e;
}

/* RIGHT 60% */
.about-col-2 {
  flex: 0 0 70%;
  font-family: "Barlow", sans-serif;
}

/* heading */
.about-col-2 h2 {
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  margin-bottom: 1em;
}

/* paragraph */
.about-col-2 p {
  letter-spacing: 1px;
  line-height: 25px;
  color: #555;
  margin-bottom: 2em;
}

/* ===============================
   ICONS
=============================== */
.about-icons {
  display: flex;
  gap: 3em;
}

.about-icons div {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.about-icons img {
  width: 60px;
}

.about-icons h4 {
  font-weight: 500;
  font-size: 15px;
}
.about-col-1 {
  border-right: 1px dashed #c5a47e;
}
.about-col-1 div {
  border-bottom: 1px dashed #c5a47e;
}
.about-col-2 {
  padding: 6em 0 9em 0;
}
.about-icons {
  margin-top: 6em;
}
/* ===============================
   MARQUEE STRIP
=============================== */
.marquee-strip {
  background: #c5a47e;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

/* moving track */
.marquee-track {
  display: inline-flex;
  gap: 80px;
  animation: marqueeMove 30s linear infinite;
}

/* text style */
.marquee-track span {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* animation */
@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.mission-vision {
  background-color: #f4f0e9;
  display: flex;
  padding: 8em 5em;
  align-items: center;
}
.about-image-container {
  flex: 0 0 40%;
}
.text-about-container {
  padding: 5em;
  flex: 0 0 60%;
}
.text-about-container p {
  margin-top: 2em;
  letter-spacing: 1px;
  line-height: 30px;
}
.text-about-container h2 {
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  line-height: 60px;
}
.text-about-container {
  font-family: "Barlow", sans-serif;
  letter-spacing: 2px;
  line-height: 18px;
}
.about-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-container img {
  width: 300px;
  height: auto;
  border-radius: 20px;
}

.about-image-container img[src="about-us-2.jpg"] {
  border: 20px solid #f4f0e9;
  position: relative;
  left: -200px;
  top: 150px;
}
.mission,
.vision {
  background-color: #ffffff;
  padding: 2em;
  border-radius: 2em;
  margin-top: 3em;
  flex: 0 0 50%;
}

.text-about-wrapper {
  display: flex;
  gap: 2em;
}
.bottom-line {
  border-top: 2px dashed #c5a47e;
  margin-top: 2em;
  padding-top: 2em;
}
.mission h3,
.vision h3 {
  margin: 2em 0;
}
.our-services {
  background-color: #fbf9f6;
  padding: 8em 5em;
}
.title {
  position: relative;
  left: 30px;
}
.title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  transform: translateY(-50%);
  background-image: url(icon-sub-heading.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  left: -30px;
}
.services-heading {
  display: flex;
  gap: 3em;
}
.services-heading div:nth-child(1),
.services-heading div:nth-child(2) {
  flex: 0 0 50%;
}
.services-heading h2 {
  font-family: "Oswald", sans-serif;
  font-size: 45px;
}
.services-heading div:nth-child(2) {
  letter-spacing: 1px;
  line-height: 25px;
}
button.all-services {
  background-color: #c5a47e;
  color: #ffffff;
  padding: 1em 2em;
  margin-top: 2em;
  border: none;
  outline: none;
  border-radius: 2em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  justify-content: center;
  gap: 3em;
  margin-top: 5em;
}
.service {
  position: relative;
  padding: 3em;
  border-radius: 2em;
  border: 1px solid #c5a47e;

  background: #ffffff;
  color: #000000;

  overflow: hidden;
  transition: all 0.35s ease;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("slide-1.jpeg");

  background-size: cover;
  background-position: center;

  opacity: 0; /* hidden by default */
  transition: opacity 0.35s ease;

  z-index: 0;
}
.service * {
  position: relative;
  z-index: 1;
}
.service:hover::before {
  opacity: 1;
}

.service:hover {
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.service:hover h3,
.service:hover p {
  color: #ffffff;
}

.service img {
  width: 50px;
  transition: 0.3s;
}

.service:hover img {
  filter: brightness(0) invert(1);
}

.service img {
  width: 50px;
}
.service h3 {
  margin-top: 2em;
  padding-bottom: 1em;
  border-bottom: 1px dashed #c5a47e;
}
.service p {
  margin-top: 3em;
  letter-spacing: 1px;
  line-height: 20px;
}
.why-choose-us {
  display: flex;
  background-color: #f4f0e9;
  padding: 8em 5em 0 5em;
}
.why-text-container,
.why-image-container {
  height: 950px;
}
.why-text-container {
  flex: 0 0 50%;
}
.why-image-container {
  flex: 0 0 50%;
}
.why-text-container h2 {
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  line-height: 1.2em;
}
.why-text-container p {
  color: #62605d;
  letter-spacing: 1px;
  line-height: 25px;
}
.why-choose-icon {
  width: 50px;
  margin: 2em 0;
}
.why-text-container h4 {
  font-size: 25px;
}
.percent-bar {
  height: 10px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2em;
}
.percent-bar-fill-1 {
  height: 100%;
  width: 85%;
  background-color: #c5a47e;
  border-radius: 2em;
}
.percent-bar-fill-2 {
  height: 100%;
  width: 95%;
  background-color: #c5a47e;
  border-radius: 2em;
}
.bar-heading {
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: 25px;
}
.bar-heading-1 {
  border-top: 1px dashed #c5a47e;
  padding-top: 2em;
  margin-top: 15px;
}
.why-text-container p:nth-child(3),
.why-text-container p:nth-child(6) {
  margin-top: 1em;
}
.why-text-container a {
  display: block;
  width: 200px;
  background-color: #c5a47e;
  color: #ffffff;
  padding: 1em 0;
  text-decoration: none;
  text-align: center;
  margin-top: 2em;
  border-radius: 2em;
}
.why-image-container img:nth-child(1) {
  width: 350px;
  position: relative;
  left: 380px;
  border-radius: 2em;
}
.why-image-container img:nth-child(2) {
  width: 350px;
  position: relative;
  left: 150px;
  bottom: 200px;
  border: 20px solid #f4f0e9;
  border-radius: 2em;
}
.label {
  height: 200px;
  width: 230px;
  background-color: #c5a47e;
  color: #ffffff;
  display: flex;
  justify-content: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  line-height: 30px;
  border-radius: 1em;
  position: relative;
  bottom: 420px;
  left: 500px;
}
.label h3 {
  font-size: 30px;
}
.testimonials {
  padding: 5em;
  background-color: #fbf9f6;
}
.testimonial-card i {
  width: 100%;
  font-size: 4em;
  text-align: right;
  margin-bottom: 1em;
  color: rgba(0, 0, 0, 0.25);
}

.testimonial-container {
  display: flex;
  margin-top: 6em;
  gap: 3em;
}
.testimonials .title {
  text-align: center;
  padding: 4em;
  width: 250px;
  margin: 0 auto;
  position: relative;
}
.testimonials h2 {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  line-height: 1.2em;
  width: 600px;
  margin: 0 auto;
}
.testimonials .title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  transform: translateY(-50%);
  background-image: url(icon-sub-heading.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  left: 35px;
}
.testimonial-image {
  flex: 0 0 33%;
  position: relative;
}
.testimonials-wrapper {
  flex: 0 0 66%;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
}

.testimonial-image img {
  border-radius: 2em;
  width: 100%;
}
.avatar-container {
  position: absolute;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1em;
  bottom: 3em;
  padding: 1.5em 2em;
  margin: 0 auto;
  left: 2.5em;
}
.circle {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: #c5a47e;
  color: #ffffff;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  left: -60px;
}
.avatar img {
  position: relative;
  border: 2px solid #ffffff;
}
.avatar img {
  width: 50px;
}
.avatar {
  display: flex;
}
.avatar img:nth-child(2) {
  left: -20px;
}
.avatar img:nth-child(3) {
  left: -40px;
}
.testimonial-image h4 {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  margin-top: 1em;
  letter-spacing: 1px;
}
.testimonials-wrapper {
  flex: 0 0 66%;
  overflow: hidden; /* hides extra cards */
}

.testimonial-slider {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 2em;
  transition: transform 0.8s ease-in-out;
}

.testimonial-card {
  flex: 0 0 calc(50% - 1em);
  background: #ffffff;
  padding: 3em;
  border-radius: 2em;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.testimonial-card .quote {
  font-size: 18px;
  line-height: 28px;
  color: #333;
  margin-bottom: 2em;
}

.author h4 {
  font-size: 25px;
  margin-bottom: 5px;
}

.author span {
  color: #777;
  font-size: 14px;
}

/* Infinite Scroll Animation */
@keyframes scrollTestimonials {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.testimonial-contact {
  text-align: center;
  margin-top: 3em;
}
.testimonial-contact h4 {
  margin-top: 2em;
}
.testimonial-contact i {
  color: #c5a47e;
}
footer {
  background-color: #000000;
  padding: 5em;
}
.footer-row-1 {
  display: flex;
  gap: 3em;
  align-items: center;
  justify-content: space-between;
}
.logo {
  background-color: #ffffff;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
footer p {
  color: #ffffff;
}
.footer-row-1 p {
  width: 60%;
  line-height: 1.8;
}
.social-icons-footer {
  width: 200px;
  display: flex;
  justify-content: space-between;
}
.social-icons-footer i {
  color: #ffffff;
}
.footer-row-2 {
  display: flex;
  gap: 3em;
  margin-top: 3em;
  justify-content: space-between;
}
.subscribe-box {
  flex: 0 0 25%;
}
.subscribe-box h4 {
  color: #ffffff;
  font-size: 25px;
  line-height: 1.5;
  font-family: "Oswald", sans-serif;
}
.subscribe-box p {
  line-height: 1.6;
  margin-top: 1.5em;
  letter-spacing: 1px;
}
.subscribe-box input {
  padding: 0.5em;
  margin-top: 2em;
}
.subscribe-box button {
  background-color: #c5a47e;
  color: #ffffff;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
.subscribe-box form input {
  width: 80%;
  padding: 0.8em 1em;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.subscribe-box form button {
  height: 40px;
  width: 40px;
  border: none;
  outline: none;
  position: relative;
  left: 1.5em;
}
.quick-links h4,
.our-services-links h4 {
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 1.8em;
}
.quick-links ul,
.our-services-links ul {
  color: #ffffff;
  list-style: none;
}
.quick-links li,
.our-services-links li {
  line-height: 2.5em;
  letter-spacing: 1px;
}
.get-in-touch {
  color: #ffffff;
}
.get-in-touch h4 {
  font-size: 25px;
}
.email div:nth-child(1),
.inquiries div:nth-child(1) {
  background-color: #c5a47e;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.email,
.inquiries {
  display: flex;
  align-items: center;
  gap: 1em;
}
.inquiries {
  margin-top: 2em;
}
.email {
  margin-top: 2em;
}
.email p,
.inquiries p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-top: 1em;
}
.footer-row-3 {
  margin-top: 3em;
  text-align: center;
  padding-top: 3em;
  border-top: 1px dashed #c5a47e;
}
