@import url('https://fonts.googleapis.com/css2?family=Nexa:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Nexa', sans-serif;
  background-color: #f2eded;
}

#first-look {
  background-color: #161515;
  color: #f2eded;
  height: auto;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  margin-top: 20px;
}

.logo img {
  height: 100px; /* or whatever size suits */
  width: auto;
  display: block;
}

.nav-menu a:focus {
  outline: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  position: relative;
  text-decoration: none;
  color: #f2eded;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  transition: transform 0.3s ease;
  line-height: 1; /* keeps space consistent */
  padding: 0px 20px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #f2eded;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  transform: scale(1.1); /* instead of font-size change */
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none; /* hidden by default */
}

.logo {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  color: #f2eded;
}


.hero {
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: #161515;
  margin-top: 20px;
}

.hero-left {
  flex: 1;
  font-weight: 700;
  line-height: 1.3;
  min-width: 280px;
  display: flex;
  align-items: center;
}

.full-text {
  font-family: 'Nexa', sans-serif;
  font-size: 50px;
  color: #f2eded;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  padding-left: 35px;
}



.typing-text {
  font-weight: 100; /* Thin */
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s ease;
  font-size: 65px !important;
}

.typing-text.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
}

.hero-img {
  max-width: 100%;
  height: auto;
  transform: scaleX(-1); /* Flip horizontally */
  display: block;
}
/* For mobile */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    justify-content: center;
    font-size: 1.6rem;
  }

  .hero-img {
    width: 80%;
    margin-top: 1rem;
  }
}

.work {
  background-color: #f2eded;
  width: 100%;
  height: auto;
}

h2 {
  color: #161515;
  font-size: 45px;
  text-align: center;
  padding-top: 30px;
  text-transform: uppercase;
}
.services {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.service-box {
  width: 80%;
  display: flex;
  justify-content: center;
}

.service-box img {
  width: 100%;
  height: auto;
  border: solid 5px #161515;
}

.button-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-discovery {
  background-color: #161515;
  color: #f2eded;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #f2eded;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 40px auto; /* center with block display or flex container */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-discovery:hover {
  background-color: #f2eded;
  color: #161515;
  transform: scale(1.05);
  outline: 2px solid #161515; /* box outline */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* soft shadow */
}

.who-we-are {
  background-color: #f2eded; /* Light background */
  padding: 10px;
  text-align: center;
}

.about {
  color: #161515;
  margin-bottom: 30px;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: bold;
}

/* ---------------------------- */
/* About Section                */
/* ---------------------------- */
.about-section {
  color: #161515;
  text-align: center;
}

.container {
  max-width: 930px;
  margin: 0 auto;
}

.about-hover-text {
  font-size: 30px;
  line-height: 1.8;
  margin-bottom: 2rem;
}


.logo-carousel {
  background-color: #f2eded;
  overflow: hidden;
}

.carousel-row-wrapper {
  overflow: hidden;
  width: 100%;
  margin: 20px 0;
}

.carousel-row {
  display: flex;
  min-width: max-content;
  gap: 40px;
}

.carousel-row img {
  width: 140px;
  height: 150px;
  object-fit: contain;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

/* Animation */
.scroll-left {
  display: flex;
  animation: scrollLeft 50s linear infinite;
}

.scroll-right {
  display: flex;
  animation: scrollRight 50s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}


.container {
	max-width: 1140px;
	width: 100%;
	margin: auto;
	padding: 0 15px;
}
.sec-title {
	margin-bottom: 50px;
	position: relative;
  padding-bottom: 10px;
}

.sec-title h2 {
	font-size: 60px;
	font-weight: 900;
	letter-spacing: 0px;
	text-transform: uppercase;
	color: #161515;
}
.sec-title p {
	font-size: 26px;
	line-height: 28px;
  color: #161515;
  margin-top: -35px;
}
.testimonial-area {
	background: #f2eded;
	position: relative;
	z-index: 2;
  padding-bottom: 50px;
}

.testimonial-row {
  display: flex; /* Enables flexbox layout */
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  justify-content: center; /* Horizontally centers all testimonial boxes */
  gap: 30px; /* Adds consistent spacing between the boxes */
  margin-top: 30px;
}

.single-testimonial {
  width: 360px; /* Fits three boxes nicely in one row (3 × 360 + 2 × gap = 1170px) */
  height: 350px;
  border: 4px solid #161515;
  border-radius: 45px;
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: #f2eded;
  box-sizing: border-box;
}

.testimonial-logo {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0px;
  position: relative;
  z-index: 3;
  object-fit: contain;
  transform: scale(1.9);
}

.testimonial-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

h3 {
  color: #161515;
  font-size: large;
}
.single-testimonial p {
	color: #161515;
    font-size: 15px;
    line-height: 24px;
    padding: 0 10px 15px;
    position: relative;
    text-align: center
}
.single-testimonial::before {
	content: "";
  position: absolute;
  left: -26px;
  top: -35px;
  background: url(https://cdn-icons-png.flaticon.com/512/4338/4338294.png) no-repeat #f2eded;
  background-size: 60%;
  width: 100px;
  height: 100px;
  transform: rotate(180deg);
  background-position: 34px 15px;
}
.single-testimonial::after {
	content: "";
	position: absolute;
	right: -35px;
	bottom: -34px;
	background: url(https://cdn-icons-png.flaticon.com/512/4338/4338294.png) no-repeat #f2eded;
	background-size: 60%;
	width: 100px;
	height: 100px;
	background-position: 34px 19px;
}
.round {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}

.last {
  background-color: #161515;
  color: #f2eded;
  text-align: center; /* optional for h3 if used later */
  padding: 15px;
}

.contact-info {
  display: flex;
  justify-content: center; /* centers horizontally */
  gap: 60px; /* spacing between Phone, Email, Home */
  flex-wrap: wrap; /* wraps on small screens */
  font-size: 16px;
  align-items: center;
}

.contact-info p {
  margin: 0;
}

.home-link {
  color: #f2eded;
  text-decoration: none;
  font-weight: bold;
}

.home-link:hover {
  text-decoration: underline;
}


/* ==================== Tablet (768px - 1024px) ==================== */
@media (max-width: 1024px) {
  
  .hero-left {
    margin-top: -100px;
    font-size: 28px;
    text-align: center;
    justify-content: center;
  }

  .full-text{
  text-align: left;
  font-size: 35px;
  }

  .typing-text {
    font-size: 40px !important;
  }

  .hero-right {
    margin-top: 20px;
  }

  .service-box {
    width: 90%;
    height: auto;
  }

  .testimonial-row {
    gap: 20px;
  }

  .single-testimonial {
    width: 90%;
    height: auto;
  }

  .single-testimonial p {
    padding: 0 80px 15px;
    font-size: 25px;
  }

  h3 {
  font-size: 28px;
 }
}



/* ==================== Mobile (up to 768px) ==================== */
@media (max-width: 768px) {

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .hero-left {
    margin-top: -50px;
    font-size: 22px;
    justify-content: center;
  }

  .full-text {
    font-size: 28px;
    padding-left: 0;
  }

  .typing-text {
    font-size: 35px !important;
    text-align: left;
  }

  .hero-img {
    width: 90%;
    margin-top: 15px;
  }

  .services {
    flex-direction: column;
    gap: 15px;
  }

  .service-box {
    width: 100%;
    height: auto;
  }

  h2, .about, .sec-title h2 {
    font-size: 28px;
  }

  .about-hover-text {
    font-size: 18px;
    line-height: 1.5;
  }

  .testimonial-row {
    flex-direction: column;
    gap: 15px;
  }

  .single-testimonial {
    width: 100%;
    height: auto;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
  }
}
