@font-face {
    font-family: "Inter";
    src: url("../Fonts/Inter-V.otf") format("opentype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
  --font-inter: "Inter", Arial, Helvetica, sans-serif;
}

:root {
  --green: #009147;
  --green-dark: #007a3d;
  --black: #080808;
  --text: #171717;
  --gray: #e9e9e9;
  --max: 1200px;
  /* --max: 1235px; */
}

* {
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--font-inter);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%
}

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

button {
  font: inherit
}

/* HEADER — PDF scale */
.site-header {
  position: relative;
  z-index: 30;
  height: 156px;
  background: #fff;
}

.header-inner {
  width: min(calc(100% - 124px), 2510px);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}

.logo-wrap {
  width: 185px;
  flex-shrink: 0;
}

.logo-wrap img {
  width: 185px;
  height: auto;
  display: block;
}

.socials {
  display: flex;
  align-items: center;
  gap: 28px;
  /* Push icons to the right */
  margin-left: auto;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}



/* HERO — PDF scale */
.hero {
  position: relative;
  height: clamp(600px, 66vh, 900px);
  min-height: 600px;
  max-height: 1100px;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* Fixed parallax background */
.hero-bg {
  position: absolute;
  inset: -10% 0;
  background-image: url("../images/Images-05.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 8px;
  text-shadow: 0 3px 5px rgba(0, 0, 0, .5);
}

.hero-content h1 {
  margin: 0;
  font-size: 60px;
  line-height: 1.02;
  font-weight: 600;
}

.hero-content h2 {
  margin: 0 0 27px;
  font-size: 60px;
  line-height: 1.04;
  font-weight: 600;
}

.hero-content p {
  margin: 0 auto 40px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 320px;
  padding: 0 20px;
  border-radius: 21px;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-shadow: none;
  transition: transform .2s, background .2s;
}

.quote-button:hover {
  transform: translateY(-2px);
  background: #1c1c1c;
}

/* INTRO */
.intro {
  background: #fff;
  padding: 90px 30px 90px;
  text-align: center;
}

.content-width {
  width: min(calc(100% - 60px), var(--max));
  margin: 0 auto;
}

.intro h2 {
  margin: 0 auto 34px;
  font-size: 22px;
  line-height: 1.23;
  font-weight: 600;
}

.intro p {
  max-width: 1080px;
  margin: 0 auto 19px;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 400;
}

.feature-row {
  width: min(100%, 760px);
  margin: 43px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature img {
  width: 70px;
  height: 57px;
  margin-bottom: 13px;
  object-fit: contain;
}

.feature strong {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}

/* SERVICES */
.services {
  background: #e8e8e8;
  padding: 90px 30px 90px;
}

.section-title {
  margin: 0 0 42px;
  text-align: center;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}

.service-card {
  min-height: 326px;
  background: #fff;
  padding: 31px 30px 29px;
  border-radius: 7px;

}

.service-card img {
  width: 125px;
  height: 100px;
  margin-bottom: 18px;
  object-fit: contain;
}

.service-card h3 {
  margin: 0 0 17px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.46;
  font-weight: 400;
}

/* WORK */
.work {
  padding: 90px 30px 50px;
  background: #fff;
}

.work .section-title {
  margin-bottom: 41px
}

.carousel {
  display: flex;
  align-items: center;
  gap: 22px;
}

.carousel-window {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.work-image {
  flex: 0 0 calc((100% - 48px) / 3);
}

.work-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.arrow {
  width: 30px;
  height: 55px;
  flex: 0 0 30px;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 55px;
  line-height: 45px;
  cursor: pointer;
  padding: 0;
}

.arrow:hover {
  color: var(--green-dark)
}

/* PROCESS */
.process {
  padding: 50px 30px 90px;
  background: #fff;
}

.process .section-title {
  margin-bottom: 38px
}

.process-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.process-item {
  flex: 0 0 245px;
  display: flex;
  justify-content: center;
}

.process-circle {
  width: 250px;
  height: 250px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.process-circle p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.process-arrow {
  color: var(--green);
  font-size: 47px;
  line-height: 1;
  font-weight: 300;
}

/* CTA */
.cta {
  min-height: 145px;
  padding: 90px 30px 90px;
  background: var(--green);
  color: #fff;
  text-align: center;
}

.cta p {
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
}

.cta .quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 320px;
  padding: 0 20px;
  border-radius: 21px;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-shadow: none;
  transition: transform .2s, background .2s;
}

/* FOOTER */
.footer {
  padding: 90px 30px 30px;
  text-align: center;
  background: #fff;
}

.footer img {
  width: 185px;
  margin: 0 auto 20px;
}

.footer p {
  margin: 0;
  color: #231f20;
  font-size: 16px;
}

.contact-footer{
    padding-top: 40px;
    font-size: 13px !important;
}

.moblie-view{
    display: none;
}

.desktop-view {
    display: block;
}

/* TABLET */
@media(max-width:1100px) {
  .site-header {
    height: 150px
  }

  .header-inner {
    width: calc(100% - 70px)
  }

  .logo-wrap,
  .logo-wrap img {
    width: 155px;
    flex-basis: 155px
  }

  .desktop-nav {
    gap: 30px
  }

  .socials {
    margin-left: 35px;
    gap: 18px
  }

  .hero-content h1 {
    font-size: 56px
  }

  .hero-content h2 {
    font-size: 46px
  }

  .hero-content p {
    font-size: 18px
  }

  .service-grid {
    gap: 25px
  }

  .process-row {
    gap: 15px
  }

  .process-item {
    flex-basis: 215px
  }
}

/* MOBILE */
@media(max-width:700px) {
  .site-header {
    height: 82px
  }
  
  p {
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.moblie-view{
    display: block;
}

.desktop-view {
    display: none;
}

  .header-inner {
    width: calc(100% - 34px);
  }

  .logo-wrap,
  .logo-wrap img {
    width: 125px;
    flex-basis: 125px;
  }

  .desktop-nav {
    display: none
  }

  .socials {
    margin-left: auto;
    margin-right: 15px;
    gap: 14px;
  }

  .socials a {
    font-size: 16px
  }

  .menu-toggle {
    display: flex;
    width: 27px;
    height: 27px;
    padding: 3px 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 2px;
    width: 100%;
    background: #111;
  }

  .mobile-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 25px 15px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .12);
  }

  .mobile-nav.open {
    display: block
  }

  .mobile-nav a {
    display: block;
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    font-weight: 800;
  }

  .hero-bg {
    background-attachment: scroll;
    background-position: center center;
  }

  .hero-content {
    padding: 0 18px;
  }
  

  .hero-content h1 {
    font-size: 35px;
    line-height: 1.5;
  }

  .hero-content h2 {
    font-size: 35px;
    margin-bottom: 18px;
  }

  .hero-content p {
    max-width: 370px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.5;
  }

  .quote-button {
    height: 52px;
    min-width: 260px;
    font-size: 15px;
  }

  .intro {
    padding: 48px 20px 52px
  }

  .content-width {
    width: 100%
  }

  .intro h2 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 25px;
  }

  .intro p {
    font-size: 16px;
    line-height: 1.5;
  }

  .feature-row {
    margin-top: 35px;
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }

  .feature img {
    width: 80px;
    height: 70px;
  }

  .feature strong {
    font-size: 16px
  }

  .services {
    padding: 43px 20px 48px;
  }

  .service-card img {
    width: 80px;
    height: 70px;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  
  .service-card h3 {
    font-size: 18px;
  }

  .service-card {
    min-height: 0;
    padding: 25px;
  }

  .service-card p {
    font-size: 16px
  }

  .work {
    padding: 45px 20px 45px
  }

  .work .section-title {
    margin-bottom: 28px
  }

  .carousel {
    gap: 5px
  }

  .work-image {
    flex-basis: 100%;
  }

  .arrow {
    width: 22px;
    flex-basis: 22px;
    font-size: 42px;
  }

  .process {
    padding: 0 20px 48px
  }

  .process .section-title {
    margin-bottom: 28px
  }

  .process-row {
    flex-direction: column;
    gap: 9px;
  }

  .process-item {
    flex-basis: auto
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 36px;
  }

  .cta {
    min-height: 130px;
    padding: 25px 20px;
  }

  .cta p {
    font-size: 16px
  }

  .cta .quote-button {
    height: 52px;
    min-width: 260px;
    font-size: 15px;
  }

  .footer {
    padding: 35px 20px 30px
  }

  .footer img {
    width: 145px
  }

  .footer p {
    font-size: 13px;
    line-height: 1.5;
  }

  .desktop-only {
    display: none;
  }
  
  .contact-footer {
    font-size: 12px !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .process-circle {
    width: 200px;
    height: 200px;
  }
}