:root{
  --container: 1200px;
  --white: #fff;
  --lime: #d9f36f;
  --text: #ffffff;
  --muted: rgba(255,255,255,.75);
  --shadow: 0 20px 45px rgba(0,0,0,.25);
}

*{ margin:0; padding:0; box-sizing:border-box; }
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  /* background:#000; */
}

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

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  padding:28px 0 70px;
}

.hero__bg{
  position:absolute;
  inset:0;
  background:url("../images/h1_bg.jpg") center/cover no-repeat; /* change image path */
  transform:scale(1.02);
  z-index:0;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(0,0,0,.35), rgba(0,0,0,.65)),
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.35));
  z-index:1;
}

.hero__bottomCurve{
  position:absolute;
  left:0;
  right:0;
  bottom:-30px;
  height:160px;
  background:#fff;
  border-radius: 30px 30px 0 0;
  z-index:1;
}

.nav{
  position:relative;
  z-index:5;
  background:rgba(255,255,255,.96);
  border-radius:999px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  padding-left:8px;
}
.brand__icon{
  width:18px; height:18px;
  background: linear-gradient(135deg, #c8f35f, #9fd61a);
  border-radius:4px;
  transform:rotate(45deg);
}
.brand__text{
  font-weight:800;
  letter-spacing:.2px;
  color:#111;
  font-size:20px;
}

.nav__menu{
  display:flex;
  gap:22px;
  align-items:center;
}
.nav__menu a{
  color:#222;
  font-size:14px;
  font-weight:600;
  opacity:.85;
  position:relative;
}
.nav__menu a.active{
  opacity:1;
}
.nav__menu a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  border-radius:2px;
  background:#c7f35d;
}

.nav__right{
  display:flex;
  align-items:center;
  gap:16px;
}
.nav__call{
  font-size:12px;
  color:#333;
  font-weight:600;
  white-space:nowrap;
}
.nav__call .muted{ opacity:.65; margin-right:6px; }

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  border-radius:999px;
  padding:12px 18px;
  font-size:13px;
  transition:.25s ease;
  border:1px solid transparent;
}
.btn--pill{
  background:var(--lime);
  color:#1a1a1a;
  box-shadow: 0 12px 25px rgba(160, 255, 70, .25);
}
.btn--pill:hover{ transform:translateY(-1px); }

.hero__content{
  position:relative;
  z-index:4;
  padding-top:64px;
  color:var(--text);
}

.padding-ltrt60 { padding-left: 30px; padding-right: 30px;}

.hero__centerTitle{
  text-align:center;
  max-width:820px;
  margin:0 auto 54px;
}
.hero__centerTitle h1{
  font-size:64px;
  line-height:1.03;
  font-weight:800;
  letter-spacing:-1px;
  margin-bottom: 20px;
}
.hero__centerTitle p{
  margin-top:14px;
  font-size:20px;
  color:rgba(255,255,255,.70);
  font-weight:600;
}

.hero__row{
  margin-top:160px;
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap:28px;
}

.hero__leftText{
  max-width:520px;
  position:relative;
  padding-left:70px;
}
.hero__leftText .line{
  position:absolute;
  left:0;
  top:14px;
  width:52px;
  height:1px;
  background:rgba(255,255,255,.35);
}
.hero__leftText h3{
  font-size:22px;
  line-height:1.2;
  font-weight:800;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.hero__leftText .btn--white{
  background:#fff;
  color:#1b1b1b;
  padding:10px 12px 10px 18px;
  box-shadow: var(--shadow);
}
.btn__dot{
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--lime);
  display:grid;
  place-items:center;
}

.custom-logo {
    max-height: 60px;
    width: auto;
	margin-left: 20px;
}

.features{
  margin-top:40px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}

.featureCard{
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:26px 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-height:210px;
}

.featureCard h4{
  font-size:16px;
  font-weight:800;
  margin-bottom:10px;
}
.featureCard p{
  font-size:12px;
  line-height:1.6;
  color: rgba(255,255,255,.65);
  font-weight:600;
}

 /* SECTION */
    .about{
      padding:70px 0;
    }

    .topRow{
      display:grid;
      grid-template-columns: 1fr 1.2fr;
      gap:60px;
      align-items:start;
      margin-bottom:50px;
    }

    .tag{
      display:inline-flex;
      align-items:center;
      gap:10px;
      border:1px solid #dcdcdc;
      padding:8px 14px;
      border-radius:999px;
      font-size:12px;
      font-weight:700;
      color:#333;
      letter-spacing:.4px;
      margin-bottom:18px;
    }
    .tag::after{
      content:"";
      width:22px;
      height:1px;
      background:var(--lime);
      display:inline-block;
    }

    .title{
      font-size:52px;
      line-height:1.05;
      font-weight:900;
      letter-spacing:-1.5px;
    }

    .vmWrap{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:40px;
      margin-top:30px;
    }

    .vmItem h4{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:16px;
      font-weight:900;
      margin-bottom:10px;
    }

    .vmItem p{
      font-size:13px;
      line-height:1.7;
      color:var(--muted);
      font-weight:600;
    }

    .iconCircle{
      width:26px;
      height:26px;
      border-radius:50%;
      background:#fff;
      border:1px solid var(--border);
      display:grid;
      place-items:center;
    }

    /* BOTTOM GRID */
    .grid{
      display:grid;
      grid-template-columns:2.2fr 1fr 1fr;
      gap:22px;
      align-items:stretch;
    }

    /* LEFT IMAGE CARD */
    .bigImgCard{
      border-radius:28px;
      overflow:hidden;
      position:relative;
      min-height:420px;
    }

    /* top-left cut corner effect */
    .bigImgCard::before{
      content:"";
      position:absolute;
      top:-1px;
      left:-1px;
      width:220px;
      height:60px;
      background:#fff;
      border-bottom-right-radius:32px;
      z-index:2;
    }

    .bigImgCard img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      transform:scale(1.02);
    }

    /* STAT CARD */
    .statCard{
      background:#F5F5F5;
      border:1px solid var(--border);
      border-radius:22px;
      padding:22px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:200px;
    }

    .statHead{
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .statLabel{
      font-size:10px;
      letter-spacing:.8px;
      font-weight:900;
      color:#111;
      text-transform:uppercase;
    }

    .statLine{
      width:100%;
      height:1px;
      background:#e3e3e3;
    }

    .statValue{
      font-size:52px;
      font-weight:900;
      letter-spacing:-1px;
      line-height:1;
    }
    .statValue span.plus{
      font-size:26px;
      font-weight:900;
      color:#b9ff00;
      margin-left:3px;
      position:relative;
      top:-12px;
    }

    .statSub{
      margin-top:8px;
      font-size:12px;
      font-weight:700;
      color:#7a7a7a;
    }

    /* IMAGE SMALL CARD */
    .smallImgCard{
      border-radius:22px;
      overflow:hidden;
      border:1px solid var(--border);
      min-height:200px;
    }
    .smallImgCard img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    /* column stacking like screenshot */
    .col{
      display:flex;
      flex-direction:column;
      gap:22px;
    }

    /* responsive */
    @media(max-width: 992px){
      .topRow{ grid-template-columns:1fr; gap:30px; }
      .title{ font-size:38px; }
      .vmWrap{ grid-template-columns:1fr; }

      .grid{
        grid-template-columns:1fr;
      }
      .bigImgCard{ min-height:320px; }
    }



.services .services{
  background: #f6f3ec;
  padding:80px 0 50px;
}

.services__head{
  text-align:center;
  margin-bottom:55px;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 14px;
  border-radius:999px;
  border:1px solid #dedede;
  background:#fff6;
  font-size:11px;
  font-weight:800;
  letter-spacing:.6px;
  margin-bottom:18px;
}

.services__head h2{
  font-size:54px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-1.5px;
}

/* GRID */
.services__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:22px;
}

/* CARD */
.serviceCard{
  position:relative;
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:30px;
  padding:26px 26px 0;
  min-height:320px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  transition: .35s ease;
}

/* hover background effect */
.serviceCard::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--hover);
  opacity:0;
  transition:.35s ease;
  z-index:0;
}

.serviceCard:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.serviceCard:hover::before{
  opacity:1;
}

/* top content */
.serviceCard__top{
  position:relative;
  z-index:2;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-flow: wrap;
}

.serviceCard__top h3{
  font-size:18px;
  line-height:1.1;
  font-weight:900;
}

/* circle arrow icon */
.serviceCard__icon{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid #e7e7e7;
  background:#fff;
  display:grid;
  place-items:center;
  font-size:16px;
  font-weight:900;
  transition:.35s ease;
}

/* rotate icon on hover */
.serviceCard:hover .serviceCard__icon{
  transform: rotate(45deg);
  border-color:#d7ff4f;
  box-shadow:0 10px 30px rgba(0,0,0,.08);background: #e4ed64;
}

/* image area */
.serviceCard__img{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:70%;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  z-index:1;
}

.serviceCard__img img{
  width:85%;
  max-width:320px;
  object-fit:contain;
  transform: translateY(20px) scale(1);
  transition: .45s ease;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,.20));
}

.serviceCard:hover .serviceCard__img img{
  transform: translateY(10px) scale(1.06);
}

/* wide cards (bottom row) */
.serviceCard--wide{
  grid-column: span 1;
  min-height:340px;
}
.serviceCard--wide:nth-child(4){
  grid-column: span 1;
}
.serviceCard--wide:nth-child(5){
  grid-column: span 2; /* last one bigger like screenshot */
}

/* bottom text */
.services__bottom{
  margin-top:28px;
  text-align:center;
  font-size:12px;
  font-weight:700;
  color:#444;
}
.services__bottom a{
  color:#111;
  text-decoration:underline;
  text-underline-offset:4px;
}

/* Responsive */
@media(max-width: 992px){
  .services__head h2{ font-size:40px; }
  .services__grid{ grid-template-columns:1fr 1fr; }
  .serviceCard--wide:nth-child(5){ grid-column: span 2; }
}

@media(max-width: 640px){
  .services__head h2{ font-size:32px; }
  .services__grid{ grid-template-columns:1fr; }
  .serviceCard--wide:nth-child(5){ grid-column: span 1; }
}


.team-section {
  text-align: center;
  padding: 80px 40px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 80px;
  font-weight: 700;
}

.card-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  position: relative;
  width: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: #f5f5f5;
}

.card.center {
  transform: translateY(-20px);
}

.card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: #eaff4f;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
}

.card-footer {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
}

.card-footer small {
  display: block;
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
}

.card-footer strong {
  font-size: 16px;
  font-weight: 600;
}


.testimonial-section {
  position: relative;
  padding: 120px 80px;
  text-align: center;
}

.quote {
  font-size: 40px;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.3;
}

.author strong {
  display: block;
  font-size: 18px;
}

.author span {
  font-size: 14px;
  color: #777;
}

.testimonial-section .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}

.testimonial-section .nav.prev {
  left: 60px;
}

.testimonial-section .nav.next {
  right: 60px;
}

.divider {
  width: 80%;
  margin: 80px auto;
  border: none;
  border-top: 1px solid #ddd;
}

.partners {
  text-align: center;
  padding-bottom: 80px;
}

.partners p {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logos img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.9;
}
.different{
  padding:80px 0;
}

.different__wrap{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:70px;
  align-items:start;
}

/* LEFT */
.photoStack{
  position:relative;
  width:100%;
  max-width:420px;
  margin:0 auto;
  min-height:520px;
}

.photoStack__shape{
  position:absolute;
  left:0;
  top:0;
  width:68%;
  height:78%;
  border-radius:26px;
  background:#ececec;
  z-index:0;
}

.photoStack__photo{
  position:absolute;
  right:0;
  top:70px;
  width:78%;
  height:72%;
  border-radius:26px;
  overflow:hidden;
  z-index:1;
}

.photoStack__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* rating overlay card */
.ratingCard{
  position:absolute;
  left:55px;
  bottom:10px;
  width:210px;
  padding:20px 18px;
  border-radius:22px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,0.4);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  z-index:2;
}

.ratingCard__score{
  font-size:44px;
  font-weight:900;
  letter-spacing:-1px;
  text-align:center;
  margin-bottom:12px;
}

.ratingCard__people{
  display:flex;
  justify-content:center;
  gap:0;
  margin-bottom:10px;
}
.ratingCard__people img{
  width:38px;
  height:38px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid #fff;
  margin-left:-10px;
}
.ratingCard__people img:first-child{ margin-left:0; }

.ratingCard__stars{
  text-align:center;
  color:#ff9f2f;
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:8px;
}

.ratingCard__text{
  text-align:center;
  font-size:12px;
  color:#2b2b2b;
  font-weight:700;
}

/* RIGHT */
.tagPill{
  display:inline-flex;
  padding:7px 14px;
  border-radius:999px;
  border:1px solid #dcdcdc;
  font-size:11px;
  font-weight:800;
  letter-spacing:.6px;
  margin-bottom:18px;
}

.different__title{
  font-size:56px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-1.8px;
  margin-bottom:16px;
}

.different__desc{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
  max-width:520px;
  margin-bottom:32px;
}

/* features */
.featureList{
  border-top:1px solid var(--line);
}

.feature{
  display:grid;
  grid-template-columns: 90px 220px 1fr;
  gap:24px;
  align-items:center;
  padding:28px 0;
  border-bottom:1px solid var(--line);
}

.feature__icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:var(--lime);
  display:grid;
  place-items:center;
}

.feature__content h4{
  font-size:16px;
  font-weight:900;
  line-height:1.15;
}

.feature__text{
  color:#7a7a7a;
  font-size:13px;
  line-height:1.7;
}

/* bottom quote */
.quoteBadge{
  margin-top:55px;
  display:flex;
  justify-content:center;
}

.quoteBadge span{
  width:86px;
  height:86px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:52px;
  font-weight:900;
  background:#f3f3f3;
  color:#111;
}

/* Responsive */
@media (max-width: 992px){
  .different__wrap{
    grid-template-columns:1fr;
    gap:40px;
  }
  .different__title{ font-size:44px; }
  .feature{
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "icon title"
      "icon text";
  }
  .feature__icon{ grid-area:icon; }
  .feature__content{ grid-area:title; }
  .feature__text{ grid-area:text; }
}

@media (max-width: 560px){
  .different__title{ font-size:36px; }
  .ratingCard{
    left:20px;
    width:200px;
  }
}


.insights {
  padding: 100px 80px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.filter-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 24px;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
}

.view-all {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.view-all span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eaff4f;
  font-size: 14px;
}

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

.card {
  max-width: 420px;
}

.image {
  height: 240px;
  border-radius: 24px;
  background: radial-gradient(circle at center, #f2f2f2, #ececec);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 24px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tag {
  background: #eaff4f;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.line {
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}

.date {
  font-size: 12px;
  color: #777;
}

.card h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}


.sp-footer{
    background: url(../images/footer-bg.jpg);
  width:100%;
  padding:70px 0;
  position:relative;
  display:flex;
  justify-content:center;
}

.sp-footer__box{
  width:min(1200px, calc(100% - 60px));
  background:#fff;
  border-radius:28px;
  padding:60px 70px 30px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}

/* GRID */
.sp-footer__grid{
  display:grid;
  grid-template-columns: 1.1fr 1.3fr 1fr;
  gap:60px;
  align-items:start;
}

/* BRAND */
.sp-footer__brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}
.sp-footer__icon{
  width:20px;
  height:20px;
  border-radius:4px;
  transform:rotate(45deg);
  background:linear-gradient(135deg,#d9f36f,#a4d900);
}
.sp-footer__name{
  font-size:26px;
  font-weight:800;
  color:#111;
  letter-spacing:.2px;
}

.sp-footer__desc{
  margin-top:70px;
  max-width:320px;
  font-size:14px;
  line-height:1.6;
  color:#8a8a8a;
  font-weight:500;
}

/* CENTER LINKS */
.sp-footer__center{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:50px;
  position:relative;
  padding:0 30px;
}
.sp-footer__center::before,
.sp-footer__center::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:1px;
  background:#eaeaea;
}
.sp-footer__center::before{ left:0; }
.sp-footer__center::after{ right:0; }

.sp-footer__links{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.sp-footer__links a{
  color:#111;
  font-size:13px;
  font-weight:700;
  opacity:.95;
  transition:.25s;
}
.sp-footer__links a:hover{
  opacity:1;
  text-decoration:underline;
}

/* RIGHT CONTACT */
.sp-footer__right{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.sp-footer__phone{
  font-size:24px;
  font-weight:900;
  color:#111;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:6px;
}
.sp-footer__mail{
  font-size:22px;
  font-weight:900;
  color:#111;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:6px;
}

.sp-footer__social{
  margin-top:50px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:700;
  color:#8a8a8a;
}
.sp-footer__social a{
  color:#8a8a8a;
  transition:.25s;
}
.sp-footer__social a:hover{
  color:#111;
}
.sp-footer__social span{
  opacity:.6;
}

/* DIVIDER */
.sp-footer__divider{
  margin:50px 0 20px;
  height:1px;
  background:#efefef;
}

/* BOTTOM */
.sp-footer__bottom{
  text-align:center;
  font-size:12px;
  color:#8a8a8a;
  font-weight:600;
}
.sp-footer__bottom b{
  color:#111;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .sp-footer__box{
    padding:40px 25px 25px;
  }

  .sp-footer__grid{
    grid-template-columns:1fr;
    gap:35px;
  }

  .sp-footer__desc{
    margin-top:20px;
  }

  .sp-footer__center{
    padding:20px 0;
  }
  .sp-footer__center::before,
  .sp-footer__center::after{
    display:none;
  }

  .sp-footer__phone,
  .sp-footer__mail{
    font-size:18px;
  }

  .sp-footer__social{
    margin-top:20px;
  }
}


/* Responsive */
@media (max-width: 992px){
  .nav__menu{ display:none; }
  .hero__centerTitle h1{ font-size:46px; }
  .hero__row{ grid-template-columns:1fr; }
  .hero__cta{ justify-self:start; }
  .features{ grid-template-columns:1fr; }
  .hero__leftText{ padding-left:0; }
  .hero__leftText .line{ display:none; }
}


/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

/* Modal Box */
.popup-modal {
  width: min(1400px, 100%);
  background: #fff;
  border-radius: 30px;
  position: relative;
  padding: 60px 80px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Content */
.popup-content {
  text-align: center;
}

/* Tag */
.popup-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e85a;
  color: #444;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Title */
.popup-title {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  margin-bottom: 40px;
}

/* Form */
.popup-form {
  width: min(760px, 100%);
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 22px;
  margin-bottom: 26px;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 56px;
  border: none;
  outline: none;
  border-radius: 999px;
  background: #f2f2f2;
  padding: 0 24px;
  font-size: 15px;
  color: #333;
}

.form-field input::placeholder {
  color: #8a8a8a;
}

/* Bottom Row */
.popup-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
}

.popup-note {
  text-align: left;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* Button */
.popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #dce85a;
  color: #111;
  font-weight: 700;
  border: none;
  cursor: pointer;
  height: 56px;
  padding: 0 22px 0 28px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.popup-btn:hover {
  transform: translateY(-2px);
}

/* Circle Arrow */
.popup-btn-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Decorative buildings background */
.popup-buildings {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: url("../images/h1_shape.png") center bottom/cover
    no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 992px) {
  .popup-modal {
    padding: 40px 26px;
  }

  .popup-title {
    font-size: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .popup-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .popup-note {
    text-align: center;
  }

  .popup-btn {
    justify-content: center;
  }
}

.home .hero__content {
    margin-top: 40px;
}

/* About Us Page */
header.nav {
    position: absolute !important;
    margin: 30px auto;
    left: 0;
    right: 0;
    width: 90%;
}


.inner_pages h1.page-title { display: none;}
/* HERO */

.inner_pages .hero{
height:720px;
background-image:url("../images/h1_bg.jpg");
background-size:cover;
background-position:center;
position:relative;
display:flex;
align-items:center;
}

.inner_pages .hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.25);
}

.inner_pages .hero-content{
position:relative;
color:white;
width:85%;
margin:auto;
}

.inner_pages .hero-content h1{
font-size:95px;
font-weight:700;
margin-top:30px;
}

.inner_pages .hero-text{
position:absolute;
right:0;
top:180px;
width:420px;
font-size:20px;
line-height:1.6;
color:#eaeaea;
}

/* BREADCRUMB */

.inner_pages .breadcrumb{
font-size:14px;
opacity:.9;
}

/* BOTTOM CURVE */

.inner_pages .bottom-curve{
position:absolute;
bottom:-1px;
width:100%;
height:160px;
background:#ffffff;
border-top-left-radius:70px;
border-top-right-radius:70px;
}

.inner_pages .about-section{
padding:0% 6%;
}

/*.inner_pages .container{
display:flex;
justify-content:space-between;
align-items:flex-start;
margin-bottom:60px;
}*/

/* LEFT */

.about-left h1{
font-size:60px;
font-weight:700;
line-height:1.1;
}

.label{
display:inline-block;
border:1px solid #cfdc5f;
padding:6px 16px;
border-radius:20px;
font-size:12px;
margin-bottom:20px;
}

/* RIGHT */

.about-right{
max-width:520px;
}

.about-right h3{
font-size:18px;
margin-bottom:20px;
}

.about-right p{
color:#666;
line-height:1.6;
margin-bottom:25px;
}

/* BUTTON */

.team-btn{
background:white;
border:1px solid #ddd;
padding:12px 20px;
border-radius:30px;
cursor:pointer;
font-weight:500;
}

.team-btn span{
background:#cfdc5f;
padding:8px 10px;
border-radius:50%;
margin-left:10px;
}

/* IMAGE AREA */

.image-wrapper{
position:relative;
width:100%;
border-radius:30px;
overflow:hidden;
}

.image-wrapper img{
width:100%;
display:block;
border-radius:30px;
}

/* STATS */

.stat{
position:absolute;
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.stat h2{
font-size:40px;
}

.stat span{
color:#cfdc5f;
}

.stat p{
font-size:13px;
color:#777;
margin-top:5px;
}

/* POSITIONS */

.stat1{
right:40px;
top:120px;
}

.stat2{
left:45%;
bottom:40px;
}

.stat3{
right:40px;
bottom:40px;
}

.services .services {
padding:100px 6%;
background:#f6f6f6;
font-family:Poppins;
}

.section-header{
text-align:center;
margin-bottom:60px;
}

.section-header h2{
font-size:56px;
line-height:1.1;
font-weight:700;
}

.tag{
border:1px solid #d4e157;
padding:6px 16px;
border-radius:20px;
font-size:12px;
display:inline-block;
margin-bottom:20px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin: 50px 0;
}

.service-card{
border:1px solid #e0e0e0;
background:white;
padding:20px;
border-radius:25px;
}

.card-image{
position:relative;
margin-bottom:20px;
}

.card-image img{
width:100%;
border-radius:20px;
}

.arrow{
position:absolute;
right:15px;
bottom:15px;
width:40px;
height:40px;
background:#d4e157;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:18px;
}

.service-card h3{
font-size:26px;
margin:10px 0;
}

.service-card p{
color:#666;
font-size:14px;
margin-top:15px;
}


.nav{
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 40px;
background:#fff;
}

.nav__menu{
display:flex;
gap:25px;
list-style:none;
}

.nav__menu li{
list-style:none;
}

.nav__menu a{
text-decoration:none;
color:#333;
font-weight:500;
}

.menu-toggle{
display:none;
font-size:28px;
background:none;
border:none;
cursor:pointer;
}

/* Mobile Responsive */

@media (max-width:768px){

.nav__menu{
position:absolute;
top:80px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
display:none;
padding:20px;
}

.nav__menu.active{
display:flex;
}

.menu-toggle{
display:block;
}

.nav__right{
display:none;
}

	.insights .cards { display: none;}
	
}

/* Top cards */
.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.card {
	border: 1px solid #e0e0e0;
    flex: 1;
    background: none;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
}

.card h4 {
	font-size: 1.5em;
    margin: 10px 0 5px;
}

.card p {
    font-size: 14px;
    color: #666;
	margin: 20px 0;
}

.card .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    background: #d6e44c;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    color: #000;
}

/* Main layout */
.content {
    display: flex;
    gap: 30px;
}

.form-section {
    flex: 1;
}

.form-section h2 {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 40px;
    border: none;
    background: #f0f0f0;
}

textarea {
    border-radius: 40px;
    height: 120px;
}

.submit-btn {
    padding: 10px 20px;
    background: #d6e44c;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

/* Map */
.map {
    flex: 1;
    background: #ddd;
    border-radius: 12px;
    height: 350px;
}

/* Small images */
.thumbnails {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.thumb {
    width: 100px;
    height: 60px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.d-block { display: block;}

.col_1 {
	display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.col_2 {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* Heading */
h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.subtitle {
    color: #555;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Item */
.item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Icon circle */
.icon {
    width: 80px;
    height: 80px;
    background: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
}

/* Content */
.content h3 {
    margin: 0;
    font-size: 24px;
}

.line {
    height: 1px;
    background: #ddd;
    margin: 10px 0 15px;
}

.content p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .item {
        flex-direction: column;
        align-items: flex-start;
    }
}

.locations-section {
    max-width: 1100px;
    margin: 60px auto;
}

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

/* Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card */
.location-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.location-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.location-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* CTA */
.read-more {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.read-more:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Header */
.location {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

h1 {
    font-size: 42px;
    margin: 0;
}

hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
}

/* Info Row */
.info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.info-text span {
    display: block;
    font-size: 12px;
    color: #777;
}

.info-text strong {
    font-size: 14px;
}

/* Image */
.main-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
}

/* Description */
.section {
    display: flex;
    gap: 40px;
}

.description {
    flex: 2;
}

.details {
    flex: 1;
}

.section h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.description p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.details ul {
    padding-left: 18px;
}

.details li {
    margin-bottom: 10px;
    font-size: 14px;
}

/* Features */
.construction-renovation .features {
	display: block;
    margin-top: 50px;
}

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

.construction-renovation .feature {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
	display: block;
    padding: 20px;
    text-align: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #d6e44c;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature h4 {
    margin: 10px 0 5px;
}

.feature p {
    font-size: 13px;
    color: #666;
}

.intro-section {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
}

.details li {
    width: 33%;
    float: left;
    line-height: 1.5em;
}

/* Responsive */
@media (max-width: 900px) {
    .section {
        flex-direction: column;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 28px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.mtop80 { margin-top: 80px;}
.mbtm30 { margin-bottom: 30px;}


/* Add New Stylesheet */

.nav { padding: 20px 18px;}

.nav__menu a { color: #000000; font-weight: 600;}

.nav__call {  font-size: 14px;}

.nav__call .muted { opacity: 1;}

.phone { opacity: 0.65;}

a.brand {
    border-right: 1px solid #e0e0e0;
    padding-right: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .cta-btn i {
    font-size: 18px;
  }

  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  }


  .tag {
      display: inline-block;
      border: 1px solid #cfcfcf;
      border-radius: 20px;
      padding: 6px 14px;
      font-size: 12px;
      margin-bottom: 20px;
    }

  

    .projects {
      display: flex;
      gap: 30px;
    }

    .card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      flex: 1;
    }

    .card img {
      width: 100%;
      display: block;
    }

    .projects .label {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #dfff4f;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: bold;
    }

    .image-wrapper {
      position: relative;
    }

    .content {
      padding: 15px 20px 25px;
    }

    .location {
      font-size: 14px;
      color: #777;
      margin-bottom: 5px;
    }

    .title {
      font-size: 22px;
      font-weight: bold;
    }

    /* smaller card */
    .small {
      max-width: 350px;
    }


    .areas-served { padding: 80px 0 50px;}


    /* Card wrapper */
.areas-served .card {
    position: sticky;
    top: 100px;
    height: 400px;
    margin: 40px auto 120px;
    max-width: 1250px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

/* Layer stacking */
.areas-served .card:nth-child(1) { z-index: 1; }
.areas-served .card:nth-child(2) { z-index: 2; }
.areas-served .card:nth-child(3) { z-index: 3; }
.areas-served .card:nth-child(4) { z-index: 4; }
.areas-served .card:nth-child(5) { z-index: 5; }
.areas-served .card:nth-child(6) { z-index: 6; }
.areas-served .card:nth-child(7) { z-index: 7; }

/* Image */
.areas-served .parallax-img {
    position: absolute;
    width: 100%;
    height: 120%;
    object-fit: cover;
    top: -50px;
    left: 0;
    transform: translateY(0);
    transition: transform 0.1s linear;
}

/* Overlay */
.areas-served .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

/* Glass content */
.areas-served .content {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
}

/* Badge */
.areas-served .badge {
    background: #d6e44c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

/* Text */
.areas-served .title {
    font-size: 20px;
    font-weight: bold;
}

.areas-served .desc {
    font-size: 13px;
    color: #555;
    margin: 10px 0;
}

.areas-served .location {
    font-size: 12px;
    color: #666;
}

/* Floating arrow */
.areas-served .arrow {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #d6e44c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .areas-served .card {
        position: relative;
        top: 0;
        height: auto;
    }

    .areas-served .content {
        position: static;
        transform: none;
        width: auto;
        margin: 20px;
    }

    .areas-served .parallax-img {
        position: relative;
        height: 250px;
    }
}



.about .grid{
  background: #f5f5f5;
      display:grid;
      grid-template-columns:2fr 2fr;
      gap:22px;
      align-items:stretch;
    }

          .statCard  { background: none; padding: 40px;}

      .statCard h1 { margin-bottom: 0;}

    .statCard p { font-size: 20px; font-weight: 500; line-height: 1.2em;}

    .cta-banner {
      background: linear-gradient(135deg, #111, #333);
      color: #fff;
      padding: 120px 20px;
      text-align: center;
      background-image: url(../../assets/images/ctaBanner.jpg);
      background-size: cover;
      min-height: 450px;
    }

   

    .cta-banner h2 {
      font-size: 32px;
      margin-bottom: 15px;
    }

    .cta-banner p {
      font-size: 18px;
      margin-bottom: 25px;
      color: #ddd;
    }

    .cta-btn {
      display: inline-block;
      padding: 14px 28px;
      background: #dfff4f;
      color: #000;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: 0.3s ease;
    }

    .cta-btn:hover {
      background: #c4e63f;
    }


    #scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: #d6df5a;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;

  /* Hidden state */
  transform: scale(0);
  opacity: 0;
  transition: all 0.6s ease;
}

/* Visible state (zoom in) */
#scrollTopBtn.show {
  transform: scale(1);
  opacity: 1;
}

/* Zoom out effect */
#scrollTopBtn.hide {
  transform: scale(0);
  opacity: 0;
}

/* CSS Arrow (up icon) */
#scrollTopBtn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-left: 3px solid #000;
  border-top: 3px solid #000;
  transform: translate(-50%, -30%) rotate(45deg);
}

/* Hover effect */
#scrollTopBtn:hover {
  transform: scale(1.1);
}




