.heroBanner {
  background: url(../images/banner/banner.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  padding-top: 80px;
  height: 95vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.heroBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.75) 40%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(0, 0, 0, 0.05) 85%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}
.heroBanner .containerFull {
  position: relative;
  z-index: 2;
}
.heroBanner .content {
  position: relative;
  z-index: 2;
}
.logo-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
  margin: 0;
  line-height: 1;
}

.logo-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 35px;
  background: linear-gradient(to bottom, #f8e08a 0%, #d4af37 40%, #b8860b 100%);
}

.gold {
  background: linear-gradient(
    to bottom,
    #f8e08a 0%,
    #eac54f 25%,
    #d4af37 50%,
    #b8860b 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mainBlock {
  width: 100%;
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.sliderBottomHero {
  width: 100%;
}

.itemSlider {
  padding: 0 32px;
}

.itemSlider p {
  position: relative;
  margin: 0;
  padding-left: 22px;
  white-space: nowrap;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  -webkit-text-fill-color: #ffffff !important;
}
.itemSlider p::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}

.sliderBottomHero .slick-track {
  display: flex;
  align-items: center;
}

.sliderBottomHero .slick-slide {
  height: auto;
}
.bgGradient {
  background: linear-gradient(
    to bottom,
    #f8e08a 0%,
    #eac54f 25%,
    #d4af37 50%,
    #b8860b 100%
  ) !important;
}
.heroHeading h1 {
  margin: 0;
  font-size: clamp(60px, 8vw, 85px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.heroHeading h1 span {
  display: block;
  margin-bottom: 8px;
}

.heroHeading h1 span:last-child {
  margin-bottom: 0;
}
.headingWhite {
  color: #ffffff;
}
.headingGold {
  background: linear-gradient(
    to bottom,
    #f8e08a 0%,
    #eac54f 25%,
    #d4af37 50%,
    #b8860b 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.headingOutline {
  margin-top: 12px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
  text-stroke: 1px rgba(255, 255, 255, 0.65);
}
.bannerTag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}

.bannerTag i {
  color: var(--primary-color);
  font-size: 14px;
}

.bannerTag .divider {
  opacity: 0.5;
}
.heroStats {
  position: absolute;
  bottom: 0;
  right: 0;

  width: 45%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(0, 0, 0, 0.85);
  border-top: 1px solid rgba(212, 175, 55, 0.45);
  backdrop-filter: blur(8px);

  z-index: 10;
}

.statItem {
  flex: 1;
  text-align: center;
  padding: 10px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.statItem:last-child {
  border-right: none;
}

.statItem h3 {
  color: var(--primary-color);
  margin: 0 0 10px;
}

.statItem span {
  color: #bdbdbd;
  font-size: 10px;
  letter-spacing: 3px;
}
.text-grey {
  color: #bdbdbd;
}
.whyChooseUs {
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.featureBox {
  text-align: center;
}

.iconBox {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(212, 175, 55, 0.8);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.iconBox:hover {
  background-color: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.iconBox i {
  font-size: 28px;
  color: var(--primary-color);
}
.serviceCard {
  background: #080808;
  /*border: 1px solid rgba(212, 175, 55, 0.2);*/
    border: 3px solid var(--primary-color);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: 0.4s;
}

.serviceCard:hover {
  transform: translateY(-8px);
  border: 5px solid var(--primary-color);
}

.serviceImg {
  height: 250px;
  overflow: hidden;
}

.serviceImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.serviceCard:hover img {
  transform: scale(1.08);
}

.serviceContent {
  padding: 25px;
}

.serviceContent h3 {
  color: var(--primary-color);
}

.serviceContent p {
  color: #bdbdbd;
  min-height: 70px;
}

.serviceContent a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}
.serviceContent a:hover {
  color: #fff;
}

.serviceContent a i {
  margin-left: 10px;
}
.cta-section {
  background: #000;
}

.cta-box {
  margin: auto;
  text-align: center;
  padding: 80px 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 184, 0, 0.25);

  background:
    radial-gradient(circle at left, rgba(255, 184, 0, 0.08), transparent 40%),
    radial-gradient(circle at right, rgba(255, 184, 0, 0.08), transparent 40%),
    #070707;

  box-shadow:
    inset 0 0 80px rgba(255, 184, 0, 0.05),
    0 0 40px rgba(255, 184, 0, 0.05);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.headingOutline2 {
  margin-top: 12px;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-color);
  text-stroke: 1px var(--primary-color);
}
.processSection {
  background: #000;
  position: relative;
  overflow: hidden;
}

.processTimeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 0;
}

.processTimeline::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: rgba(212, 175, 55, 0.9);
  z-index: 1;
}

.processStep {
  text-align: center;
  position: relative;
  z-index: 2;
}

.processCircle {
  width: 64px;
  height: 64px;
  border: 1px solid #d4af37;
  border-radius: 50%;
  margin: 0 auto 28px;
  background: #000;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.processCircle:hover {
  background: #fff;
  color: var(--primary-color);
}

.processStep h3 {
  color: #fff;
  text-transform: uppercase;
}
.processStep p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}
.portfolio-section {
  background: #0b0b0b;
}

.portfolio-item {
  overflow: hidden;
  height: 250px;
  position: relative;
}

.large-item {
  height: 500px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
  border: 1px solid #ccc;
}
.portfolioOverlay {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 24px;
  min-height: 120px;

  display: flex;
  align-items: flex-end;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.85) 45%,
    rgba(0, 0, 0, 0) 100%
  );

  transform: translateY(100%);
  opacity: 0;
  transition: all 0.45s ease;
  z-index: 2;
}

.portfolioOverlay h3 {
  color: #ffffff;
  text-transform: uppercase;
}

.portfolioOverlay p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 15px;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolioOverlay {
  transform: translateY(0);
  opacity: 1;
}
.testimonialSlider {
  margin-left: -120px;
  margin-right: -120px;
}

.testimonialItem {
  padding: 0 15px;
}

.testimonialCard {
  min-height: 320px;
  background: #111111;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-top: 5px solid var(--primary-color);
  padding: 40px;
  border-radius: 10px;
}

.testimonialCard .stars {
  color: #d4af37;
  font-size: 28px;
  margin-bottom: 30px;
}

.testimonialCard p {
  color: #fff;
  font-size: 17px;
  font-style: italic;
  margin: 0 0 34px;
}

.testimonialCard h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}

.testimonialCard span {
  display: block;
  color: var(--primary-color);
  font-size: 14px;
}

.beforeAfterSection {
  background: #000;
  position: relative;
  overflow: hidden;
}
.beforeAfterSlider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #111;
  border-radius:10px;
  border: 1px solid rgba(212, 175, 55, 0.65);
  cursor: ew-resize;
  user-select: none;
}
.beforeAfterSlider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.baBeforeImg {
  z-index: 1;
}

.baAfterWrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.baAfterImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.baHandle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #d4af37;
  z-index: 6;
  transform: translateX(-50%);
}

.baHandle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    to bottom,
    #f8e08a 0%,
    #eac54f 25%,
    #d4af37 50%,
    #b8860b 100%
  );
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.55);
}

.baHandle span::before {
  content: "↔";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 24px;
  font-weight: 800;
}
.beforeBadge,
.afterBadge {
  position: absolute;
  top: 18px;
  z-index: 8;
  padding: 8px 18px;
  color: #000;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(
    to bottom,
    #f8e08a 0%,
    #eac54f 25%,
    #d4af37 50%,
    #b8860b 100%
  );
}

.beforeBadge {
  left: 18px;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.afterBadge {
  right: 18px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.itemLeftContact {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.itemLeftContact:last-child {
  border-bottom: none;
}

.itemLeftContact h4 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.itemLeftContact a {
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.itemLeftContact a:hover {
  color: var(--primary-color);
}

.rightContact {
  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 36px;
  position: relative;
}

.rightContact::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--primary-color);
  pointer-events: none;
}

.rightContact p {
  color: rgba(255, 255, 255, 0.65);
}

.itemForm {
  margin-top: 30px;
}

.itemForm label {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.itemLeftContact {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.itemLeftContact:last-child {
  border-bottom: none;
}

.contactIconBox {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(212, 175, 55, 0.75);
  background: rgba(212, 175, 55, 0.08);

  color: var(--primary-color);
  font-size: 20px;
  position: relative;
}
.contactIconBox::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  pointer-events: none;
}

.itemForm label span {
  color: var(--primary-color);
}

.itemForm input,
.itemForm textarea,
.itemForm select {
  width: 100%;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
  color: #ffffff;
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 0;
  outline: none;
  transition: 0.3s ease;
}

.itemForm textarea {
  height: 120px;
  resize: none;
  padding-top: 18px;
}

.itemForm input::placeholder,
.itemForm textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.itemForm input:focus,
.itemForm textarea:focus,
.itemForm select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
}

.itemForm select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #d4af37 50%),
    linear-gradient(135deg, #d4af37 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 27px,
    calc(100% - 15px) 27px;
  background-size:
    7px 7px,
    7px 7px;
  background-repeat: no-repeat;
}

.itemForm button {
  height: 58px;
  border: none;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer {
  background: #0b0b0b;
  padding: 60px 0 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer .logo-title {
  font-size: 42px;
}

.itemFooter h4 {
  text-transform: uppercase;
}

.itemFooter ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.textLight {
  color: rgba(255, 255, 255, 0.78);
}

.textLight a,
.itemFooter p a {
  text-decoration: none;
}

.footerIndent {
  display: inline-block;
  padding-left: 24px;
}
.itemFooter > ul li a,
.itemFooter .row ul li a {
  position: relative;
  display: inline-block;
  color: #eee;
  font-size: 15px;
  padding: 5px 0 5px 20px;
  transition: 0.3s;
  text-decoration: none;
}

.itemFooter > ul li a::before,
.itemFooter .row ul li a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 13px;
  transition: 0.3s;
}

.itemFooter > ul li a:hover,
.itemFooter .row ul li a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.itemFooter > ul li a:hover::before,
.itemFooter .row ul li a:hover::before {
  left: 4px;
}
.socialLink ul {
  display: flex;
  gap: 10px;
  padding-left: 0;
  margin: 20px 0 0;
}

.socialLink ul li a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  color: #eee;
  font-size: 17px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.06);
  transition: 0.3s;
  text-decoration: none;
}
.socialLink ul li a::before {
  display: none !important;
  content: none !important;
}

.socialLink ul li a:hover {
  color: #000;
  background: var(--primary-color);
  transform: translateY(-3px);
}
.bottom-border {
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.bottomMenu ul {
  display: flex;
  gap: 15px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.bottomMenu ul li a {
  text-decoration: none;
}
.bottomMenu ul li a::before {
  display: none !important;
  content: none !important;
}

.copyright {
  background: #fff;
  padding: 15px 0;
  text-align: center;
}

.copyright p {
  color: #000;
}

.whatsAppIcon {
  position: fixed;
  bottom: 20px;
  right: 5px;
  z-index: 99;
}

.whatsAppIcon a {
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
}
.aboutImage {
    position: relative;
    overflow: visible;
}

.aboutImage img {
    width: 100%;
    display: block;
}

.experienceBox {
    position: absolute;
    bottom: 20px;
    right: 30px;
border-radius:10px;
    background: rgba(15, 10, 10, 0.95);
    border: 1px solid #d4af37;

    min-width: 220px;
    padding: 30px;

    text-align: center;
    z-index: 2;

    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

.experienceBox h3 {
    font-size: 60px;
    line-height: 1;
    margin: 0;
    color: #d4af37;
    font-weight: 800;
}

.experienceBox span {
    display: block;
    margin-top: 10px;

    color: #fff;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.innerBanner {
  position: relative;
  min-height: 400px;
  display: flex;
  padding-top: 120px;
  align-items: center;
  overflow: hidden;
  background: url("../images/bg/about.jpg") no-repeat center center;
  background-size: cover;
  z-index: 1;
  box-sizing: border-box;
}
.innerBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.78) 42%,
    rgba(0, 0, 0, 0.35) 72%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 1;
}

.innerBanner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    #f8e08a 0%,
    #eac54f 25%,
    #d4af37 50%,
    #b8860b 100%
  );
  z-index: 3;
}
.innerBanner .containerFull {
  position: relative;
  z-index: 2;
  width: 100%;
}

.innerBanner .row {
  margin-left: 0;
  margin-right: 0;
}

.innerBreadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.innerBreadcrumb li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.innerBreadcrumb li a {
  color: var(--primary-color);
  text-decoration: none;
}

.innerBreadcrumb li + li::before {
  content: "/";
  margin-right: 14px;
  color: rgba(255, 255, 255, 0.45);
}
.aboutIntroSection {
  position: relative;
  overflow: hidden;
}
.aboutIntroImage {
  position: relative;
  height: 620px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  background: #f8f8f8;
}

.aboutIntroImage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  z-index: 2;
  pointer-events: none;
}

.aboutIntroImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutPoints {
  display: grid;
  gap: 22px;
}

.aboutPoint {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
}

.aboutPoint:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
}

.aboutPointIcon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: rgba(212, 175, 55, 0.08);
  font-size: 21px;
}

.aboutPoint h4 {
  text-transform: uppercase;
}
.expertiseSection {
  background: #222;
  position: relative;
  overflow: hidden;
}

.expertiseIntro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(0, 0, 0, 0.68);
  font-size: 16px;
  line-height: 1.9;
}

.expertiseCard {
  height: 100%;
  padding: 36px 30px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease-in-out;
  position: relative;
  overflow: hidden;
}

.expertiseCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #f8e08a 0%,
    #eac54f 25%,
    #d4af37 50%,
    #b8860b 100%
  );
}

.expertiseCard:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
}

.expertiseIcon {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.6);
  font-size: 24px;
}

.expertiseCard h3 {
  text-transform: uppercase;

}

.contactBanner {
  background-image: url("../images/services/rim-paint.jpg");
}
.hasDropdown .subMenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 12px 0;
  margin: 18px 0 0;
  background: #0b0b0b;
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
  z-index: 999;
}

.hasDropdown:hover .subMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hasDropdown .subMenu li {
  display: block;
  width: 100%;
}

.hasDropdown .subMenu li a {
  display: block;
  padding: 10px 18px;
  color: var(--primary-color);
  font-size: 14px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hasDropdown .subMenu li a:hover {
  color: #fff !important;
  background: rgba(212, 175, 55, 0.08);
  padding-left: 24px;
}
.testimonialBanner {
  background-image: url("../images/bg/about.jpg");
}

.testimonialPageSection {
  position: relative;
  overflow: hidden;
}

.testimonialPageSection::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  pointer-events: none;
}

.googleReviewBox {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 34px;
  background: #0b0b0b;
  border: 1px solid rgba(212, 175, 55, 0.95);
  display: flex;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  position: relative;
  overflow: hidden;
}

.googleReviewBox::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  pointer-events: none;
}

.googleLeft {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.googleIcon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
}

.googleLeft h3 {
  color: #ffffff;
  text-transform: uppercase;
}

.googleLeft p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.googleStars {
  color: #ffc400;
  font-size: 26px;
  letter-spacing: 4px;
  position: relative;
  z-index: 2;
}

.reviewCard {
  height: 100%;
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-top: 4px solid var(--primary-color);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease-in-out;
  position: relative;
  overflow: hidden;
}
.reviewCard::after {
  display: none !important;
  content: none !important;
}

.reviewCard:hover {
  transform: translateY(-7px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.12);
}


.reviewTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.reviewQuoteIcon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  background: linear-gradient(
    to bottom,
    #f8e08a 0%,
    #eac54f 25%,
    #d4af37 50%,
    #b8860b 100%
  );
  font-size: 20px;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  -webkit-clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.reviewStars {
  color: #d4af37;
  font-size: 18px;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 0;
  text-align: right;
}

.reviewCard p {

  font-style: italic;
  margin: 0 0 28px;
  position: relative;
  z-index: 2;
}

.reviewAuthor {
  position: relative;
  z-index: 2;
}

.reviewAuthor h4 {
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
}

.reviewAuthor span {
  color: rgba(212, 175, 55, 0.95);
  font-size: 14px;
  font-weight: 600;
}
.header.stricky-fixed .centerMenu .hasDropdown .subMenu li a,
.header.fixed-header .centerMenu .hasDropdown .subMenu li a {
  color: var(--primary-color)!important;
}

.header.stricky-fixed .centerMenu .hasDropdown .subMenu li a:hover,
.header.fixed-header .centerMenu .hasDropdown .subMenu li a:hover {
  color: #ffffff!important;
}
.serviceDetailSection {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}


.serviceImage {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(184, 134, 11, 0.85);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.18);
}

.serviceImage::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(184, 134, 11, 0.75);
  z-index: 2;
  pointer-events: none;
}
.serviceImage img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s ease;
}

.serviceImage:hover img {
  transform: scale(1.06);
}

.serviceInfoCard {
  height: 100%;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.serviceInfoCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  background: linear-gradient(
    to bottom,
    #f8e08a 0%,
    #eac54f 25%,
    #d4af37 50%,
    #b8860b 100%
  );
}

.serviceInfoCard:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
}

.cleanIconList li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
  margin-bottom: 20px;
}

.cleanIconList li::before {
  display: none !important;
  content: none !important;
}

.cleanIconList li i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 3px;
  min-width: 22px;
}

.cleanIconList li strong {
  display: block;
  color: #111111;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;

}

.cleanIconList li span {
  display: block;
  color: rgba(0, 0, 0, 0.62);

}

.cleanIconList.simpleList li {
  align-items: center;
}

.cleanIconList.simpleList li strong {
  margin-bottom: 0;
}


.serviceList li strong {
  display: block;
  color: #111111;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.serviceList li span {
  display: block;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.7;
}

.simpleList li {
  color: #111111;
  font-weight: 600;
}

.miniFeatureCard {
  height: 100%;
  padding: 24px 20px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: #ffffff;
  text-align: center;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.05);
  transition: 0.35s ease;
}

.miniFeatureCard:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.09);
}

.miniFeatureCard h4 {
  text-transform: uppercase;

}


.tintOptionsList li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-left: 0;
}

.tintOptionsList li::before {
  display: none;
}

.tintLevel {
  width: 54px;
  height: 26px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.tint5 {
  background: #050505;
}

.tint15 {
  background: #171717;
}

.tint20 {
  background: #2b2b2b;
}

.tint30 {
  background: #444;
}

.tint50 {
  background: #777;
}

.tint70 {
  background: #aaa;
}
.miniFeatureIcon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  background: linear-gradient(
    to bottom,
    #f8e08a 0%,
    #eac54f 25%,
    #d4af37 50%,
    #b8860b 100%
  );
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  -webkit-clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}



