.aoc-page{
    --aoc-dark:#1e1d1b;
    --aoc-dark-2:#252420;
    --aoc-gold:#d7b835;
    --aoc-gold-dark:#b08f34;
    --aoc-cream:#f5f4f1;
    --aoc-line:#e3e1da;
    --aoc-text-soft:#2b2b2b;
    color:#2b2a27;
  }
  .aoc-page h1, .aoc-page h2, .aoc-page h3, .aoc-page h4{
    font-size: 40px;
    line-height: 64px;
    color: #2b2b2b;
    font-weight: 300;
  }
  .aoc-page .aoc-eyebrow{
     font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #20201f;
    font-weight: 300;
  }
  .aoc-page .aoc-rule{
    width:101px;
    height:5px;
    background:var(--aoc-gold);
    margin:14px auto 0;
  }
  .aoc-page .aoc-rule.text-start{margin:14px 0 0;}
  .aoc-page .btn-aoc-gold{
    background:#d7b835;
    border:1px solid #d7b835;
    color:#2b2b2b;
    font-size:16px;
    text-transform:uppercase;
    padding:.85rem 1.6rem;
    border-radius:5px;
    font-weight:300;
    transition:.2s ease;
  }
  .aoc-page .btn-aoc-gold:hover{
    background:var(--aoc-gold-dark);
    border-color:var(--aoc-gold-dark);
    color:#20200f;
  }
  .aoc-page .btn-aoc-outline{
    padding: .8rem 2.7rem;
    font-weight: 300;
    border-radius: 5px;
    background-color: #fff;
    border: 1.5px solid #d7b835;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #20160a;
  }
  .aoc-page .btn-aoc-outline:hover{
    background:var(--aoc-gold);
    color:#20200f;
  }
  /* ---------- Hero ---------- */
  .aoc-hero{
    position:relative;
    min-height:640px;
    background:#111 url("/public/assets/img/other-services/TopBanner.png") center/cover no-repeat;
    display:flex;
    align-items:center;
    padding-top: 90px;
  }
  .aoc-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(10,10,8,.72) 0%, rgba(10,10,8,.35) 45%, rgba(10,10,8,.05) 70%);
  }
  .aoc-hero .container{position:relative; z-index:2;}
  .aoc-hero h1{
    color:#fff;
    font-size: 55px;
    line-height: 64px;
  }
  .aoc-hero .aoc-sub{
    font-size: 20px;
	line-height: 48px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 300;
  }
  .aoc-hero p.aoc-desc{
    color:#fff;
    max-width:420px;
    font-size:.95rem;
    margin-top:1rem;
  }
  /* Consultation card */
  .aoc-consult-card{
    background:#fff;
    padding:1.75rem 1.75rem 1.5rem;
    border-radius:12px;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
    width:100%;
  }
  .aoc-consult-card h5{
    font-size: 28px;
    color: #2b2b2b;
    font-weight: 300;
    position: relative;
    margin-bottom: 30px;
  }
  .aoc-consult-card h5::after{
  	content: "";
	position: absolute;
	bottom:-16px;
	left: 0%;
	width: 100%;
	height: 1px;
	background-color: #d7b835;
	z-index: 1;
	}
  .aoc-consult-card .form-control{
    border: 1px solid #a8a8a8;
    border-radius: 6px;
    padding: .6rem .2rem;
    font-size: 16px;
    color: #868686;
  }
  .aoc-consult-card .form-control:focus{
    box-shadow:none;
    border-color:var(--aoc-gold);
  }
  .aoc-consult-card textarea.form-control{min-height:80px;}
  /* ---------- Logo strip ---------- */
  .aoc-logos{padding:4.5rem 0 4rem;background-color: #fff;}
  .aoc-logos img{
    width:auto;
  }

  @media (max-width: 767px) {

    .aoc-logos .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 30px;
    }

    .aoc-logos .col {
        flex: 0 0 50%;
        max-width: 50%;
        text-align: center;
    }

    .aoc-logos img {
      width: 160px;
      height: 100px;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

    /* 5th logo center */
    .aoc-logos .col:last-child {
        margin-left: auto;
        margin-right: auto;
    }
}


  /* ---------- Services grid ---------- */
  .aoc-services{background:#f7f7f7; padding:5rem 0;}
  .aoc-services .aoc-intro-copy{
    max-width:560px;
    margin:1rem auto 0;
    color:var(--aoc-text-soft);
    font-size:.95rem;
  }
  .aoc-service-item{
    display:flex;
    align-items:center;
    gap:1rem;
    padding:1.4rem 0;
    position: relative;
  }
  @media (min-width: 992px) { 
    .aoc-service-item::after {
      content: "";
      position: absolute;
      right: 0;
      top: 20%;             
      height: 60%;         
      width: 1px;          
      background-color: hsl(0deg 0% 87.45%); 
      z-index: 1;
    }
    /* Removes the vertical border on the very last column items */
    .row.mt-5.text-start > div:last-child .aoc-service-item::after {
      display: none;
    }
  }
  /* 2. THE HORIZONTAL BORDER (Centered bottom-side line) */
  .aoc-service-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0%;              
    width: 95%;             
    height: 1px;            
    background-color: hsl(0deg 0% 87.45%); 
    z-index: 1;
  }
  .row.mt-5.text-start > div .aoc-service-item:last-child::before {
    display: none;
  }
  .aoc-service-item span{
    font-size: 16px;
    color: #2b2b2b;
    font-weight: 300;
    line-height: 24px;
  }
  @media (min-width:992px){
    .aoc-service-item.no-border-lg{border-bottom:1px solid var(--aoc-line);}
  }


/* Mobile - 2 Services per Row */
@media (max-width: 767px) {

  .aoc-services .row.mt-5 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
  }

  .aoc-services .row.mt-5 > div {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
    padding: 0 8px;
  }

  .aoc-service-item {
    gap: 10px;
    padding: 18px 0;
  }

  .aoc-service-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }

  .aoc-service-item span {
    font-size: 14px;
    line-height: 20px;
    padding-right: 0;
  }

  /* Remove vertical divider */
  .aoc-service-item::after {
    display: none;
  }

  .aoc-hero h1{
    
    font-size: 44px;
    
  }

  .aoc-page h2{
    
    font-size: 33px;
    line-height: 51px;
    
  }

}





  /* =========================================================
   Difference / Materials / Process
========================================================= */
.difference-section {
  padding: 86px 0 84px;
  background: #f8f6ef;
}

.difference-wrap {
  position: relative;
}

.difference-row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 28px;
}

/* center dividers BETWEEN columns */
.difference-divider {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #d7b449;
  pointer-events: none;
  z-index: 1;
}

/* 1st and 2nd column ke beech ka exact center */
.difference-divider.divider-1 {
  left: calc(33.333333% + (var(--bs-gutter-x) / 6) - 10px);
}

/* 2nd and 3rd column ke beech ka exact center */
.difference-divider.divider-2 {
  left: calc(66.666666% + (var(--bs-gutter-x) / 6));
}

.difference-block,
.materials-block,
.process-block {
  position: relative;
  z-index: 2;
  height: 100%;
}

/* shared yellow titles */
.difference-block .eyebrow,
.materials-block .eyebrow,
.process-block .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #8f8a7c;
  font-size: 16px;
  font-weight: 300;
  /* font-family: "G TUltra", "GTUltra-Thin", sans-serif; */
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

/* left block */
.difference-title {
  margin: 0 0 18px;
  color: #2b2b2b;
  font-size: 32px;
  line-height: 1.24;
  font-weight: 300;
  /* font-family: "G TUltra", "GTUltra-Thin", sans-serif; */
  max-width: 320px;
}

.difference-text,
.materials-note {
  margin: 0;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  /* font-family: "G TUltra", "GTUltra-Thin", sans-serif; */
}

.difference-text {
  max-width: 342px;
}

.difference-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  margin-top: 22px;
  max-width: 360px;
  padding-left: 20px;
}

.difference-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.difference-list li {
  position: relative;
  padding-left: 24px;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
  /* font-family: "G TUltra", "GTUltra-Thin", sans-serif; */
}

.difference-list li + li {
  margin-top: 8px;
}

.difference-list li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: url("check.svg") center / contain no-repeat;
}

/* middle block */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.material-box {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 300;
  /* font-family: "G TUltra", "GTUltra-Thin", sans-serif; */
  text-align: center;
  border: 0;
  background: #ffffff;
  box-shadow: none;
}

.materials-note {
  margin-top: 18px;
  max-width: 340px;
}

/* right block */
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  counter-increment: process;
  border-bottom: 1px solid #e3dccb;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2b2b2b;
  font-size: 12px;
  line-height: 1;
  font-weight: 300;
  /* font-family: "G TUltra", "GTUltra-Thin", sans-serif; */
  border: 1px solid #8f8a7c;
  border-radius: 50%;
}

.process-list li span {
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  /* font-family: "G TUltra", "GTUltra-Thin", sans-serif; */
}

/* responsive */
@media (max-width: 1199.98px) {
  .difference-row {
    --bs-gutter-x: 28px;
  }

  .difference-title {
    font-size: 28px;
    max-width: 100%;
  }

  .difference-list-wrap {
    column-gap: 20px;
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .difference-section {
    padding: 64px 0;
  }

  .difference-row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 36px;
  }

  .difference-divider {
    display: none;
  }

  .difference-title {
    font-size: 26px;
    max-width: 100%;
  }

  .difference-text,
  .materials-note,
  .difference-list li,
  .material-box,
  .process-list li span {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {

  .aoc-consult-card{
    margin-top: 50px;
    margin-left: 17px;
    margin-right: 17px;
  }

  
  .difference-section {
    padding: 42px 0;
  }

  .difference-block .eyebrow,
  .materials-block .eyebrow,
  .process-block .eyebrow {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .difference-title {
    font-size: 22px;
    line-height: 1.28;
    margin-bottom: 14px;
  }

  .difference-text,
  .materials-note {
    font-size: 14px;
    line-height: 1.65;
  }

  .difference-list-wrap {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .difference-list li,
  .material-box,
  .process-list li span {
    font-size: 14px;
  }

  .materials-grid {
    gap: 10px;
  }

  .material-box {
    min-height: 48px;
    padding: 10px;
  }

  .process-list li {
    gap: 10px;
    padding: 10px 0;
  }

  .process-list li::before {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 11px;
  }
}

  /* ---------- Why choose (dark) ---------- */
  .aoc-why{background:var(--aoc-dark); padding:5rem 0; color:#fff;}
  .aoc-why h2{color:#fff;}
  .aoc-why-item i{
    font-size:2.3rem;
    color:var(--aoc-gold);
  }
  .aoc-why-item h6{
    font-size:18px;
    line-height: 24px;
    text-transform:uppercase;
    margin:1.1rem 0 .6rem;
    color:#fff;
  }
  .aoc-why-item p{
    font-size:16px;
    color:#fff;
    max-width:180px;
    margin:0 auto;
    font-weight: 300;
    line-height: 22px;
  }
  .aoc_rule_small{
    width:35px;
    height:2px;
    background:var(--aoc-gold);
    margin:14px auto 0;
  }
  .aoc-why-item .aoc-rule{margin:0 auto 0;}
  /* ---------- Process ---------- */
  .aoc-process{background:#f7f7f7; padding:5rem 0;}
  .aoc-process-circle{
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    margin:0 auto;
  }
  .aoc-process-arrow{color:#2b2b2b; font-size:5.3rem;}
  .aoc-process-item h6{
    margin-top: 1.2rem;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #2b2b2b;
    font-weight: 300;
  }
  .aoc-process-item p{
    max-width: 190px;
    margin: .4rem auto 0;
    font-size: 16px;
    line-height: 24px;
    color: #2b2b2b;
    font-weight: 300;
  }

  @media (max-width: 767px) {

    .aoc-process .row{
        row-gap: 30px;
    }

    .aoc-process .aoc-process-item{
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 10px;
    }

    .aoc-process-circle img{
        width: 80px;
        height: 80px;
        object-fit: contain;
    }

    .aoc-process-item h6{
        font-size: 18px;
        margin-top: 12px;
    }

    .aoc-process-item p{
        font-size: 14px;
        line-height: 22px;
        max-width: 160px;
    }

    .aoc-logos .row{
      --bs-gutter-x: 8px;
      --bs-gutter-y: 20px;
  }

  .aoc-cta-phone{
    font-size:18px !important;
}

.aoc-cta h3{

  font-size: 33px;
}

}


  /* ---------- Featured projects ---------- */
  .aoc-projects{padding:5rem 0;background: #fff;}
  .aoc-project-card img{
    width:100%;
    border-radius:2px;
  }
  .aoc-project-card h6{
    margin-top: 1rem;
    margin-bottom: .2rem;
    font-size: 24px;
    line-height: 28px;
    color: #212121;
    font-weight: 300;
  }
  .aoc-project-card span{
    font-size: 16px;
    line-height: 28px;
    color: #212121;
    font-weight: 300;
  }

/* Mobile - Featured Projects 2 Cards Per Row */
@media (max-width: 767px) {

  .aoc-projects .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 20px;
  }

  .aoc-projects .aoc-project-card {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .aoc-projects .project-image {
    height: 300px;
    border-radius: 12px;
  }

  .aoc-project-card h6 {
    font-size: 17px;
    line-height: 22px;
    margin-top: 10px;
  }

  .aoc-project-card span {
    font-size: 14px;
    line-height: 20px;
  }
}




  /* ---------- Testimonials ---------- */
  .aoc-testimonials{
    background:#f7f7f7;
    padding:90px 0;
    overflow:hidden;

  }
  .aoc-eyebrow{
      text-transform:uppercase;
      letter-spacing:4px;
      font-size:15px;
      color:#555;
      margin-bottom:10px;
  }
  .aoc-testimonials h2{
      font-size:54px;
      font-weight:300;
      margin-bottom:60px;
  }
  .testimonialSwiper{
      overflow:visible;
  }
  .swiper-wrapper{
      align-items:center;
  }
  .swiper-slide{
    display:flex;
    justify-content:center;
   transform:scale(.72);
    opacity:.15;
    transition:all .45s ease;
    z-index:1;
}
.swiper-slide-active{
   transform:translateX(0) scale(1);
    opacity:1;
    z-index:20;
}
  .testimonial-card{
      width:750px;
      max-width:100%;
      background:#fff;
      padding:30px 40px;
      text-align:center;
  }
  .swiper-slide-active .testimonial-card{
   box-shadow:0 10px 30px rgba(0,0,0,.06);
   border:2px solid #c8a233;
   border-radius:20px;
   transform: scale(1) translateY(0);
  }  
  .swiper-slide:not(.swiper-slide-active) .testimonial-card{
      transform: scale(.82) translateY(6px);
      opacity: 1;
  }
  .testimonial-card p{
      font-size:16px;
      line-height:24px;
      color:#282828;
      margin-bottom:12px;
  }
  .testimonial-card h4{
      font-size:22px;
      margin-bottom:0px;
      font-weight:400;
      line-height: 35px
  }
  .testimonial-card span{
      text-transform:uppercase;
      letter-spacing:2px;
      color:#666;
      font-size:14px;
  }
  .swiper{padding-bottom: 80px !important;}
  .swiper-pagination-bullet{
      width:13px !important;
      height:13px !important;
      background:#adadad !important;
      opacity:1;
  }
  .swiper-pagination {
    z-index: 99999;
    bottom: -4px !important;
  }
  .swiper-pagination-bullet-active{
      background:#d7b835 !important;
  }
  .swiper-slide-prev{
    transform:translateX(180px) scale(.72);
    opacity:.22;
    z-index:5;
  }
  .swiper-slide-next{
    opacity:.22;
    transform:translateX(-180px) scale(.72);
    z-index:5;
  }
  @media(max-width:768px){
  .testimonial-card{
      padding:30px;
  }
  .testimonial-card p{
      font-size:16px;
  }
  .aoc-testimonials h2{
      font-size:40px;
  }
  }
  /* ---------- FAQ ---------- */
  .aoc-faq{padding:5rem 0;background-color: #f7f7f7;}
  .aoc-faq .accordion-item{
    border:none;
    border-bottom:1px solid var(--aoc-line);
    background:transparent;
  }
  .aoc-faq .accordion-button{
    background:transparent;
    box-shadow:none;
    font-size: 20px;
    line-height: 28px;
    color: #2b2b2b;
    font-weight: 300;
    padding:1.1rem 0;
  }
  /*.aoc-faq .accordion-button:not(.collapsed){
    color:var(--aoc-gold-dark);
    font-weight:600;
  }*/
  .aoc-faq .accordion-button::after {
    background-image: none !important;
    content: "+";
    width: 32px;
    height: 32px;
    font-size: 30px;
    font-weight: 300;
    color: #2b2b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform: none !important;
}
.aoc-faq .accordion-button:not(.collapsed)::after {
    content: "−";
}
  .aoc-faq .accordion-body{
    padding:0 0 1.2rem;
    font-size:16px;
    color:#2b2b2b;
    font-weight: 300;
    line-height: 24px;
  }


  @media (max-width: 767px) {

    .testimonialSwiper {
        overflow: hidden;
    }

    .testimonial-card {
        width: 100%;
        padding: 24px 20px;
        border: 2px solid #c8a233;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0,0,0,.06);
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 24px;
    }

    .swiper {
        padding-bottom: 55px !important;
    }

    .swiper-pagination {
        bottom: 0 !important;
    }
}



  /* ---------- CTA footer band ---------- */
  .aoc-cta{
    position:relative;
    background:#111 url("/public/assets/img/other-services/BottomBanner.png") center/cover no-repeat;
    padding:4.5rem 0 3.5rem;
    color:#fff;
  }
  .aoc-cta .container{position:relative; z-index:2;}
  .aoc-cta h3{
    font-size: 40px;
    line-height: 52px;
    color: #fff;
    font-weight: 300;
  }
  .sm_ctn_cnt{
    font-size: 24px;
    line-height: 32px;
    color: #fff;
    font-weight: 300;
    width: 370px;
  }
  .aoc-cta-phone{
    background:var(--aoc-gold);
    color:#20200f;
    padding:.9rem 1.6rem;
    border-radius:5px;
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    text-decoration:none;
    font-size: 29px;
    text-transform: uppercase;
    color: #2b2b2b;
    font-weight: bold;
  }
  .aoc-cta small{color:#fff; letter-spacing:.05em;}
  .g-6{
    --bs-gutter-x: 6rem;
  }