* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

header.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem 1.25rem 3rem;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ef8508;
  line-height: 1.3;
}

nav {
  display: flex;
  gap: 4rem;
  align-items: center;
  font-size: 1rem;
}

nav a:hover {
  text-decoration: underline;
  color: #ef8508;
}

.btn-outline {
  padding: 0.5rem 1rem;
  border: 2px solid #ef8508;
  background: transparent;
  border-radius: 13px;
  cursor: pointer;
}

.btn-outline:hover {
  color: white;
  background-color: #ef8508;
  transition: 0.4s;
}

.btn-filled {
  padding: 0.8rem 1.2rem;
  background: #ffeea8;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  margin-top: 1.75rem;
  box-shadow: 4px 8px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  color: #a36c35;
  font-size: 20px;
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.btn-filled:hover {
  background: #ffde59;
  transition: 0.3s;
  transform: translateY(-3px) scale(1.03);
}

.hero {
  display: flex;
  justify-content: space-between;
  padding: 4rem 4rem;
  height: 517px;
  background-image: url(/assets/img/home/img/home_header.png);
  background-size: cover;
  background-position: right center;
  color: white;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: slideUp 0.4s ease-out;
}

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

.hero-content h1 {
  font-size: 54px;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: bold;
}
.hero-content h1 span {
  color: #fff;
}

.hero p {
  max-width: 400px;
  font-size: 19px;
}

.hero-image img {
  max-width: 250px;
}

.why {
  background: #f9f9f9;
  position: relative;
  height: 402px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.wrap {
  display: flex;
  align-items: flex-start;
}

.img-container {
  position: relative;
}

.img-container img {
  height: 402px;
  display: block;
}

.img-container h2 {
  top: 70px;
  left: 93px;
  position: absolute;
  font-size: 45px;
  font-weight: 600px;
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

.why h2 span {
  color: #ef8508;
}

.why p {
  padding-top: 2.35rem;
  padding-left: 6rem;
  font-size: 20px;
  line-height: 1.35;
}

.why p span {
  font-weight: 600;
}

.services {
  text-align: center;
  padding: 4rem 2rem;
  padding-bottom: 5.5rem;
  background: linear-gradient(135deg, #fef9e7 0%, #fff5e6 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(239, 133, 8, 0.05) 0%,
    transparent 70%
  );
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.services h2 {
  font-size: 42px;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ef8508 0%, #ff9f1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.tags {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.tags span {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  border-radius: 13px;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 8px 25px rgba(239, 133, 8, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.tags span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.tags span:hover {
  background: linear-gradient(135deg, #ef8508 0%, #ff9f1a 100%);
  color: white;
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 40px rgba(239, 133, 8, 0.4), 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.portfolio {
  padding: 2rem;
  padding-top: 3.5rem;
  text-align: center;
}

.portfolio h2 {
  font-size: 42px;
}

.portfolio h2 span {
  color: #ef8508;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  width: 880px;
  margin: 0 auto;
  gap: 0.5rem;
  padding-bottom: 2rem;
}

.portfolio-images {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 1.4rem;
  margin-top: 1rem;
  overflow: hidden;
  padding: 1rem 0.5rem;
  scroll-behavior: smooth;
}

.portfolio-images img {
  height: 100%;
  width: auto;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-images img:hover {
  transform: translateY(-3px) scale(1.1);
  transition-duration: 0.4s;
}

.img-wrapper {
  height: 180px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 10px;
  flex-shrink: 0;
}

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

.portfolio-images a {
  flex: 0 0 130px;
}

.carousel-btn {
  background-color: #ef8508;
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.1rem 1rem;
  overflow: hidden;
  cursor: pointer;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.carousel-btn.left {
  left: 0;
}

.carousel-btn.right {
  right: 0;
}

.carousel-btn.left,
.carousel-btn.right {
  position: static;
}

.cta {
  background: #fef3c7;
  padding: 3rem;
  margin: 0 8rem 0 8rem;
  text-align: center;
  border-radius: 10px;
  line-height: 1.35;
  margin-bottom: 2rem;
}

.cta h2 {
  margin-bottom: 2rem;
  font-size: 36px;
  color: #ef8508;
  font-weight: 600;
}

.cta-btn {
  padding: 0.8rem 1.6rem;
  background: #ffde59;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  box-shadow: 4px 8px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  color: #ef8508;
  font-size: 18px;
  font-weight: 400;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta-btn:hover {
  background: #ef8508;
  color: white;
  transition: 0.4s;
}

.sub-footer {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-top: 1px solid #ddd;
  padding: 2rem;
}

.prolance {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.footer-left {
  line-height: 1.35;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #ef8508;
}

.contact-item img {
  width: 17x;
  height: 17px;
}

.bottom-footer {
  display: flex;
  border-top: 1px solid #ddd;
  justify-content: space-between;
  background-color: white;
  padding: 1rem 2rem;
  padding: 1.25rem 3rem 1.25rem 3rem;
  font-size: 15px;
}

.social-footer {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.social-footer a {
  align-items: center;
  height: 100%;
  width: 100%;
}

.social-footer img {
  align-items: center;
  height: 1rem;
  width: 1rem;
}

@media screen and (max-width: 1232px) {
  .why .img-container img {
    width: 30rem;
    object-fit: cover;
  }

  .why .img-container h2,
  .why .img-container span {
    font-size: 42px;
    left: 65px;
  }

  .why span,
  .why p {
    font-size: 18px;
    padding-right: 1rem;
  }

  .why p {
    padding-left: 3.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .hero {
    background-image: url(/assets/img/background\ home.png);
  }

  .why .img-container img {
    width: 30rem;
    object-fit: cover;
  }

  .why .img-container h2,
  .why .img-container span {
    font-size: 42px;
    left: 65px;
  }

  .why span,
  .why p {
    font-size: 17px;
    padding-right: 1rem;
  }

  .why p {
    padding-left: 3.5rem;
  }
}

@media screen and (max-width: 1023px) {
  .why .img-container img {
    width: 25rem;
    object-fit: cover;
  }

  .why .img-container h2,
  .why .img-container span {
    font-size: 36px;
    left: 65px;
  }

  .why span,
  .why p {
    font-size: 17px;
  }

  .why p {
    padding-left: 3.5rem;
    padding-top: 1.5rem;
  }

  .carousel-container {
    width: 670px;
  }
}

@media screen and (max-width: 870px) {
  .why .img-container img {
    width: 20rem;
    object-fit: cover;
  }

  .why .img-container h2,
  .why .img-container span {
    font-size: 36px;
    left: 65px;
  }

  .why span,
  .why p {
    font-size: 16px;
  }

  .why p {
    padding-left: 3.5rem;
    padding-top: 1.5rem;
  }

  .cta {
    margin: 0 5rem 0 5rem;
  }
}

@media screen and (max-width: 767px) {
  .hero h1 {
    font-size: 44px;
  }

  .why .img-container img {
    width: 17rem;
    object-fit: cover;
  }

  .why .img-container h2,
  .why .img-container span {
    font-size: 28px;
    left: 60px;
  }

  .why span,
  .why p {
    font-size: 16px;
  }

  .why p {
    padding-left: 3.5rem;
    padding-top: 1.5rem;
  }

  .carousel-container {
    width: 480px;
  }

  .cta {
    margin: 0 4rem 0 4rem;
  }

  .cta h2 {
    font-size: 30px;
  }

  .sub-footer {
    flex-direction: column;
    padding-left: 4rem;
  }
}
