.elementor-8653 .elementor-element.elementor-element-a171de3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8653 .elementor-element.elementor-element-f1e92e2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8653 .elementor-element.elementor-element-d3c38c4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8653 .elementor-element.elementor-element-12dd79d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8653 .elementor-element.elementor-element-b804645{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8653 .elementor-element.elementor-element-2cd7c5e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8653 .elementor-element.elementor-element-564b09b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8653 .elementor-element.elementor-element-609e72a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8653 .elementor-element.elementor-element-74b7db5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8653 .elementor-element.elementor-element-ed48fbb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8653 .elementor-element.elementor-element-0e30acc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8653 .elementor-element.elementor-element-137bcd9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-af4960b *//* ============================================
YATEER — SITE HEADER
Scoped under .yth-header
Brand colours from the Yateer logo: red #E31E24, black #141414.
============================================ */

.yth-header {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease;
}
.yth-header *, .yth-header *::before, .yth-header *::after { box-sizing: border-box; }
.yth-header.is-scrolled { box-shadow: 0 6px 20px rgba(20,20,20,0.08); }

.yth-header__inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5vw; gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Logo ---------- */
.yth-header__logo {
  display: flex; align-items: center; text-decoration: none; flex: none;
}
.yth-header__logo-img {
  height: 44px; width: auto; display: block;
}

/* ---------- Nav ---------- */
.yth-header__nav { flex: 1 1 auto; display: flex; justify-content: center; }
.yth-header__menu { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; flex-wrap: wrap; }
.yth-header__item { position: relative; }
.yth-header__link {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer; font-family: inherit;
  color: var(--black); font-size: 14px; font-weight: 600; text-decoration: none;
  padding: 10px 16px; border-radius: 4px; transition: color 0.2s ease, background 0.2s ease;
}
.yth-header__link:hover { color: var(--red); background: #fff5f5; }
.yth-header__caret { font-size: 10px; transition: transform 0.25s ease; }
.yth-header__item--dropdown.is-open .yth-header__caret { transform: rotate(180deg); }

.yth-header__sublink--viewall { display: none; }

/* Dropdown (click-to-toggle on all screen sizes) */
.yth-header__dropdown {
  list-style: none; margin: 0; padding: 10px;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid #eee; border-radius: 8px;
  box-shadow: 0 16px 34px rgba(20,20,20,0.12);
  min-width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.yth-header__item--dropdown.is-open .yth-header__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.yth-header__dropdown li + li { margin-top: 2px; }
.yth-header__dropdown a {
  display: block; color: var(--black); font-size: 13.5px; font-weight: 500;
  text-decoration: none; padding: 10px 14px; border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.yth-header__dropdown a:hover { background: #fff4f4; color: var(--red); padding-left: 18px; }
.yth-header__dropdown li:first-child a { color: var(--red); font-weight: 700; border-bottom: 1px solid #f1f1f1; border-radius: 6px 6px 0 0; margin-bottom: 4px; padding-bottom: 12px; }

/* ---------- Actions ---------- */
.yth-header__actions { display: flex; align-items: center; gap: 14px; flex: none; }

.yth-header__contact {
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; text-decoration: none;
  padding: 10px 18px; border-radius: 30px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.yth-header__contact:hover { background: #b3151a; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(227,30,36,0.3); }
.yth-header__contact-icon { width: 16px; height: 16px; flex: none; display: flex; }
.yth-header__contact-icon svg { width: 100%; height: 100%; }
.yth-header__contact-text { display: flex; flex-direction: column; line-height: 1.2; }
.yth-header__contact-label { font-size: 9.5px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; opacity: 0.85; }
.yth-header__contact-num { font-size: 13px; font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .yth-header__inner { padding: 12px 5vw; justify-content: space-between; }
  .yth-header__logo-img { height: 38px; }

  .yth-header__nav { order: 3; flex: 1 1 100%; justify-content: flex-start; }
  .yth-header__menu { gap: 2px; }
  .yth-header__link { padding: 9px 12px; font-size: 13.5px; }

  .yth-header__dropdown { left: 0; min-width: 240px; }

  .yth-header__contact-text { display: none; }
  .yth-header__contact { padding: 10px; }
}

@media (max-width: 480px) {
  .yth-header__logo-img { height: 32px; }
  .yth-header__menu { width: 100%; }
  .yth-header__link { flex: 1; justify-content: center; }
  .yth-header__dropdown { left: 0; right: 0; min-width: 0; width: 100%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-08cd6b2 *//* ============================================
YATEER — VIEW ALL PROJECTS — SECTION 1: HERO
Scoped under .ytp-hero
Brand colours from the Yateer logo: red #E31E24, black #141414.
============================================ */

.ytp-hero {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  padding: 90px 5vw 70px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ytp-hero *, .ytp-hero *::before, .ytp-hero *::after { box-sizing: border-box; }
.ytp-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(227,30,36,0.35) 0%, rgba(227,30,36,0) 70%);
}
.ytp-hero::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(227,30,36,0.2) 0%, rgba(227,30,36,0) 70%);
}

.ytp-hero__inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }

.ytp-hero__eyebrow {
  display: inline-block; color: #fff; background: var(--red);
  font-size: 12.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 3px; margin: 0 0 22px;
}
.ytp-hero__title {
  color: #fff; font-size: clamp(28px, 4vw, 46px); font-weight: 700; line-height: 1.2; margin: 0 0 20px;
}
.ytp-hero__desc { color: #ccc; font-size: 15px; line-height: 1.75; margin: 0 0 14px; }
.ytp-hero__sub { color: var(--red); font-size: 14.5px; font-weight: 600; font-style: italic; margin: 0 0 44px; }

.ytp-hero__stats {
  display: flex; justify-content: center; gap: 50px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 32px;
}
.ytp-hero__stat { display: flex; flex-direction: column; gap: 4px; }
.ytp-hero__stat strong { color: var(--red); font-size: 26px; font-weight: 800; }
.ytp-hero__stat span { color: #aaa; font-size: 12px; font-weight: 500; }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .ytp-hero { padding: 64px 6vw 50px; }
  .ytp-hero__title { font-size: 27px; }
  .ytp-hero__stats { gap: 28px; }
  .ytp-hero__stat strong { font-size: 22px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5d89db7 *//* ============================================
YATEER — SECTION 5: FEATURED PROJECTS
Scoped under .yt-projects
============================================ */

.yt-projects {
  --navy: #0e2438;
  --gold: #d99a3f;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f4f1ea;
  padding: 70px 5vw 80px;
  box-sizing: border-box;
}
.yt-projects *, .yt-projects *::before, .yt-projects *::after { box-sizing: border-box; }

.yt-projects__head {
  max-width: 1320px;
  margin: 0 auto 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.yt-projects__eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.yt-projects__title {
  color: var(--navy);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin: 0;
}
.yt-projects__viewall {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.yt-projects__viewall:hover { background: var(--gold); transform: translateY(-2px); }

.yt-projects__row-wrap { position: relative; max-width: 1320px; margin: 0 auto; }

.yt-projects__row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.yt-projects__row::-webkit-scrollbar { display: none; }

.yt-projects__card { scroll-snap-align: start; }

.yt-projects__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #ddd;
}
.yt-projects__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.yt-projects__card:hover .yt-projects__img img { transform: scale(1.08); }

.yt-projects__card h3 {
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
}
.yt-projects__card p {
  color: #8a8578;
  font-size: 12.5px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.yt-projects__nav {
  position: absolute;
  top: -66px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.yt-projects__nav:hover { background: var(--gold); transform: scale(1.06); }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .yt-projects { padding: 50px 6vw 60px; }
  .yt-projects__row { grid-auto-columns: minmax(78%, 1fr); gap: 16px; }
  .yt-projects__nav { top: -58px; width: 36px; height: 36px; }
  .yt-projects__head { align-items: flex-start; }
  .yt-projects__viewall { padding: 11px 18px; font-size: 12.5px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7951eb2 *//* ============================================
YATEER — VIEW ALL PROJECTS — SECTION 2: CONFIDENTIALITY STATEMENT
Scoped under .ytp-confid
============================================ */

.ytp-confid {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f7f6f5;
  padding: 70px 5vw;
  box-sizing: border-box;
}
.ytp-confid *, .ytp-confid *::before, .ytp-confid *::after { box-sizing: border-box; }

.ytp-confid__badge {
  max-width: 1200px; margin: 0 auto 30px;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #f0c6c8; color: var(--red);
  font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 30px;
}

.ytp-confid__grid {
  max-width: 1200px; margin: 0 auto 40px;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: center;
}
.ytp-confid__main h2 { color: var(--black); font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; margin: 0 0 18px; }
.ytp-confid__main p { color: #666; font-size: 14px; line-height: 1.8; margin: 0 0 14px; }

.ytp-confid-stat {
  background: var(--black); border-radius: 10px; padding: 32px 28px; text-align: center;
}
.ytp-confid-stat__num { display: block; color: var(--red); font-size: 40px; font-weight: 800; margin-bottom: 10px; }
.ytp-confid-stat p { color: #ccc; font-size: 12.5px; line-height: 1.6; margin: 0; }

.ytp-confid__options {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ytp-confid__option {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ytp-confid__option:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(20,20,20,0.08); }
.ytp-confid__option span { flex: none; font-size: 22px; }
.ytp-confid__option strong { display: block; color: var(--black); font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.ytp-confid__option p { color: #777; font-size: 12.5px; line-height: 1.6; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ytp-confid__grid { grid-template-columns: 1fr; }
  .ytp-confid__options { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ytp-confid { padding: 50px 6vw; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-93a8f08 *//* ============================================
YATEER — VIEW ALL PROJECTS — SECTION 3: WHY CLIENTS TRUST US
Scoped under .ytp-trust
============================================ */

.ytp-trust {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  padding: 76px 5vw;
  box-sizing: border-box;
}
.ytp-trust *, .ytp-trust *::before, .ytp-trust *::after { box-sizing: border-box; }

.ytp-trust__head { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.ytp-trust__eyebrow {
  color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin: 0 0 12px;
}
.ytp-trust__head h2 { color: var(--black); font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; margin: 0 0 16px; }
.ytp-trust__intro { color: #666; font-size: 14px; line-height: 1.75; margin: 0; }

.ytp-trust__grid {
  max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.ytp-trust__item {
  display: flex; align-items: center; gap: 12px;
  background: #f7f6f5; border-radius: 8px; padding: 16px 18px;
  color: var(--black); font-size: 13px; font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ytp-trust__item:hover { background: var(--red); color: #fff; transform: translateY(-3px); }
.ytp-trust__item span {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.ytp-trust__item:hover span { background: #fff; color: var(--red); }

.ytp-trust__footer {
  max-width: 700px; margin: 36px auto 0; text-align: center;
  color: var(--black); font-size: 15px; font-weight: 600; font-style: italic;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ytp-trust__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ytp-trust { padding: 54px 6vw; }
  .ytp-trust__grid { grid-template-columns: 1fr; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9652046 *//* ============================================
YATEER — VIEW ALL PROJECTS — SECTION 4: OUR DESIGN PROCESS
Scoped under .ytp-process
============================================ */

.ytp-process {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  padding: 76px 5vw;
  box-sizing: border-box;
}
.ytp-process *, .ytp-process *::before, .ytp-process *::after { box-sizing: border-box; }

.ytp-process__head { max-width: 780px; margin: 0 auto 44px; text-align: center; }
.ytp-process__eyebrow {
  color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin: 0 0 12px;
}
.ytp-process__head h2 { color: #fff; font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; line-height: 1.35; margin: 0; }

.ytp-process__track {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}

.ytp-process__step {
  background: #1c1c1c; border-radius: 8px; padding: 24px 18px;
  border-bottom: 3px solid var(--red);
  transition: transform 0.25s ease, background 0.25s ease;
}
.ytp-process__step:hover { transform: translateY(-6px); background: #232323; }

.ytp-process__num {
  display: block; font-size: 28px; font-weight: 800; color: transparent;
  -webkit-text-stroke: 1.3px var(--red); margin-bottom: 12px;
}
.ytp-process__step h3 { color: #fff; font-size: 13.5px; font-weight: 700; margin: 0 0 10px; line-height: 1.3; }
.ytp-process__step p { color: #999; font-size: 11.5px; line-height: 1.6; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .ytp-process__track { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .ytp-process { padding: 54px 6vw; }
  .ytp-process__track {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 76%;
    overflow-x: auto; gap: 14px; padding-bottom: 8px; scroll-snap-type: x mandatory;
  }
  .ytp-process__step { scroll-snap-align: start; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ca0340f *//* ============================================
YATEER — VIEW ALL PROJECTS — SECTION 5: PROJECT GALLERY
Scoped under .ytp-gallery and .ytp-card
============================================ */

.ytp-gallery {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f7f6f5;
  padding: 76px 5vw;
  box-sizing: border-box;
}
.ytp-gallery *, .ytp-gallery *::before, .ytp-gallery *::after { box-sizing: border-box; }

.ytp-gallery__head { max-width: 820px; margin: 0 auto 20px; text-align: center; }
.ytp-gallery__eyebrow {
  color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin: 0 0 12px;
}
.ytp-gallery__head h2 { color: var(--black); font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; margin: 0 0 16px; }
.ytp-gallery__note {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff4f4; border: 1px solid #f6c9cb; color: var(--black);
  font-size: 12.5px; font-weight: 500; padding: 8px 16px; border-radius: 20px;
}

.ytp-gallery__tabs {
  max-width: 1300px; margin: 34px auto 40px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
}
.ytp-gallery__tab {
  background: #fff; border: 1px solid #eee; color: var(--black); font-family: inherit;
  font-size: 12.5px; font-weight: 600; padding: 9px 18px; border-radius: 30px; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}
.ytp-gallery__tab:hover { transform: translateY(-2px); }
.ytp-gallery__tab.is-active { background: var(--red); color: #fff; border-color: var(--red); }

.ytp-gallery__grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
}

/* ---------- Card ---------- */
.ytp-card {
  background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 24px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ytp-card:hover { box-shadow: 0 16px 34px rgba(20,20,20,0.1); transform: translateY(-3px); }

.ytp-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.ytp-card__tag {
  background: var(--red); color: #fff; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
}
.ytp-card__status { color: #2f8a4e; font-size: 11.5px; font-weight: 600; }

.ytp-card h3 { color: var(--black); font-size: 16.5px; font-weight: 700; margin: 0 0 8px; line-height: 1.3; }
.ytp-card__meta { color: #999; font-size: 12px; margin: 0 0 12px; }
.ytp-card__desc { color: #666; font-size: 13px; line-height: 1.65; margin: 0 0 16px; }

.ytp-card__services { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.ytp-card__services span {
  background: #f7f6f5; border: 1px solid #eee; color: var(--black);
  font-size: 11px; font-weight: 500; padding: 5px 12px; border-radius: 20px;
}

.ytp-card__embeds { display: grid; grid-template-columns: 1fr; gap: 10px; }
.ytp-card__embeds--two { grid-template-columns: repeat(2, 1fr); }
.ytp-card__embeds--three { grid-template-columns: repeat(3, 1fr); }

.ytp-card__embed {
  position: relative; width: 100%; padding-top: 62%; border-radius: 6px; overflow: hidden; background: #111;
}
.ytp-card__embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .ytp-gallery__grid { grid-template-columns: 1fr; }
  .ytp-card__embeds--three { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .ytp-gallery { padding: 54px 6vw; }
  .ytp-card { padding: 18px; }
  .ytp-card__embeds--two,
  .ytp-card__embeds--three { grid-template-columns: 1fr; }
  .ytp-gallery__tab { padding: 8px 14px; font-size: 11.5px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8509ec7 *//* ============================================
YATEER — VIEW ALL PROJECTS — SECTION 6: PROJECTS WE CANNOT DISPLAY
Scoped under .ytp-hidden
============================================ */

.ytp-hidden {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  padding: 76px 5vw;
  box-sizing: border-box;
}
.ytp-hidden *, .ytp-hidden *::before, .ytp-hidden *::after { box-sizing: border-box; }

.ytp-hidden__head { max-width: 780px; margin: 0 auto 36px; text-align: center; }
.ytp-hidden__eyebrow {
  color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin: 0 0 12px;
}
.ytp-hidden__head h2 { color: var(--black); font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; margin: 0 0 16px; }
.ytp-hidden__intro { color: #666; font-size: 14px; line-height: 1.75; margin: 0; }

.ytp-hidden__grid {
  max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.ytp-hidden__grid span {
  background: var(--black); color: #eee; font-size: 12.5px; font-weight: 500;
  padding: 10px 20px; border-radius: 30px; border: 1px solid #222;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  cursor: default;
}
.ytp-hidden__grid span:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

.ytp-hidden__footer {
  max-width: 680px; margin: 36px auto 0; text-align: center;
  color: var(--black); font-size: 14px; font-weight: 600; font-style: italic; line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .ytp-hidden { padding: 54px 6vw; }
  .ytp-hidden__grid span { font-size: 11.5px; padding: 8px 16px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dee7ffc *//* ============================================
YATEER — VIEW ALL PROJECTS — SECTION 7: FINAL CTA
Scoped under .ytp-cta
============================================ */

.ytp-cta {
  --red: #e31e24;
  --red-dark: #b3151a;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 80px 5vw;
  box-sizing: border-box;
  text-align: center;
}
.ytp-cta *, .ytp-cta *::before, .ytp-cta *::after { box-sizing: border-box; }

.ytp-cta__inner { max-width: 720px; margin: 0 auto; }

.ytp-cta h2 { color: #fff; font-size: clamp(23px, 3vw, 32px); font-weight: 700; line-height: 1.3; margin: 0 0 18px; }
.ytp-cta p { color: rgba(255,255,255,0.92); font-size: 14.5px; line-height: 1.75; margin: 0 0 12px; }
.ytp-cta__sub { color: rgba(255,255,255,0.78); font-size: 14px; font-weight: 600; font-style: italic; margin-bottom: 34px; }

.ytp-cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.ytp-cta__btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 4px;
  font-size: 14.5px; font-weight: 700; text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; white-space: nowrap;
}
.ytp-cta__btn--primary { background: var(--black); color: #fff; }
.ytp-cta__btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.3); }
.ytp-cta__btn--primary span { transition: transform 0.25s ease; }
.ytp-cta__btn--primary:hover span { transform: translateX(4px); }
.ytp-cta__btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.ytp-cta__btn--outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .ytp-cta { padding: 56px 6vw; }
  .ytp-cta__actions { flex-direction: column; }
  .ytp-cta__btn { width: 100%; justify-content: center; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a707537 *//* ============================================
YATEER — SECTION 5: FEATURED PROJECTS
Scoped under .yt-projects
============================================ */

.yt-projects {
  --navy: #0e2438;
  --gold: #d99a3f;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f4f1ea;
  padding: 70px 5vw 80px;
  box-sizing: border-box;
}
.yt-projects *, .yt-projects *::before, .yt-projects *::after { box-sizing: border-box; }

.yt-projects__head {
  max-width: 1320px;
  margin: 0 auto 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.yt-projects__eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.yt-projects__title {
  color: var(--navy);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin: 0;
}
.yt-projects__viewall {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.yt-projects__viewall:hover { background: var(--gold); transform: translateY(-2px); }

.yt-projects__row-wrap { position: relative; max-width: 1320px; margin: 0 auto; }

.yt-projects__row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.yt-projects__row::-webkit-scrollbar { display: none; }

.yt-projects__card { scroll-snap-align: start; }

.yt-projects__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #ddd;
}
.yt-projects__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.yt-projects__card:hover .yt-projects__img img { transform: scale(1.08); }

.yt-projects__card h3 {
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
}
.yt-projects__card p {
  color: #8a8578;
  font-size: 12.5px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.yt-projects__nav {
  position: absolute;
  top: -66px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.yt-projects__nav:hover { background: var(--gold); transform: scale(1.06); }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .yt-projects { padding: 50px 6vw 60px; }
  .yt-projects__row { grid-auto-columns: minmax(78%, 1fr); gap: 16px; }
  .yt-projects__nav { top: -58px; width: 36px; height: 36px; }
  .yt-projects__head { align-items: flex-start; }
  .yt-projects__viewall { padding: 11px 18px; font-size: 12.5px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-15764e9 *//* ============================================
YATEER — SITE FOOTER
Scoped under .ytf-footer
Brand colours from the Yateer logo: red #E31E24, black #141414.
============================================ */

.ytf-footer {
  --red: #e31e24;
  --black: #141414;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  box-sizing: border-box;
}
.ytf-footer *, .ytf-footer *::before, .ytf-footer *::after { box-sizing: border-box; }

.ytf-footer__top {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding: 64px 5vw 50px;
}

/* ---------- Brand column ---------- */
.ytf-footer__logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1; width: fit-content; margin-bottom: 18px; }
.ytf-footer__logo-mark { color: #fff; font-size: 22px; font-weight: 800; letter-spacing: 2px; }
.ytf-footer__logo-sub { color: var(--red); font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; }

.ytf-footer__tagline { color: #999; font-size: 13px; line-height: 1.7; margin: 0 0 18px; max-width: 300px; }

.ytf-footer__phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: 14px; font-weight: 700; text-decoration: none;
  transition: color 0.2s ease;
}
.ytf-footer__phone:hover { color: var(--red); }

/* ---------- Link columns ---------- */
.ytf-footer__col h3 {
  color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin: 0 0 20px;
}
.ytf-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ytf-footer__col a {
  color: #999; font-size: 13.5px; text-decoration: none; transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.ytf-footer__col a:hover { color: var(--red); padding-left: 4px; }

.ytf-footer__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; font-size: 13.5px; font-weight: 700;
  text-decoration: none; padding: 12px 22px; border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.ytf-footer__cta:hover { background: #b3151a; transform: translateY(-2px); }
.ytf-footer__cta span { transition: transform 0.25s ease; }
.ytf-footer__cta:hover span { transform: translateX(4px); }

/* ---------- Bottom bar ---------- */
.ytf-footer__bottom {
  border-top: 1px solid #262626;
  padding: 22px 5vw;
  text-align: center;
}
.ytf-footer__bottom p { color: #777; font-size: 12px; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ytf-footer__top { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; padding: 54px 6vw 40px; }
}
@media (max-width: 560px) {
  .ytf-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .ytf-footer__tagline { max-width: 100%; }
}/* End custom CSS */