

body, 
body * {
    font-family: "archivo", sans-serif !important;
}

/* Apply font to all headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "archivo", sans-serif !important;
}

/* Apply font to all paragraphs and small text */
p, span, a, li,
.fs-4, .fs-5, .fs-6 {
    font-family: "Nunito Sans", sans-serif !important;
    font-size: 15px;
}



.section { padding: 70px 0;}
footer#uc-footer {
    background: #fafafa;
}
figure.image-bg-gray {
    background: whitesmoke;
}

.uc-navbar-nav li a, .login-header, .header-enquiry {
    font-family: "archivo", sans-serif !important;
    font-size: 17px !important;
}
.hero {
    padding: 250px 250px;
}
.container.report {
    margin-top: 100px;
}
.btn-success {
    background-color: #198754;
    color: #ffffff;
    border: 1px solid #198754;
}
h1.welcome {
    margin-left: 215px;
    margin-top: 150px;
}

/* Home Slider Css */
.slideshow .slick-dots {
    margin: 0;
    width: auto;
    padding: 0;
    list-style: none;
    position: absolute;
    top: 100%;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.slideshow .slick-dots li {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    position: relative;
    display: inline-block;
    padding: 0;
    cursor: pointer;
    margin-right: 8px;
}
.slideshow .slick-dots li button {
    color: transparent;
    line-height: 0;
    font-size: 0;
    background: transparent;
    display: block;
    cursor: pointer;
    color: var(--color-primary);
    width: 14px;
    height: 14px;
    text-indent: -9999px;
    padding: 0;
    border-radius: 100%;
    border: 2px solid var(--color-primary);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    opacity: 1;
}
.slideshow .slick-dots li.slick-active button {
    background-color:  var(--color-primary);
}




/* Footer Css */
footer .uc-footer-top {
    /* background: #1f1c1d; */
    padding: 25px 0;
}
footer .uc-footer-widgets {
    /* background: #231f20; */
    padding: 35px 0;
}
footer .uc-footer-bottom {
    /* background: #272324; */
    padding: 25px 0;
}



/* Testimonials Slider Dots */
.slick-testimonials .slick-dots {
    margin: 0;
    width: auto;
    padding: 0;
    list-style: none;
    position: absolute;
    bottom: 30px;
    text-align: center;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.slick-testimonials .slick-dots li {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    position: relative;
    display: inline-block;
    padding-top: 30px;
    cursor: pointer;
    margin-right: 8px;
}

.slick-testimonials .slick-dots li button {
    color: transparent;
    line-height: 0;
    font-size: 0;
    background: transparent;
    display: block;
    cursor: pointer;
    color: var(--color-primary);
    width: 14px;
    height: 14px;
    text-indent: -9999px;
    padding: 0;
    border-radius: 100%;
    border: 2px solid var(--color-primary);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    opacity: 1;
}

.slick-testimonials .slick-dots li.slick-active button {
    background-color: var(--color-primary);
}


.testimonials-area .client-box {
  transition: all 0.4s ease;
}

.testimonials-area .client-box:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 10px 25px rgba(25, 135, 84, 0.3);
}




/* --- Mobile-only Working Process --- */
@media (max-width: 767.98px) {

  /* make each column a positioning context & allow overflow so circle not clipped */
  .row.row-cols-1.row-cols-md-4 .col {
    position: relative;
    padding-top: 0;
    overflow: visible;
    margin-top: 170px;
  }

  /* mobile-visible circle: positioned behind the card (z-index: 0) */
  .row.row-cols-1 .col > .d-flex.d-md-none {
    position: absolute;
    top: -150px;                 /* adjust to change vertical overlap */
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;                 /* <-- set behind the card */
    width: 250px;
    height: 250px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    pointer-events: none;       /* so circle doesn't block clicks */
  }

  /* circle shape + image cover */
  .row.row-cols-1 .col > .d-flex.d-md-none .rounded-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
  }
  .row.row-cols-1 .col > .d-flex.d-md-none .rounded-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* CARD should appear ON TOP of the circle */
  .row.row-cols-1 .col .card {
    margin-top: 80px;           /* space to allow partial circle visibility behind card */
    width: 100%;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
    position: relative;         /* <-- make card a stacking context */
    z-index: 2;                 /* <-- card on top of circle */
    box-sizing: border-box;
    background: #ffffff;        /* ensure card background covers behind circle */
  }
}


/* working process hover effects */
.working-process .card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Four border lines */
.working-process .card::before,
.working-process .card::after,
.working-process .card span::before,
.working-process .card span::after {
  content: '';
  position: absolute;
  background-color: #168D73; /* green border color */
  transition: all 0.5s ease;
  z-index: 2;
}

/* Top border */
.working-process .card::before {
  height: 2px;
  width: 0;
  top: 0;
  left: 0;
}

/* Right border */
.working-process .card::after {
  width: 2px;
  height: 0;
  top: 0;
  right: 0;
}

/* Bottom border */
.working-process .card span::before {
  height: 2px;
  width: 0;
  bottom: 0;
  right: 0;
}

/* Left border */
.working-process .card span::after {
  width: 2px;
  height: 0;
  bottom: 0;
  left: 0;
}

/* Hover animation — each border draws itself */
.working-process .card:hover::before {
  width: 100%;
  transition-delay: 0s;
}

.working-process .card:hover::after {
  height: 100%;
  transition-delay: 0.15s;
}

.working-process .card:hover span::before {
  width: 100%;
  transition-delay: 0s;
}

.working-process .card:hover span::after {
  height: 100%;
  transition-delay: 0.15s;
}



/* counter widgets  */
.counter-widgets {
  transition: all 0.4s ease;
}

.counter-widgets:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(25, 135, 84, 0.5);
  border-color: #198754;
}


/* Trust badges (icons) and cards */
@media (max-width: 768px) {
  .row.text-center .col-6 {
    padding: 10px 5px;
  }
  .row.text-center .col-6 i {
    font-size: 1.8rem;
  }
  .row.text-center .col-6 h6 {
    font-size: 0.9rem;
  }
  .row.text-center .col-6 p {
    font-size: 0.8rem;
  }
}


/* Services - Middle content and image (Commercial) adjustment */
@media (max-width: 991.98px) {
  .swap-on-mobile {
    display:flex;
    flex-direction:column;
    gap:1rem;
  }
  .swap-on-mobile > [class*="col-"] {
    width:100% !important;
    max-width:100% !important;
    flex:unset !important;
  }
  .swap-on-mobile > .col-12.col-lg-7 { order:1; }
  .swap-on-mobile > .col-12.col-lg-5 { order:2; }
}
