/* =====================================
   BASIC RESET
===================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #f5f5f3;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}


/* =====================================
   HEADER
===================================== */

.site-header {
  width: 100%;
  padding: 12px 18px;

  position: relative;
  z-index: 1000;

  background: #f4f4f1;
}

.header-container {
  width: min(1380px, 100%);
  min-height: 78px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  background: #175638;
  border-radius: 999px;
}


/* =====================================
   LOGO
===================================== */

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  width: 245px;
  height: auto;

  display: block;
}


/* =====================================
   DESKTOP NAVIGATION
===================================== */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.nav-link {
  position: relative;

  color: #ffffff;

  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: #f28a2b;
  border-radius: 999px;

  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #f28a2b;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}


/* =====================================
   DESKTOP HIRE BUTTON
===================================== */

.header-contact-btn {
  padding: 13px 23px;

  flex-shrink: 0;

  color: #175638;
  background: #ffffff;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.header-contact-btn:hover {
  transform: translateY(-2px);
  background: #f28a2b;
}


/* =====================================
   HAMBURGER
===================================== */

.menu-toggle {
  display: none;
}


/* =====================================
   MOBILE OVERLAY
===================================== */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1998;

  opacity: 0;
  visibility: hidden;

  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(3px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}


/* =====================================
   MOBILE SIDE MENU
===================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1999;

  width: min(350px, 88vw);
  height: 100dvh;
  padding: 20px;

  display: flex;
  flex-direction: column;

  background: #175638;

  transform: translateX(100%);

  transition: transform 0.35s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}


/* =====================================
   MOBILE MENU HEADER
===================================== */

.mobile-menu-header {
  padding-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-menu-brand {
  display: flex;
  align-items: center;
}

.mobile-menu-brand img {
  width: 190px;
  height: auto;

  display: block;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  padding: 0;

  display: grid;
  place-items: center;

  cursor: pointer;

  color: #175638;
  background: #ffffff;

  border: 0;
  border-radius: 50%;

  font-size: 29px;
  line-height: 1;
}


/* =====================================
   MOBILE LINKS
===================================== */

.mobile-navigation {
  margin-top: 24px;

  display: flex;
  flex-direction: column;
}

.mobile-link {
  padding: 16px 2px;

  display: flex;
  align-items: center;
  gap: 14px;

  color: #ffffff;

  border-bottom: 1px solid rgba(255, 255, 255, 0.13);

  font-size: 20px;
  font-weight: 600;
  text-decoration: none;

  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.mobile-link span {
  color: #f28a2b;

  font-size: 10px;
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.active {
  color: #f28a2b;
  padding-left: 7px;
}


/* =====================================
   MOBILE HIRE BUTTON
===================================== */

.mobile-hire-btn {
  margin-top: auto;
  padding: 7px 7px 7px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  color: #175638;
  background: #f28a2b;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-hire-btn strong {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  color: #175638;
  background: #ffffff;

  border-radius: 50%;

  font-size: 18px;
}


/* =====================================
   TABLET / MOBILE
===================================== */

@media (max-width: 980px) {

  .site-header {
    padding: 8px 10px;
  }

  .header-container {
    min-height: 64px;
    padding: 0 10px 0 17px;

    gap: 12px;
  }

  .logo-image {
    width: 190px;
  }

  .main-nav,
  .header-contact-btn {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;

    cursor: pointer;

    background: #ffffff;

    border: 0;
    border-radius: 50%;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;

    display: block;

    background: #175638;
    border-radius: 999px;

    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {

  .site-header {
    padding: 6px 7px;
  }

  .header-container {
    min-height: 56px;
    padding: 0 8px 0 13px;
  }

  .logo-image {
    width: 165px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle span {
    width: 19px;
  }

  .mobile-menu {
    width: 90vw;
    padding: 17px;
  }

  .mobile-menu-brand img {
    width: 165px;
  }

  .mobile-link {
    padding: 14px 2px;

    font-size: 18px;
  }

}
body.menu-open {
  overflow: hidden;
}

/* =====================================
   HERO SECTION
===================================== */

.portfolio-hero {
  width: 100%;
  min-height: calc(100vh - 110px);

  padding: 45px 24px 60px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(221, 169, 0, 0.1),
      transparent 30%
    ),
    #f5f5f3;
}

.hero-container {
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;
  gap: 60px;
}


/* =====================================
   HERO LEFT CONTENT
===================================== */

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-greeting {
  margin-bottom: 20px;
}

.hero-greeting span {
  position: relative;
  display: inline-block;

  padding: 7px 13px;

  color: #333333;
  background: #ffffff;

  border: 1px solid #f2891a;

  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.hero-greeting span::before,
.hero-greeting span::after {
  content: "";

  position: absolute;

  width: 7px;
  height: 7px;

  background: #f2891a;
}

.hero-greeting span::before {
  top: -4px;
  left: -4px;
}

.hero-greeting span::after {
  right: -4px;
  bottom: -4px;
}

.hero-title {
  margin-bottom: 22px;

  color: #202020;

  font-size: clamp(42px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.hero-title span {
  color: #f2891a;
  font-weight: 500;
  font-style: italic;
}

.hero-description {
  max-width: 570px;
  margin-bottom: 30px;

  color: #696969;

  font-size: 15px;
  line-height: 1.8;
}


/* =====================================
   HERO BUTTONS
===================================== */

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn {
  min-height: 55px;
  padding: 6px 7px 6px 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

  color: #ffffff;
  background: #174f35;

  border: 2px solid #174f35;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.primary-btn-icon {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  color: #174f35;
  background: #ffffff;

  border-radius: 50%;

  font-size: 13px;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  background: #123f2a;

  box-shadow: 0 12px 25px rgba(23, 79, 53, 0.2);
}

.primary-btn:hover .primary-btn-icon {
  transform: translateX(3px);
  background: #dda900;
}

.secondary-btn {
  min-height: 55px;
  padding: 0 27px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #174f35;
  background: transparent;

  border: 2px solid #174f35;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.secondary-btn:hover {
  transform: translateY(-3px);

  color: #ffffff;
  background: #174f35;
}


/* =====================================
   HERO STATS
===================================== */

.hero-stats {
  margin-top: 38px;
  padding-top: 25px;

  display: flex;
  flex-wrap: wrap;
  gap: 30px;

  border-top: 1px solid #dededb;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-stat strong {
  color: #174f35;

  font-size: 22px;
  font-weight: 700;
}

.hero-stat span {
  color: #777777;

  font-size: 11px;
  font-weight: 500;
}


/* =====================================
   HERO IMAGE AREA
===================================== */

.hero-image-area {
  position: relative;

  min-height: 610px;

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-circle {
  position: absolute;

  top: 90px;
  left: 50%;

  width: 440px;
  height: 440px;

  transform: translateX(-50%);

  background: #f2891a;
  border-radius: 50%;
}

.hero-person-image {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 520px;
  height: 610px;

  object-fit: contain;
  object-position: bottom center;

  filter: drop-shadow(0 20px 18px rgba(0, 0, 0, 0.12));
}


/* =====================================
   FLOATING LABELS
===================================== */

.skill-label {
  position: absolute;
  z-index: 6;

  padding: 10px 20px;

  color: #ffffff;
  background: #174f35;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 500;

  box-shadow: 0 10px 25px rgba(23, 79, 53, 0.18);

  animation: floatingLabel 3.5s ease-in-out infinite;
}

.skill-label-one {
  left: -10px;
  bottom: 95px;
}

.skill-label-two {
  right: -15px;
  top: 260px;

  color: #174f35;
  background: #ffffff;

  animation-delay: 0.5s;
}

.skill-label-three {
  right: 25px;
  bottom: 40px;

  color: #174f35;
  background: #f2891a;

  animation-delay: 1s;
}

@keyframes floatingLabel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}


/* =====================================
   ROUND BADGE
===================================== */

.round-badge {
  position: absolute;

  top: 75px;
  right: 0;
  z-index: 7;

  width: 100px;
  height: 100px;

  display: grid;
  place-items: center;

  color: #ffffff;
  background: #174f35;

  border: 5px solid #f5f5f3;
  border-radius: 50%;

  box-shadow: 0 10px 24px rgba(23, 79, 53, 0.2);
}

.round-badge-text {
  position: absolute;

  width: 78%;
  height: 78%;

  display: grid;
  place-items: center;

  font-size: 7px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
  text-align: center;

  animation: badgeRotate 10s linear infinite;
}

.round-badge-icon {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  color: #174f35;
  background: #f2891a;

  border-radius: 50%;

  font-size: 18px;
  font-weight: 700;
}

@keyframes badgeRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* =====================================
   DECORATIVE ELEMENTS
===================================== */

.hero-line {
  position: absolute;

  left: 0;
  top: 250px;
  z-index: 2;

  width: 45px;
  height: 90px;

  border-left: 3px solid #174f35;
  border-radius: 50%;

  transform: rotate(10deg);
}

.hero-arrow {
  position: absolute;

  left: 25px;
  bottom: 150px;
  z-index: 5;

  width: 0;
  height: 0;

  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid #174f35;

  transform: rotate(-30deg);
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1050px) {

  .hero-container {
    gap: 30px;
  }

  .hero-image-area {
    min-height: 540px;
  }

  .hero-circle {
    width: 370px;
    height: 370px;
  }

  .hero-person-image {
    max-width: 460px;
    height: 540px;
  }

  .round-badge {
    right: 5px;

    width: 88px;
    height: 88px;
  }

  .skill-label-two {
    right: 0;
  }
}


/* =====================================
   MOBILE HEADER
===================================== */

@media (max-width: 980px) {

  .main-nav,
  .header-contact-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-container {
    min-height: 64px;
  }
}


/* =====================================
   MOBILE HERO
===================================== */

@media (max-width: 800px) {

  .portfolio-hero {
    padding: 40px 18px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: clamp(42px, 11vw, 58px);
    letter-spacing: -1.8px;
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-area {
    width: 100%;
    max-width: 570px;
    min-height: 520px;

    margin: 0 auto;
  }

  .hero-circle {
    top: 70px;

    width: 370px;
    height: 370px;
  }

  .hero-person-image {
    max-width: 450px;
    height: 520px;
  }

  .round-badge {
    top: 40px;
    right: 5%;
  }

  .skill-label-one {
    left: 2%;
  }

  .skill-label-two {
    right: 2%;
  }
}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 520px) {

  .site-header {
    padding: 14px 12px 0;
  }

  .header-container {
    padding: 7px 8px;
    border-width: 3px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .brand-name {
    font-size: 19px;
  }

  .portfolio-hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-greeting span {
    font-size: 12px;
  }

  .hero-title {
    margin-bottom: 18px;

    font-size: 40px;
    line-height: 1.12;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 310px;
  }

  .primary-btn {
    justify-content: space-between;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat {
    width: calc(50% - 10px);
  }

  .hero-image-area {
    min-height: 430px;
  }

  .hero-circle {
    top: 70px;

    width: 300px;
    height: 300px;
  }

  .hero-person-image {
    height: 430px;
  }

  .round-badge {
    top: 35px;
    right: 0;

    width: 76px;
    height: 76px;
  }

  .round-badge-text {
    font-size: 5px;
  }

  .round-badge-icon {
    width: 30px;
    height: 30px;

    font-size: 15px;
  }

  .skill-label {
    padding: 8px 13px;
    font-size: 10px;
  }

  .skill-label-one {
    left: 0;
    bottom: 65px;
  }

  .skill-label-two {
    right: 0;
    top: 210px;
  }

  .skill-label-three {
    right: 10px;
    bottom: 15px;
  }

  .hero-line {
    display: none;
  }
}
.brand{
    display:flex;
    align-items:center;
}

.logo-image{
    width:200px;
    height:auto;
    display:block;
    object-fit:contain;
}
/* =====================================
   HERO + MARQUEE SPACING FIX
===================================== */

/* Hero ke neeche extra spacing remove */
.portfolio-hero {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Image area ke neeche gap remove */
.hero-container,
.hero-image-area {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Shopify marquee */
.shopify-marquee-section {
  position: relative;
  z-index: 20;

  width: 100%;
  margin: 0;
  padding: 0;

  overflow: hidden;

  background: #f2891a;

  /* Upar aur neeche green line */
  border-top: 5px solid #174f35;
  border-bottom: 5px solid #174f35;
}

.shopify-marquee {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.shopify-marquee-track {
  width: max-content;
  min-height: 64px;

  display: flex;
  align-items: center;

  margin: 0;
  padding: 0;

  animation: shopifyMarqueeMove 28s linear infinite;
  will-change: transform;
}

.shopify-marquee-item {
  display: flex;
  align-items: center;
  gap: 42px;

  padding-left: 42px;

  color: #173e2b;

  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.marquee-star {
  color: #173e2b;
  font-size: 26px;
  line-height: 1;
}

@keyframes shopifyMarqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Hover pause */
.shopify-marquee:hover .shopify-marquee-track {
  animation-play-state: paused;
}

/* Mobile */
@media (max-width: 520px) {
  .shopify-marquee-section {
    border-top-width: 4px;
    border-bottom-width: 4px;
  }

  .shopify-marquee-track {
    min-height: 55px;
    animation-duration: 20s;
  }

  .shopify-marquee-item {
    gap: 25px;
    padding-left: 25px;
    font-size: 15px;
  }

  .marquee-star {
    font-size: 21px;
  }
}
/* =====================================
   SHOPIFY SERVICES SECTION
===================================== */

.services-section {
  width: 100%;
  padding: 95px 24px;
  background: #ffffff;
}

.services-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}


/* =====================================
   SERVICES TOP ROW
===================================== */

.services-top-row {
  margin-bottom: 38px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.services-heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-small-title {
  display: flex;
  align-items: center;
  gap: 9px;

  color: #343434;

  font-size: 14px;
  font-weight: 500;
}

.services-small-title span {
  width: 16px;
  height: 3px;

  display: inline-block;

  background: #f2891a;
  border-radius: 10px;
}

.services-title {
  color: #202020;

  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.services-title span {
  color: #f2891a;
  font-weight: 500;
  font-style: italic;
}


/* =====================================
   VIEW ALL SERVICES BUTTON
===================================== */

.services-view-btn {
  min-height: 48px;
  padding: 5px 6px 5px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  color: #ffffff;
  background: #174f35;

  border: 2px solid #f2891a;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.services-view-icon {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  color: #174f35;
  background: #ffffff;

  border-radius: 50%;

  font-size: 18px;
  font-weight: 700;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.services-view-btn:hover {
  transform: translateY(-3px);
  background: #123f2a;

  box-shadow: 0 12px 25px rgba(23, 79, 53, 0.2);
}

.services-view-btn:hover .services-view-icon {
  transform: translateX(3px);
  background: #f2891a;
}


/* =====================================
   SERVICES GRID
===================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


/* =====================================
   SERVICE CARD
===================================== */

.service-card {
  min-height: 270px;
  padding: 28px;

  display: flex;
  flex-direction: column;

  position: relative;
  overflow: hidden;

  background: #f7f7f5;

  border: 1px solid #eeeeea;
  border-radius: 20px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.service-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: #f2891a;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);

  background: #ffffff;
  border-color: rgba(221, 169, 0, 0.35);

  box-shadow: 0 18px 45px rgba(20, 50, 36, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}


/* =====================================
   SERVICE ICON
===================================== */

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;

  display: grid;
  place-items: center;

  color: #174f35;
  background: #ffffff;

  border: 1px solid #eeeeea;
  border-radius: 16px;

  font-size: 26px;

  box-shadow: 0 8px 18px rgba(20, 50, 36, 0.06);

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(-5deg) scale(1.05);
  background: #fff7d6;
}


/* =====================================
   SERVICE CONTENT
===================================== */

.service-card h3 {
  margin-bottom: 12px;

  color: #252525;

  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.service-card p {
  margin-bottom: 22px;

  color: #777777;

  font-size: 14px;
  line-height: 1.7;
}

.service-link {
  margin-top: auto;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #174f35;

  font-size: 13px;
  font-weight: 600;
}

.service-link span {
  color: #f2891a;

  font-size: 18px;
  line-height: 1;

  transition: transform 0.3s ease;
}

.service-link:hover span {
  transform: translateX(5px);
}


/* =====================================
   TABLET RESPONSIVE
===================================== */

@media (max-width: 900px) {

  .services-section {
    padding: 75px 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

}


/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 620px) {

  .services-section {
    padding: 60px 14px;
  }

  .services-top-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .services-title {
    font-size: 36px;
  }

  .services-view-btn {
    align-self: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 250px;
    padding: 24px;
  }

}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 420px) {

  .services-title {
    font-size: 32px;
  }

  .services-view-btn {
    width: 100%;
    max-width: 230px;

    justify-content: space-between;
  }

  .service-card h3 {
    font-size: 19px;
  }

}
.service-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    border-radius:18px;
    overflow:hidden; /* Important */
}

.service-icon img{
    width:80%;
    height:80%;
    object-fit:contain;
    display:block;
}
/* =====================================
   ABOUT SECTION
===================================== */

.about-section {
  width: 100%;
  padding: 100px 24px;

  background: #174f35;
  overflow: hidden;
}

.about-container {
  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;
  gap: 80px;
}


/* =====================================
   ABOUT IMAGE AREA
===================================== */

.about-image-area {
  position: relative;

  min-height: 560px;

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-circle {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 450px;
  height: 450px;

  transform: translate(-50%, -50%);

  background: #f2891a;
  border-radius: 50%;

  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}

.about-person-image {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 480px;
  height: 560px;

  object-fit: contain;
  object-position: bottom center;

  display: block;

  filter: drop-shadow(0 20px 18px rgba(0, 0, 0, 0.18));
}


/* =====================================
   FLOATING TAGS
===================================== */

.about-tag {
  position: absolute;
  z-index: 5;

  padding: 9px 15px;

  color: #174f35;
  background: #f2891a;

  border: 3px solid #174f35;
  border-radius: 999px;

  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);

  animation: aboutTagFloat 3.5s ease-in-out infinite;
}

.tag-one {
  left: 16%;
  bottom: 150px;
}

.tag-two {
  left: 4%;
  bottom: 100px;
  animation-delay: 0.4s;
}

.tag-three {
  left: 27%;
  bottom: 60px;
  animation-delay: 0.8s;
}

.tag-four {
  right: 8%;
  bottom: 100px;
  animation-delay: 1.2s;
}

.tag-five {
  right: 15%;
  bottom: 155px;
  animation-delay: 1.6s;
}

@keyframes aboutTagFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}


/* =====================================
   ABOUT CONTENT
===================================== */

.about-content {
  position: relative;
  z-index: 5;
}

.about-small-heading {
  margin-bottom: 14px;

  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 14px;
  font-weight: 500;
}

.about-small-heading span {
  width: 18px;
  height: 3px;

  display: inline-block;

  background: #f2891a;
  border-radius: 20px;
}

.about-title {
  margin-bottom: 22px;

  color: #ffffff;

  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.8px;
}

.about-title span {
  color: #f2891a;

  font-weight: 500;
  font-style: italic;
}

.about-description {
  max-width: 590px;
  margin-bottom: 34px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 15px;
  line-height: 1.8;
}


/* =====================================
   ABOUT STATS
===================================== */

.about-stats {
  margin-bottom: 38px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-stat strong {
  color: #f2891a;

  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.about-stat span {
  color: rgba(255, 255, 255, 0.7);

  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}


/* =====================================
   ABOUT BUTTONS
===================================== */

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.about-primary-btn {
  min-height: 54px;
  padding: 6px 7px 6px 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  color: #ffffff;
  background: transparent;

  border: 2px solid #f2891a;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.about-primary-btn span {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  color: #174f35;
  background: #ffffff;

  border-radius: 50%;

  font-size: 18px;
  font-weight: 700;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.about-primary-btn:hover {
  color: #174f35;
  background: #f2891a;

  transform: translateY(-3px);
}

.about-primary-btn:hover span {
  transform: translateY(3px);
}

.about-secondary-btn {
  min-height: 54px;
  padding: 0 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #174f35;
  background: #ffffff;

  border: 2px solid #ffffff;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.about-secondary-btn:hover {
  transform: translateY(-3px);

  color: #174f35;
  background: #f2891a;
  border-color: #f2891a;
}


/* =====================================
   TABLET RESPONSIVE
===================================== */

@media (max-width: 960px) {

  .about-section {
    padding: 80px 20px;
  }

  .about-container {
    gap: 40px;
  }

  .about-image-area {
    min-height: 480px;
  }

  .about-circle {
    width: 380px;
    height: 380px;
  }

  .about-person-image {
    max-width: 420px;
    height: 480px;
  }

  .about-stats {
    gap: 16px;
  }

  .about-stat strong {
    font-size: 31px;
  }

}


/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 760px) {

  .about-section {
    padding: 70px 16px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-image-area {
    order: 2;

    width: 100%;
    max-width: 560px;
    min-height: 500px;

    margin: 0 auto;
  }

  .about-content {
    order: 1;
    text-align: center;
  }

  .about-small-heading {
    justify-content: center;
  }

  .about-description {
    margin-right: auto;
    margin-left: auto;
  }

  .about-stats {
    max-width: 550px;
    margin-right: auto;
    margin-left: auto;
  }

  .about-actions {
    justify-content: center;
  }

  .about-circle {
    width: 390px;
    height: 390px;
  }

  .about-person-image {
    max-width: 440px;
    height: 500px;
  }

}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 520px) {

  .about-section {
    padding: 60px 14px;
  }

  .about-title {
    font-size: 38px;
  }

  .about-description {
    font-size: 14px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-stat {
    align-items: center;
  }

  .about-actions {
    flex-direction: column;
  }

  .about-primary-btn,
  .about-secondary-btn {
    width: 100%;
    max-width: 300px;
  }

  .about-primary-btn {
    justify-content: space-between;
  }

  .about-image-area {
    min-height: 430px;
  }

  .about-circle {
    width: 310px;
    height: 310px;
  }

  .about-person-image {
    height: 430px;
  }

  .about-tag {
    padding: 7px 11px;

    font-size: 9px;
    border-width: 2px;
  }

  .tag-one {
    left: 8%;
    bottom: 120px;
  }

  .tag-two {
    left: 0;
    bottom: 80px;
  }

  .tag-three {
    left: 25%;
    bottom: 42px;
  }

  .tag-four {
    right: 0;
    bottom: 80px;
  }

  .tag-five {
    right: 6%;
    bottom: 125px;
  }

}
.services-heading-wrap{
  margin-bottom:8px;
}

.services-title{
  margin-bottom:0;
  line-height:1;
}

.services-grid{
  margin-top:0;
}
/* =========================================
   PORTFOLIO PROJECTS SECTION
========================================== */

.projects-section {
  width: 100%;
  margin: 0;
  padding: 90px 24px;
  background: #f5f5f2;
}

.projects-container {
  width: min(1380px, 100%);
  margin: 0 auto;
}


/* =========================================
   PROJECTS HEADING
========================================== */

.projects-heading {
  max-width: 750px;
  margin: 0 0 38px;
}

.projects-label {
  margin-bottom: 12px;

  display: flex;
  align-items: center;
  gap: 10px;

  color: #242424;

  font-size: 14px;
  font-weight: 500;
}

.projects-label span {
  width: 23px;
  height: 4px;

  display: inline-block;

  background: #F2891A;
  border-radius: 50px;
}

.projects-title {
  margin: 0 0 15px;

  color: #202020;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2.8px;
}

.projects-title em {
  color: #F2891A;

  font-weight: 500;
  font-style: italic;
}

.projects-description {
  max-width: 700px;
  margin: 0;

  color: #747474;

  font-size: 15px;
  line-height: 1.8;
}


/* =========================================
   4 PROJECTS PER ROW
========================================== */

.projects-grid {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}


/* =========================================
   PROJECT CARD
========================================== */

.project-card {
  min-width: 0;

  display: flex;
  flex-direction: column;

  position: relative;
  overflow: hidden;

  opacity: 1;
  visibility: visible;
  transform: none;

  background: #ffffff;

  border: 1px solid #e5e5df;
  border-radius: 22px;

  box-shadow: 0 12px 30px rgba(20, 50, 36, 0.07);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.project-card:hover {
  transform: translateY(-7px);

  border-color: rgba(242, 137, 26, 0.48);

  box-shadow: 0 22px 45px rgba(20, 50, 36, 0.14);
}


/* =========================================
   PROJECT IMAGE
========================================== */

.project-image-link {
  width: 100%;
  display: block;
}

.project-image-box {
  position: relative;

  width: 100%;
  height: 230px;

  overflow: hidden;

  background: #e9e9e5;
}

.project-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: top center;

  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.project-card:hover .project-image {
  transform: scale(1.06);
  filter: brightness(0.72);
}


/* =========================================
   PROJECT HOVER OVERLAY
========================================== */

.project-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  opacity: 0;

  background: rgba(19, 76, 51, 0.34);

  transition: opacity 0.35s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay span {
  padding: 10px 14px;

  color: #174f35;
  background: #ffffff;

  border-radius: 999px;

  font-size: 11px;
  font-weight: 600;

  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.project-overlay strong {
  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  color: #174f35;
  background: #F2891A;

  border-radius: 50%;

  font-size: 18px;

  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.project-card:hover .project-overlay span,
.project-card:hover .project-overlay strong {
  transform: translateY(0);
}


/* =========================================
   PROJECT CONTENT
========================================== */

.project-content {
  flex: 1;
  padding: 19px;

  display: flex;
  flex-direction: column;
}

.project-tags {
  margin-bottom: 15px;

  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-tags span {
  padding: 6px 8px;

  color: #174f35;
  background: #fff7db;

  border: 1px solid rgba(221, 169, 0, 0.3);
  border-radius: 999px;

  font-size: 8px;
  font-weight: 600;
  line-height: 1;
}

.project-number {
  margin: 0 0 7px;

  color: #9a9a9a;

  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.project-bottom {
  margin-top: auto;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.project-card h3 {
  margin: 0;

  color: #222222;

  font-size: 18px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.4px;
}


/* =========================================
   PROJECT ARROW
========================================== */

.project-arrow {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;
  flex-shrink: 0;

  color: #ffffff;
  background: #174f35;

  border: 2px solid #174f35;
  border-radius: 50%;

  font-size: 17px;
  font-weight: 700;

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.project-arrow:hover {
  transform: rotate(45deg);

  color: #174f35;
  background: #F2891A;
  border-color: #F2891A;
}


/* =========================================
   LAST PROJECT CARD
========================================== */

/*
  Total 9 projects hain. Last card normally third row ke
  first column mein show hoga. Isko left side par natural
  grid position mein rakha gaya hai.
*/

.project-card:last-child {
  grid-column: auto;
  width: 100%;
}


/* =========================================
   SMALL DESKTOP
========================================== */

@media (max-width: 1150px) {

  .projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-image-box {
    height: 245px;
  }

}


/* =========================================
   TABLET
========================================== */

@media (max-width: 850px) {

  .projects-section {
    padding: 75px 20px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .project-image-box {
    height: 260px;
  }

  .project-card h3 {
    font-size: 20px;
  }

}


/* =========================================
   MOBILE
========================================== */

@media (max-width: 580px) {

  .projects-section {
    padding: 60px 14px;
  }

  .projects-heading {
    margin-bottom: 28px;
  }

  .projects-title {
    font-size: 39px;
    letter-spacing: -1.5px;
  }

  .projects-description {
    font-size: 14px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .project-card {
    border-radius: 20px;
  }

  .project-image-box {
    height: 260px;
  }

  .project-content {
    padding: 20px;
  }

  .project-card h3 {
    font-size: 21px;
  }

}


/* =========================================
   SMALL MOBILE
========================================== */

@media (max-width: 390px) {

  .projects-title {
    font-size: 34px;
  }

  .project-image-box {
    height: 225px;
  }

  .project-card h3 {
    font-size: 19px;
  }

}
.project-image-box{height:auto!important;min-height:0!important;aspect-ratio:auto!important}.project-image{display:block!important;width:100%!important;height:auto!important;object-fit:unset!important}.project-image-link{display:block!important;line-height:0!important}
/* =====================================
   CONTACT SECTION
===================================== */

.contact-section {
  width: 100%;
  padding: 100px 24px;
  background: #ffffff;
}

.contact-container {
  width: min(1240px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(500px, 1.35fr);
  align-items: start;
  gap: 85px;
}


/* =====================================
   LEFT CONTENT
===================================== */

.contact-info {
  max-width: 430px;
}

.contact-label {
  margin-bottom: 15px;

  display: flex;
  align-items: center;
  gap: 9px;

  color: #474747;

  font-size: 14px;
  font-weight: 600;
}

.contact-label span {
  width: 15px;
  height: 3px;

  display: block;

  background: #F2891A;
  border-radius: 100px;
}

.contact-title {
  margin: 0 0 20px;

  color: #242424;

  font-size: clamp(39px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2.2px;
}

.contact-title em {
  display: block;

  color: #F2891A;

  font-weight: 500;
  font-style: italic;
}

.contact-description {
  max-width: 390px;
  margin: 0 0 34px;

  color: #828282;

  font-size: 15px;
  line-height: 1.7;
}


/* =====================================
   CONTACT DETAILS
===================================== */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 13px;

  color: #666666;

  font-size: 14px;
  line-height: 1.45;

  text-decoration: none;

  transition: color 0.25s ease;
}

a.contact-detail:hover {
  color: #174f35;
}

.contact-icon {
  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;
  flex-shrink: 0;

  color: #174f35;
  background: #F2891A;

  border-radius: 50%;

  box-shadow: 0 7px 18px rgba(246, 180, 0, 0.2);
}

.contact-icon svg {
  width: 18px;
  height: 18px;

  fill: currentColor;
}

.contact-icon-text {
  font-size: 16px;
  font-weight: 800;
}


/* =====================================
   FORM
===================================== */

.contact-form-wrapper {
  width: 100%;
}

.contact-form {
  width: 100%;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.contact-field {
  min-width: 0;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  margin: 0 0 8px;

  display: block;

  color: #4b4b4b;

  font-size: 13px;
  font-weight: 600;
}

.contact-field label span {
  color: #F2891A;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;

  color: #333333;
  background: #f5f5f5;

  border: 1px solid transparent;
  border-radius: 11px;
  outline: none;

  font-family: inherit;
  font-size: 13px;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-field input,
.contact-field select {
  height: 52px;
  padding: 0 16px;
}

.contact-field textarea {
  min-height: 170px;
  padding: 16px;

  display: block;

  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #adadad;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  background: #ffffff;
  border-color: #F2891A;

  box-shadow: 0 0 0 4px rgba(238, 176, 0, 0.12);
}


/* =====================================
   SELECT ARROW
===================================== */

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 18px;

  width: 7px;
  height: 7px;

  pointer-events: none;

  border-right: 2px solid #7f7f7f;
  border-bottom: 2px solid #7f7f7f;

  transform: translateY(-70%) rotate(45deg);
}

.contact-field select {
  padding-right: 44px;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
}


/* =====================================
   VALIDATION
===================================== */

.contact-field.has-error input,
.contact-field.has-error select,
.contact-field.has-error textarea {
  border-color: #F2891A;
  background: #fffafa;

  box-shadow: 0 0 0 3px rgba(216, 68, 68, 0.09);
}

.field-error {
  min-height: 15px;
  margin-top: 5px;

  display: block;

  color: #F2891A;

  font-size: 10px;
  line-height: 1.4;
}


/* =====================================
   SUBMIT BUTTON
===================================== */

.contact-submit-area {
  margin-top: 19px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-submit-btn {
  min-width: 139px;
  height: 52px;
  padding: 4px 5px 4px 20px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  cursor: pointer;

  color: #ffffff;
  background: #174f35;

  border: 2px solid #F2891A;
  border-radius: 999px;

  font-family: inherit;
  font-size: 12px;
  font-weight: 600;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  background: #103f2a;

  box-shadow: 0 10px 24px rgba(23, 79, 53, 0.2);
}

.contact-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.submit-arrow {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  color: #174f35;
  background: #ffffff;

  border-radius: 50%;

  font-size: 19px;

  transition: transform 0.25s ease;
}

.contact-submit-btn:hover .submit-arrow {
  transform: rotate(-35deg);
}

.contact-form-status {
  margin: 0;

  font-size: 12px;
  font-weight: 600;
}

.contact-form-status.success {
  color: #17804b;
}

.contact-form-status.error {
  color: #F2891A;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 950px) {

  .contact-section {
    padding: 80px 22px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-info {
    max-width: 680px;
  }

  .contact-description {
    max-width: 620px;
  }

  .contact-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 640px) {

  .contact-section {
    padding: 65px 15px;
  }

  .contact-container {
    gap: 43px;
  }

  .contact-title {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .contact-description {
    margin-bottom: 27px;

    font-size: 14px;
  }

  .contact-details {
    display: flex;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-field-full {
    grid-column: auto;
  }

  .contact-field input,
  .contact-field select {
    height: 50px;
  }

  .contact-field textarea {
    min-height: 150px;
  }

  .contact-submit-area {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-submit-btn {
    width: 100%;
  }

}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 390px) {

  .contact-title {
    font-size: 35px;
  }

  .contact-icon {
    width: 37px;
    height: 37px;
  }

}
/* =========================================
   CLIENT TESTIMONIALS
========================================= */

.client-reviews {
  width: 100%;
  padding: 90px 20px;
  overflow: hidden;
  background: #f7f7f4;
}

.client-reviews__container {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.client-reviews__heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.client-reviews__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #555;
  font-size: 13px;
  font-weight: 600;
}

.client-reviews__eyebrow::before {
  content: "";
  width: 18px;
  height: 3px;
  background: #F2891A;
  border-radius: 999px;
}

.client-reviews__heading h2 {
  margin: 0;
  color: #202020;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.client-reviews__heading h2 em {
  display: block;
  color: #F2891A;
  font-weight: 500;
  font-style: italic;
}

.client-reviews__heading p {
  max-width: 610px;
  margin: 16px auto 0;
  color: #777;
  font-size: 15px;
  line-height: 1.7;
}

.client-reviews__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-reviews__viewport {
  width: 100%;
  overflow: hidden;
}

.client-reviews__track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.client-review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  padding: 30px;
  background: #fff;
  border: 1px solid #ecece8;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(28, 52, 41, 0.07);
}

.client-review-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.client-review-card__rating span {
  color: #F2891A;
  font-size: 17px;
  letter-spacing: 2px;
}

.client-review-card__rating strong {
  color: #777;
  font-size: 13px;
}

.client-review-card__text {
  min-height: 132px;
  margin: 0 0 26px;
  color: #747474;
  font-size: 15px;
  line-height: 1.8;
}

.client-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-review-card__avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  background: #174f35;
  border: 3px solid #F2891A;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

.client-review-card__author h3 {
  margin: 0 0 4px;
  color: #222;
  font-size: 15px;
}

.client-review-card__author p {
  margin: 0;
  color: #9a9a9a;
  font-size: 12px;
}

.client-reviews__arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.25s ease;
}

.client-reviews__arrow--prev {
  color: #fff;
  background: #174f35;
}

.client-reviews__arrow--next {
  color: #174f35;
  background: #F2891A;
}

.client-reviews__arrow:hover {
  transform: translateY(-2px);
}

.client-reviews__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 30px;
}

.client-reviews__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  background: #c9c9c3;
  border: 0;
  border-radius: 999px;
  transition: 0.25s ease;
}

.client-reviews__dot.is-active {
  width: 24px;
  background: #F2891A;
}

@media (max-width: 980px) {
  .client-review-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 650px) {
  .client-reviews {
    padding: 65px 14px;
  }

  .client-reviews__heading {
    margin-bottom: 32px;
  }

  .client-reviews__heading h2 {
    font-size: 38px;
  }

  .client-reviews__slider {
    gap: 8px;
  }

  .client-review-card {
    flex-basis: 100%;
    padding: 24px 20px;
  }

  .client-review-card__text {
    min-height: auto;
    font-size: 14px;
  }

  .client-reviews__arrow {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}
/* =========================================
   CLIENT TESTIMONIALS SECTION
========================================== */

.portfolio-testimonials {
  width: 100%;
  padding: 95px 24px;
  overflow: hidden;
  background: #f7f7f4;
}

.portfolio-testimonials__container {
  width: min(1350px, 100%);
  margin: 0 auto;
}


/* =========================================
   HEADING
========================================== */

.portfolio-testimonials__heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.portfolio-testimonials__label {
  margin-bottom: 13px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  color: #505050;

  font-size: 14px;
  font-weight: 600;
}

.portfolio-testimonials__label span {
  width: 18px;
  height: 3px;

  display: inline-block;

  background: #F2891A;
  border-radius: 999px;
}

.portfolio-testimonials__title {
  margin: 0;

  color: #202020;

  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2.4px;
}

.portfolio-testimonials__title em {
  display: block;

  color: #F2891A;

  font-weight: 500;
  font-style: italic;
}

.portfolio-testimonials__description {
  max-width: 620px;
  margin: 17px auto 0;

  color: #777777;

  font-size: 15px;
  line-height: 1.7;
}


/* =========================================
   SLIDER
========================================== */

.portfolio-testimonials__slider {
  position: relative;

  width: 100%;

  display: flex;
  align-items: center;
  gap: 14px;
}

.portfolio-testimonials__viewport {
  width: 100%;
  min-width: 0;

  overflow: hidden;

  touch-action: pan-y;
  cursor: grab;
}

.portfolio-testimonials__viewport.is-dragging {
  cursor: grabbing;
}

.portfolio-testimonials__track {
  width: 100%;

  display: flex;
  align-items: stretch;
  gap: 22px;

  transform: translate3d(0, 0, 0);

  transition: transform 0.5s cubic-bezier(.22, .61, .36, 1);

  will-change: transform;
}


/* =========================================
   TESTIMONIAL CARD
========================================== */

.portfolio-testimonial-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  min-height: 355px;
  padding: 30px;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid #e9e9e5;
  border-radius: 22px;

  box-shadow: 0 16px 38px rgba(25, 55, 41, 0.07);
}


/* =========================================
   RATING
========================================== */

.portfolio-testimonial-card__rating {
  margin-bottom: 20px;

  display: flex;
  align-items: center;
  gap: 10px;
}

.portfolio-testimonial-card__stars {
  color: #F2891A;

  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.portfolio-testimonial-card__rating strong {
  color: #787878;

  font-size: 13px;
  font-weight: 700;
}


/* =========================================
   REVIEW
========================================== */

.portfolio-testimonial-card__review {
  margin: 0 0 28px;

  color: #707070;

  font-size: 15px;
  line-height: 1.8;
}


/* =========================================
   AUTHOR
========================================== */

.portfolio-testimonial-card__author {
  margin-top: auto;

  display: flex;
  align-items: center;
  gap: 12px;
}

.portfolio-testimonial-card__avatar {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;
  flex-shrink: 0;

  color: #ffffff;
  background: #174f35;

  border: 3px solid #F2891A;
  border-radius: 50%;

  font-size: 16px;
  font-weight: 700;
}

.portfolio-testimonial-card__author h3 {
  margin: 0 0 4px;

  color: #272727;

  font-size: 15px;
  font-weight: 700;
}

.portfolio-testimonial-card__author p {
  margin: 0;

  color: #999999;

  font-size: 12px;
}


/* =========================================
   ARROW BUTTONS
========================================== */

.portfolio-testimonials__button {
  width: 46px;
  height: 46px;

  padding: 0;

  display: grid;
  place-items: center;
  flex: 0 0 46px;

  cursor: pointer;

  border: 0;
  border-radius: 50%;

  font-family: inherit;
  font-size: 19px;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.portfolio-testimonials__button--previous {
  color: #ffffff;
  background: #174f35;
}

.portfolio-testimonials__button--next {
  color: #174f35;
  background: #F2891A;
}

.portfolio-testimonials__button:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 22px rgba(23, 79, 53, 0.18);
}

.portfolio-testimonials__button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}


/* =========================================
   DOTS
========================================== */

.portfolio-testimonials__dots {
  margin-top: 32px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.portfolio-testimonials__dot {
  width: 8px;
  height: 8px;
  padding: 0;

  cursor: pointer;

  background: #cacac5;

  border: 0;
  border-radius: 999px;

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.portfolio-testimonials__dot.is-active {
  width: 26px;
  background: #F2891A;
}


/* =========================================
   TABLET
========================================== */

@media (max-width: 980px) {

  .portfolio-testimonials {
    padding: 80px 20px;
  }

  .portfolio-testimonial-card {
    flex-basis: calc((100% - 22px) / 2);
  }

}


/* =========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

  .portfolio-testimonials {
    padding: 65px 14px;
  }

  .portfolio-testimonials__heading {
    margin-bottom: 34px;
  }

  .portfolio-testimonials__title {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .portfolio-testimonials__description {
    font-size: 14px;
  }

  .portfolio-testimonials__slider {
    gap: 7px;
  }

  .portfolio-testimonials__track {
    gap: 14px;
  }

  .portfolio-testimonial-card {
    flex-basis: 100%;
    min-height: auto;
    padding: 24px 20px;

    border-radius: 19px;
  }

  .portfolio-testimonial-card__review {
    font-size: 14px;
    line-height: 1.75;
  }

  .portfolio-testimonials__button {
    width: 38px;
    height: 38px;
    flex-basis: 38px;

    font-size: 17px;
  }

}


/* =========================================
   SMALL MOBILE
========================================== */

@media (max-width: 390px) {

  .portfolio-testimonials__title {
    font-size: 34px;
  }

  .portfolio-testimonials__button {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .portfolio-testimonial-card {
    padding: 22px 18px;
  }

}
/* =========================================
   PORTFOLIO FAQ SECTION
========================================== */

.portfolio-faq {
  width: 100%;
  padding: 95px 24px;

  background: #1b5639;
}

.portfolio-faq__container {
  width: min(1080px, 100%);
  margin: 0 auto;
}


/* =========================================
   FAQ HEADING
========================================== */

.portfolio-faq__heading {
  max-width: 700px;
  margin: 0 auto 42px;

  text-align: center;
}

.portfolio-faq__label {
  margin-bottom: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 13px;
  font-weight: 600;
}

.portfolio-faq__label span {
  width: 18px;
  height: 3px;

  display: inline-block;

  background: #F2891A;
  border-radius: 999px;
}

.portfolio-faq__title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2.3px;
}

.portfolio-faq__title em {
  color: #F2891A;

  font-weight: 500;
  font-style: italic;
}

.portfolio-faq__description {
  max-width: 590px;
  margin: 17px auto 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;
  line-height: 1.7;
}


/* =========================================
   ACCORDION
========================================== */

.portfolio-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* =========================================
   FAQ ITEM
========================================== */

.portfolio-faq__item {
  overflow: hidden;

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.portfolio-faq__item:hover {
  transform: translateY(-1px);

  background: rgba(255, 255, 255, 0.14);
}

.portfolio-faq__item.is-open {
  background: #F2891A;
  border-color: #F2891A;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.13);
}


/* =========================================
   QUESTION BUTTON
========================================== */

.portfolio-faq__question {
  width: 100%;
  padding: 18px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  cursor: pointer;

  color: #ffffff;
  background: transparent;

  border: 0;
  outline: none;

  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.portfolio-faq__item.is-open .portfolio-faq__question {
  color: #173f2e;
}

.portfolio-faq__icon {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;
  flex-shrink: 0;

  color: #ffffff;

  border-radius: 50%;

  font-size: 22px;
  font-weight: 400;
  line-height: 1;

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.portfolio-faq__item.is-open .portfolio-faq__icon {
  color: #173f2e;
  background: rgba(255, 255, 255, 0.28);
}


/* =========================================
   ANSWER
========================================== */

.portfolio-faq__answer {
  max-height: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.38s ease,
    opacity 0.3s ease;
}

.portfolio-faq__item.is-open .portfolio-faq__answer {
  opacity: 1;
}

.portfolio-faq__answer-inner {
  padding: 0 64px 20px 20px;

  color: rgba(23, 63, 46, 0.84);

  font-size: 13px;
  line-height: 1.7;
}


/* =========================================
   TABLET
========================================== */

@media (max-width: 800px) {

  .portfolio-faq {
    padding: 78px 20px;
  }

  .portfolio-faq__heading {
    margin-bottom: 35px;
  }

}


/* =========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .portfolio-faq {
    padding: 65px 14px;
  }

  .portfolio-faq__title {
    font-size: 39px;
    letter-spacing: -1.5px;
  }

  .portfolio-faq__description {
    font-size: 13px;
  }

  .portfolio-faq__accordion {
    gap: 8px;
  }

  .portfolio-faq__question {
    padding: 16px 15px;

    font-size: 14px;
  }

  .portfolio-faq__icon {
    width: 25px;
    height: 25px;

    font-size: 20px;
  }

  .portfolio-faq__answer-inner {
    padding: 0 48px 18px 15px;

    font-size: 12px;
  }

}


/* =========================================
   SMALL MOBILE
========================================== */

@media (max-width: 390px) {

  .portfolio-faq__title {
    font-size: 34px;
  }

  .portfolio-faq__question {
    font-size: 13px;
  }

}
/* =========================================
   PORTFOLIO FOOTER
========================================== */

.portfolio-footer {
  position: relative;
  width: 100%;
  background: #ffffff;
}

.portfolio-footer__container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 60px;
}


/* =========================================
   FOOTER HEADING
========================================== */

.portfolio-footer__heading-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.portfolio-footer__heading {
  margin: 0;

  color: #202020;

  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2.6px;
}

.portfolio-footer__heading em {
  color: #F2891A;

  font-weight: 500;
  font-style: italic;
}

.portfolio-footer__whatsapp {
  min-width: 225px;
  padding: 7px 7px 7px 20px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  color: #ffffff;
  background: #175638;

  border: 2px solid #F2891A;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.portfolio-footer__whatsapp strong {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  color: #175638;
  background: #ffffff;

  border-radius: 50%;

  font-size: 18px;

  transition: transform 0.25s ease;
}

.portfolio-footer__whatsapp:hover {
  transform: translateY(-3px);
  background: #10472e;

  box-shadow: 0 12px 28px rgba(23, 86, 56, 0.18);
}

.portfolio-footer__whatsapp:hover strong {
  transform: rotate(-35deg);
}

.portfolio-footer__divider {
  width: 100%;
  height: 1px;
  margin: 32px 0 42px;

  background: #e9e9e4;
}


/* =========================================
   FOOTER GRID
========================================== */

.portfolio-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1.1fr;
  gap: 55px;
}

.portfolio-footer__column {
  min-width: 0;
}

.portfolio-footer__column h3 {
  margin: 0 0 20px;

  color: #F2891A;

  font-size: 14px;
  font-weight: 700;
}

.portfolio-footer__about p,
.portfolio-footer__newsletter-text {
  margin: 0;

  color: #767676;

  font-size: 13px;
  line-height: 1.75;
}


/* =========================================
   FOOTER LOGO
========================================== */

.portfolio-footer__brand {
  margin-bottom: 20px;

  display: inline-flex;
  align-items: center;
}

.portfolio-footer__brand img {
  width: 215px;
  height: auto;

  display: block;
}


/* =========================================
   SOCIAL ICONS
========================================== */

.portfolio-footer__socials {
  margin-top: 24px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.portfolio-footer__socials a {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  color: #175638;
  background: #F2891A;

  border-radius: 50%;

  font-size: 12px;
  font-weight: 800;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

.portfolio-footer__socials a:hover {
  transform: translateY(-3px);

  color: #ffffff;
  background: #175638;
}


/* =========================================
   NAVIGATION LINKS
========================================== */

.portfolio-footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.portfolio-footer__links a {
  width: fit-content;

  color: #686868;

  font-size: 13px;
  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.portfolio-footer__links a:hover {
  color: #175638;
  transform: translateX(4px);
}


/* =========================================
   CONTACT DETAILS
========================================== */

.portfolio-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.portfolio-footer__contact-list a,
.portfolio-footer__contact-list div {
  display: flex;
  flex-direction: column;
  gap: 5px;

  color: #6f6f6f;

  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

.portfolio-footer__contact-list span {
  color: #9a9a9a;

  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.portfolio-footer__contact-list a:hover {
  color: #175638;
}


/* =========================================
   NEWSLETTER
========================================== */

.portfolio-footer__newsletter-text {
  margin-bottom: 17px;
}

.portfolio-footer__newsletter {
  width: 100%;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #f3f3f1;

  border: 1px solid transparent;
  border-radius: 10px;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.portfolio-footer__newsletter:focus-within {
  border-color: #F2891A;

  box-shadow: 0 0 0 4px rgba(242, 170, 0, 0.12);
}

.portfolio-footer__newsletter input {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 15px;

  color: #333333;
  background: transparent;

  border: 0;
  outline: none;

  font-family: inherit;
  font-size: 12px;
}

.portfolio-footer__newsletter input::placeholder {
  color: #a4a4a4;
}

.portfolio-footer__newsletter button {
  width: 44px;
  height: 44px;
  margin-right: 3px;

  display: grid;
  place-items: center;
  flex-shrink: 0;

  cursor: pointer;

  color: #ffffff;
  background: #175638;

  border: 0;
  border-radius: 8px;

  font-family: inherit;
  font-size: 17px;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.portfolio-footer__newsletter button:hover {
  transform: translateX(2px);
  background: #F2891A;
}

.portfolio-footer__newsletter-status {
  min-height: 18px;
  margin: 7px 0 0;

  font-size: 11px;
  line-height: 1.4;
}

.portfolio-footer__newsletter-status.success {
  color: #177648;
}

.portfolio-footer__newsletter-status.error {
  color: #cf4040;
}


/* =========================================
   FOOTER BOTTOM
========================================== */

.portfolio-footer__bottom {
  width: 100%;
  padding: 18px 20px;

  color: rgba(255, 255, 255, 0.77);
  background: #175638;
}

.portfolio-footer__bottom-inner {
  width: min(1320px, 100%);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.portfolio-footer__bottom p {
  margin: 0;

  font-size: 11px;
}

.portfolio-footer__legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-footer__legal a {
  color: rgba(255, 255, 255, 0.77);

  font-size: 11px;
  text-decoration: none;

  transition: color 0.25s ease;
}

.portfolio-footer__legal a:hover {
  color: #F2891A;
}


/* =========================================
   SCROLL TO TOP
========================================== */

.portfolio-footer__scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;

  width: 46px;
  height: 46px;
  padding: 0;

  display: grid;
  place-items: center;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  color: #175638;
  background: #F2891A;

  border: 0;
  border-radius: 50%;

  box-shadow: 0 12px 25px rgba(23, 86, 56, 0.18);

  font-size: 18px;
  font-weight: 700;

  transform: translateY(12px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.portfolio-footer__scroll-top.is-visible {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.portfolio-footer__scroll-top:hover {
  transform: translateY(-3px);
}


/* =========================================
   TABLET
========================================== */

@media (max-width: 980px) {

  .portfolio-footer__container {
    padding-top: 70px;
  }

  .portfolio-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 35px;
  }

}


/* =========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

  .portfolio-footer__container {
    width: calc(100% - 28px);
    padding: 60px 0 45px;
  }

  .portfolio-footer__heading-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .portfolio-footer__heading {
    font-size: 41px;
    letter-spacing: -1.6px;
  }

  .portfolio-footer__whatsapp {
    width: 100%;
  }

  .portfolio-footer__divider {
    margin: 27px 0 34px;
  }

  .portfolio-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .portfolio-footer__brand img {
    width: 190px;
  }

  .portfolio-footer__bottom {
    padding: 18px 14px;
  }

  .portfolio-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .portfolio-footer__legal {
    flex-wrap: wrap;
  }

  .portfolio-footer__scroll-top {
    right: 14px;
    bottom: 14px;

    width: 42px;
    height: 42px;
  }

}

/* =====================================
   FOOTER SOCIAL ICONS
===================================== */

.portfolio-footer__socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.footer-social-link {
  position: relative;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  color: #ffffff;
  background: #161616;
  border: 2px solid #f7931e;
  border-radius: 50%;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.footer-social-icon {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
  pointer-events: none;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #ffffff;
  background: #f7931e;
  border-color: #f7931e;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(247, 147, 30, 0.35);
}

.footer-social-link:focus-visible {
  outline: 3px solid rgba(247, 147, 30, 0.35);
  outline-offset: 4px;
}

/* Facebook hover */
.facebook-link:hover,
.facebook-link:focus-visible {
  background: #1877f2;
  border-color: #1877f2;
}

/* Instagram hover */
.instagram-link:hover,
.instagram-link:focus-visible {
  background: #e4405f;
  border-color: #e4405f;
}

/* LinkedIn hover */
.linkedin-link:hover,
.linkedin-link:focus-visible {
  background: #0a66c2;
  border-color: #0a66c2;
}

/* TikTok hover */
.tiktok-link:hover,
.tiktok-link:focus-visible {
  background: #000000;
  border-color: #ffffff;
}

/* Click animation */
.footer-social-link.is-clicked {
  animation: socialIconClick 0.4s ease;
}

@keyframes socialIconClick {
  0% {
    transform: translateY(-5px) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(0.88);
  }

  100% {
    transform: translateY(-5px) scale(1);
  }
}

/* Mobile */
@media screen and (max-width: 767px) {
  .portfolio-footer__socials {
    gap: 11px;
    margin-top: 18px;
  }

  .footer-social-link {
    width: 42px;
    height: 42px;
  }

  .footer-social-icon {
    width: 19px;
    height: 19px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .footer-social-link {
    transition: none;
  }

  .footer-social-link.is-clicked {
    animation: none;
  }
}
.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.hero-buttons a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
    transition:.35s ease;
}

.primary-btn{
    background:#f7931e;
    color:#fff175638;
    border:2px solid #175638;
}

.primary-btn:hover{
    background:#ffab2d;
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(247,147,30,.35);
}

.secondary-btn{
    background:transparent;
    color:#175638;
    border:2px solid #f7931e;
}

.secondary-btn:hover{
    background:#f7931e;
    color:#175638;
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(247,147,30,.35);
}

.btn-icon{
    width:20px;
    height:20px;
    flex-shrink:0;
}

@media(max-width:768px){

.hero-buttons{
    flex-direction:column;
}

.hero-buttons a{
    width:100%;
    justify-content:center;
}

}