:root{
  --primary: #C7993F;
  --primary-rgb: 199,153,63;
  --primary-dark: #5B5B5A;
  --primary-dark-rgb: 91,91,90;
  --accent: #E8D499;
  --accent-rgb: 232,212,153;
  --dark: #2A2A29;
  --muted: #F8F4EA;
  --muted-dark: #EFE2C8;
  --text-muted: #6F6F6D;
  --background: #FDF8EE;
  --primary-soft: rgba(var(--primary-rgb),0.16);
  --primary-strong: rgba(var(--primary-rgb),0.28);
  --charcoal-soft: rgba(var(--primary-dark-rgb),0.16);
  --radius-lg: 24px;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(42,42,41,0.18);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: var(--dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

*,
*::before,
*::after{box-sizing:border-box}

body{
  margin:0;
  background:linear-gradient(160deg, #fdf8ee 0%, #f3e6cf 55%, #f9efd9 100%);
  color:var(--dark);
}

img{max-width:100%;display:block}

a{color:inherit;text-decoration:none}

main{padding-top:140px}

.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
  position:relative;
  z-index:2;
}

header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:70;
  padding:18px 0;
  transition:all .4s ease;
}
header::before{
  content:"";
  position:absolute;
  inset:0;
  backdrop-filter:blur(14px);
  background:linear-gradient(120deg,rgba(255,255,255,0.86),rgba(255,255,255,0.72));
  opacity:0;
  pointer-events:none;
  transition:opacity .35s ease;
}
header.scrolled::before{opacity:1}

.nav{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:700;
}
.logo{
  width:60px;
  height:60px;
  border-radius:18px;
  background:#fff;
  display:grid;
  place-items:center;
  padding:10px;
  box-shadow:0 16px 34px rgba(var(--primary-rgb),0.28);
}
.logo img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.brand-text{display:flex;flex-direction:column}
.brand-title{font-weight:800;letter-spacing:-0.02em}
.brand-subtitle{font-size:12px;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.26em}

nav ul{
  display:flex;
  gap:22px;
  list-style:none;
  margin:0;
  padding:0;
}
nav a{
  font-weight:600;
  font-size:15px;
  color:var(--text-muted);
  position:relative;
  transition:color .3s ease;
}
nav a::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-8px;
  height:2px;
  background:var(--primary);
  border-radius:999px;
  opacity:0;
  transform:scaleX(.5);
  transition:opacity .25s ease, transform .25s ease;
}
nav a:hover,
nav a:focus{color:var(--primary)}
nav a:hover::after,
nav a:focus::after{opacity:1;transform:scaleX(1)}

.nav-cta{display:flex;align-items:center;gap:16px}

.btn{
  background:var(--primary);
  color:#fff;
  padding:12px 22px;
  border-radius:12px;
  font-weight:700;
  font-size:15px;
  letter-spacing:0.01em;
  border:0;
  box-shadow:0 16px 32px rgba(var(--primary-rgb),0.28);
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 20px 36px rgba(var(--primary-rgb),0.32)}

.ghost{
  background:rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.4);
  color:#fff;
  box-shadow:none;
  backdrop-filter:blur(6px);
}
.ghost-dark{
  background:transparent;
  color:var(--primary-dark);
  border:1px solid rgba(var(--primary-dark-rgb),0.28);
  box-shadow:none;
}
.ghost-dark:hover{background:rgba(var(--primary-dark-rgb),0.08)}

.mobile-toggle{
  display:none;
  background:#fff;
  border:1px solid rgba(var(--primary-dark-rgb),0.22);
  width:46px;
  height:46px;
  border-radius:14px;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 28px rgba(var(--primary-dark-rgb),0.18);
  color:var(--primary-dark);
  cursor:pointer;
}

.mobile-menu{
  position:fixed;
  inset:0;
  background:rgba(var(--primary-dark-rgb),0.92);
  backdrop-filter:blur(18px);
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  z-index:80;
  padding:32px;
}
.mobile-menu.show{display:flex}
.mobile-menu a{
  color:#fff;
  font-size:20px;
  font-weight:600;
}
.mobile-menu .btn{
  background:#fff;
  color:var(--primary);
  box-shadow:none;
}
.mobile-close{
  position:absolute;
  top:24px;
  right:28px;
  background:rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.32);
  width:44px;height:44px;
  border-radius:12px;
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
}

.hero{
  position:relative;
  border-radius:0;
  overflow:hidden;
  min-height:74vh;
  box-shadow:var(--shadow);
  background:linear-gradient(135deg, rgba(var(--primary-dark-rgb),0.94) 0%, rgba(28,28,27,0.96) 100%);
}
.hero::after{
  content:none;
}
.slides{
  height:100%;
  display:flex;
  transition:transform 0.9s cubic-bezier(.2,.9,.2,1);
}
.slide{
  min-width:100%;
  height:100%;
  position:relative;
  display:grid;
  align-items:center;
}
.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 22% 18%, rgba(var(--accent-rgb),0.34) 0%, transparent 52%), linear-gradient(140deg, rgba(var(--primary-dark-rgb),0.72) 0%, rgba(28,28,27,0.78) 55%, rgba(20,20,19,0.9) 100%);
  z-index:1;
}
.slide img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.92) saturate(1.02);
}
.slide-content{
  position:relative;
  z-index:2;
  padding:clamp(32px,6vw,92px);
  max-width:920px;
  color:#fff;
  display:flex;
  flex-direction:column;
  gap:18px;
  min-height: 800px;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(var(--primary-rgb),0.14);
  border:1px solid rgba(var(--primary-rgb),0.32);
  border-radius:999px;
  padding:8px 16px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size:12px;
  color:var(--primary-dark);
}
.hero-title{
  font-size:clamp(32px,5vw,54px);
  font-weight:800;
  line-height:1.04;
  margin:0;
}
.hero-subtitle{
  margin:0;
  font-size:18px;
  line-height:1.6;
  color:rgba(255,255,255,0.82);
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:8px}
.hero-actions .ghost{border-color:rgba(255,255,255,0.32)}

.hero-highlights{
  display:grid;
  gap:8px;
  margin:18px 0 0;
  padding:0;
  list-style:none;
}
.hero-highlights li{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  color:rgba(255,255,255,0.88);
}
.hero-highlights i{color:var(--accent)}

.hero-metrics{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:26px;
}
.hero-metrics .metric{
  background:rgba(var(--accent-rgb),0.26);
  border:1px solid rgba(var(--primary-rgb),0.38);
  border-radius:16px;
  padding:16px 22px;
  min-width:150px;
  backdrop-filter:blur(8px);
  color:#fff;
}
.hero-metrics strong{
  display:block;
  font-size:26px;
  font-weight:800;
  color:#fff;
}
.hero-metrics span{
  font-size:13px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.74);
}

.hero .arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:54px;
  height:54px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,0.92);
  color:var(--primary);
  display:grid;
  place-items:center;
  font-size:20px;
  cursor:pointer;
  box-shadow:0 18px 38px rgba(16,32,39,0.22);
  z-index:3;
  transition:background .3s ease, color .3s ease;
}
.hero .arrow:hover{background:var(--primary);color:#fff}
.arrow-prev{left:34px}
.arrow-next{right:34px}

.dots{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}
.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,0.6);
  background:transparent;
  cursor:pointer;
  transition:transform .25s ease, background .25s ease, border-color .25s ease;
}
.dot.active{
  background:var(--accent);
  border-color:var(--accent);
  transform:scale(1.1);
}

section{margin:0;padding:0}

.section{
  position:relative;
  padding:120px 0;
  overflow:hidden;
}
.section--compact{padding:80px 0}
.section--muted{
  background:linear-gradient(150deg, rgba(var(--accent-rgb),0.22) 0%, rgba(var(--primary-rgb),0.08) 52%, rgba(var(--accent-rgb),0.22) 100%);
}
.section--white{background:#ffffff}
.section--tint{
  background:linear-gradient(135deg, rgba(var(--primary-rgb),0.26) 0%, rgba(var(--primary-rgb),0.12) 100%);
}
.section--accent{
  background:linear-gradient(135deg, rgba(var(--accent-rgb),0.5) 0%, rgba(var(--accent-rgb),0.18) 100%);
}
.section--dark{
  background:linear-gradient(140deg, rgba(var(--primary-dark-rgb),0.96), rgba(24,24,23,0.98));
  color:#fff;
}
.section--image{
  background-size:cover;
  background-position:center;
  color:#fff;
}
.section--image::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(140deg, rgba(var(--primary-dark-rgb),0.8), rgba(26,26,25,0.64));
  z-index:0;
}
.section--image .container,
.section--dark .container{position:relative;z-index:1}
.section--image h2,
.section--image p,
.section--image li,
.section--dark h2,
.section--dark p,
.section--dark li{color:rgba(255,255,255,0.92)}
.section--image .section-lead,
.section--dark .section-lead{color:rgba(255,255,255,0.78)}

.section h2{
  font-size:32px;
  font-weight:800;
  letter-spacing:-0.015em;
  margin-bottom:18px;
}
.section .section-lead{
  color:var(--text-muted);
  max-width:720px;
  margin-bottom:36px;
  font-size:17px;
  line-height:1.68;
}
.section .section-lead2{
  color:var(--muted);
  max-width:720px;
  margin-bottom:36px;
  font-size:17px;
  line-height:1.68;
}
.section-divider{
  position:absolute;
  left:0;right:0;
  height:160px;
  pointer-events:none;
}
.section-divider--top{top:-80px}
.section-divider--bottom{bottom:-80px}

.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:32px;
}
.card{
  background:#fff;
  border-radius:var(--radius);
  padding:28px;
  box-shadow:0 16px 44px rgba(var(--primary-dark-rgb),0.08);
}
.card h3{margin-top:0;margin-bottom:12px;font-size:20px}

.card--image{
  padding:0;
  overflow:hidden;
}
.card--image figure{
  position:relative;
  margin:0;
  width:100%;
  height:100%;
  min-height:300px;
}
.card--image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.card--image figcaption{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:24px;
  color:#fff;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.72) 100%);
  font-size:18px;
  line-height:1.6;
}

.info-list{
  margin:26px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.info-list li{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text-muted);
  font-weight:600;
}
.info-list i{
  color:var(--primary);
}

#contactForm{
  display:flex;
  flex-direction:column;
  gap:16px;
}
#contactForm input,
#contactForm textarea{
  width:100%;
  border:1px solid rgba(var(--primary-dark-rgb),0.18);
  border-radius:12px;
  padding:14px 16px;
  font-family:inherit;
  font-size:15px;
  color:var(--dark);
  background:#fff;
  box-shadow:0 10px 26px rgba(var(--primary-dark-rgb),0.08);
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
#contactForm input::placeholder,
#contactForm textarea::placeholder{
  color:rgba(var(--primary-dark-rgb),0.6);
}
#contactForm input:focus,
#contactForm textarea:focus{
  outline:none;
  border-color:rgba(var(--primary-rgb),0.55);
  box-shadow:0 16px 32px rgba(var(--primary-rgb),0.18);
  transform:translateY(-1px);
}
#contactForm textarea{
  resize:vertical;
  min-height:150px;
}
#contactForm .submit{
  align-self:flex-start;
  background:var(--primary);
  color:#fff;
  border:0;
  border-radius:12px;
  padding:13px 26px;
  font-weight:700;
  letter-spacing:0.01em;
  cursor:pointer;
  box-shadow:0 18px 36px rgba(var(--primary-rgb),0.28);
  transition:transform .2s ease, box-shadow .2s ease;
}
#contactForm .submit:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 42px rgba(var(--primary-rgb),0.32);
}
#formMsg{
  font-weight:600;
  font-size:14px;
  color:var(--primary);
}

p.lead{color:var(--text-muted);font-size:17px;line-height:1.68}

.summary-flush{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.summary-item{
  background:linear-gradient(160deg, rgba(var(--accent-rgb),0.32), rgba(var(--primary-rgb),0.12));
  border-radius:var(--radius);
  padding:26px;
  box-shadow:0 18px 32px rgba(var(--primary-dark-rgb),0.12);
}
.summary-item i{
  font-size:26px;
  color:var(--primary-dark);
  margin-bottom:12px;
}

.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.expertise{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.service,
.tile{
  background:#fff;
  border-radius:var(--radius);
  padding:28px;
  box-shadow:0 18px 42px rgba(var(--primary-dark-rgb),0.12);
  display:flex;
  flex-direction:column;
  gap:16px;
}
.tile{
  padding:32px;
  box-shadow:0 20px 46px rgba(var(--primary-dark-rgb),0.12);
}
.service i{
  width:54px;height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(var(--primary-rgb),0.12);
  color:var(--primary);
  font-size:22px;
}
.tile-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:rgba(var(--primary-rgb),0.14);
  color:var(--primary);
  font-size:24px;
  box-shadow:0 14px 28px rgba(var(--primary-rgb),0.18);
}
.tile h3{
  margin:0;
  font-size:21px;
}
.tile p{color:var(--text-muted);margin:0}
.service p{color:var(--text-muted);margin:0 0 4px}
.service a{font-weight:600;color:var(--primary)}
.projects-slider{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-lg);
  box-shadow:0 18px 48px rgba(var(--primary-dark-rgb),0.14);
  background:#fff;
  margin-top:32px;
}
.projects-track{
  display:flex;
  transition:transform .7s cubic-bezier(.2,.9,.2,1);
}
.project-slide{
  flex:0 0 33.3333%;
  padding:0 12px;
  box-sizing:border-box;
}
.project-card{
  position:relative;
  margin:0;
  border-radius:var(--radius-lg);
  overflow:hidden;
  height:420px;
  box-shadow:0 20px 48px rgba(var(--primary-dark-rgb),0.18);
}
.project-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}
.project-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(18,18,17,0) 30%, rgba(var(--primary-dark-rgb),0.9) 100%);
  opacity:0;
  transition:opacity .4s ease;
}
.project-card figcaption{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:26px 28px;
  color:#fff;
  display:flex;
  flex-direction:column;
  gap:10px;
  transform:translateY(24px);
  opacity:0;
  transition:opacity .4s ease, transform .4s ease;
}
.project-card h3{
  margin:0;
  font-size:22px;
  font-weight:700;
}
.project-card p{
  margin:0;
  font-size:15px;
  line-height:1.6;
  color:rgba(255,255,255,0.86);
}
.project-card:hover img{transform:scale(1.06);}
.project-card:hover::after{opacity:1;}
.project-card:hover figcaption{opacity:1;transform:translateY(0);}
.projects-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:50%;
  border:1px solid rgba(var(--primary-dark-rgb),0.22);
  background:#fff;
  display:grid;
  place-items:center;
  color:var(--primary-dark);
  font-size:18px;
  cursor:pointer;
  box-shadow:0 16px 32px rgba(var(--primary-dark-rgb),0.18);
  transition:background .3s ease,color .3s ease;
  z-index:2;
}
.projects-arrow:hover{background:var(--primary);color:#fff;}
#projectsPrev{left:24px}
#projectsNext{right:24px}
.projects-dots{
  margin-top:26px;
  display:flex;
  justify-content:center;
  gap:12px;
}
.projects-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  border:2px solid rgba(var(--primary-rgb),0.3);
  background:transparent;
  cursor:pointer;
  transition:background .3s ease,transform .3s ease,border-color .3s ease;
}
.projects-dot.active{
  background:var(--primary);
  border-color:var(--primary);
  transform:scale(1.1);
}
.chips{display:flex;gap:10px;flex-wrap:wrap}
.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background:var(--muted-dark);
  color:var(--primary-dark);
  font-weight:600;
  font-size:13px;
  letter-spacing:0.01em;
}
.chip:hover{background:rgba(var(--primary-rgb),0.18)}

footer{
  margin-top:80px;
  text-align:center;
  padding:36px 18px;
  font-size:14px;
  color:var(--primary-dark);
  background:linear-gradient(135deg, rgba(var(--primary-rgb),0.16), rgba(var(--primary-rgb),0.08));
  border-top:1px solid rgba(var(--primary-dark-rgb),0.12);
}

.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.feature{
  background:linear-gradient(170deg, rgba(var(--accent-rgb),0.42), rgba(var(--accent-rgb),0.16));
  border-radius:var(--radius);
  padding:28px;
  box-shadow:0 16px 34px rgba(var(--primary-dark-rgb),0.12);
}
.section--dark .feature,
.section--image .feature{
  background:rgba(255,255,255,0.08);
  box-shadow:0 18px 40px rgba(0,0,0,0.16);
}
.feature i{
  width:54px;height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  background:rgba(244,162,97,0.22);
  color:var(--primary-dark);
  font-size:20px;
}
.section--dark .feature i,
.section--image .feature i{
  background:rgba(255,255,255,0.12);
  color:#fff;
}
.feature p{color:var(--text-muted);line-height:1.6;margin:0}
.section--dark .feature p,
.section--image .feature p{color:rgba(255,255,255,0.82)}

.testimonials-section .section-lead{margin-bottom:40px}
.testimonial-slider{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:#fff;
  box-shadow:0 18px 48px rgba(16,32,39,0.12);
  padding:48px 0;
}
.testimonial-track{
  display:flex;
  transition:transform .7s cubic-bezier(.2,.9,.2,1);
}
.testimonial-slide{
  min-width:100%;
  padding:0 64px;
}
.testimonial-card{
  max-width:640px;
  margin:0 auto;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.testimonial-quote{
  font-size:20px;
  line-height:1.7;
  color:var(--dark);
  margin:0;
}
.testimonial-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
  color:var(--text-muted);
  font-size:15px;
}
.testimonial-meta strong{color:var(--primary);font-size:16px}

.testimonial-slider .arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;height:48px;
  border-radius:50%;
  border:1px solid rgba(var(--primary-rgb),0.18);
  background:#fff;
  display:grid;
  place-items:center;
  color:var(--primary);
  font-size:18px;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(16,32,39,0.14);
}
.testimonial-slider .arrow:hover{background:var(--primary);color:#fff}
#testimonialPrev{left:26px}
#testimonialNext{right:26px}

.testimonial-dots{
  margin-top:28px;
  display:flex;
  justify-content:center;
  gap:12px;
}
.testimonial-dot{
  width:11px;height:11px;
  border-radius:50%;
  border:2px solid rgba(var(--primary-rgb),0.32);
  background:transparent;
  cursor:pointer;
  transition:background .3s ease, transform .3s ease, border-color .3s ease;
}
.testimonial-dot.active{
  background:var(--primary);
  border-color:var(--primary);
  transform:scale(1.1);
}



@media (max-width:980px){
  header{padding:14px 0}
  .nav{padding:0 24px}
  nav ul{display:none}
  .mobile-toggle{display:inline-flex}
  .nav-cta{display:none}
  main{padding-top:120px}
  .hero{margin-bottom:80px}
  .hero .arrow{width:48px;height:48px}
  .grid{grid-template-columns:1fr}
  .expertise{grid-template-columns:repeat(2,minmax(0,1fr))}
  .project-slide{flex:0 0 50%}
  .cta-banner{flex-direction:column;align-items:flex-start}
}

@media (max-width:768px){
  .container{padding:0 22px}
  .section{padding:100px 0}
  .hero{min-height:70vh}
  .hero-actions{flex-direction:column;align-items:flex-start}
  .hero-metrics{flex-direction:column;align-items:flex-start}
  .summary-flush,
  .services,
  .features,
  .expertise{grid-template-columns:1fr}
  .project-slide{flex:0 0 100%}
  .projects-arrow{display:none}
  .projects-slider{border-radius:18px}
  .project-card{height:360px;border-radius:18px}
  .testimonial-slide{padding:0 32px}
}

@media (max-width:560px){
  main{padding-top:110px}
  .hero{min-height:64vh;margin-bottom:64px}
  .hero .arrow{display:none}
  .dots{bottom:22px}
  .section{padding:86px 0}
  header::before{opacity:1}
  .testimonial-slider{padding:40px 0}
  .testimonial-slide{padding:0 24px}
  .projects-arrow{display:none}
  .projects-slider{border-radius:18px}
  .project-card{height:340px;border-radius:18px}
  .cta-banner{padding:36px}
}