@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
:root {
  --theme-color: #000000;
  --theme-color-second:#FFFF00;
  --theme-color-third: #0838c5;

  --heading-font:  "DM Sans", sans-serif;
  --paragraph-font:  "DM Sans", sans-serif;
  --span-font: 'spanist';



  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family:  "DM Sans", sans-serif;
  /* color: var(--theme-color) !important; */
}


a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {}

h4 {
    font-size: 21px;
}

h5 {
    font-size: 18px;

}

h6{}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}


.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}
.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #0838C5;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop > div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop > div.text {
	font-size: 0.5rem;
	line-height: 10px;
	text-transform: uppercase;
	font-weight: 900;
	font-family: "Open Sans", sans-serif;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(50%) translateX(-50%);
	opacity: 0;
	margin-top: 1px;
	z-index: 999999;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 150px;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-third);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 12rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

a.comon-btn:hover {
  background: var(--theme-color-second);
  color: #000000;
}
a.btn-2{
  background: transparent;
  color:  var(--theme-color-third);
}
a.btn-3{
  background: var(--theme-color-second);
  
  color: var(--theme-color);
  border: 1px solid #000;
  border-color: var(--theme-color-third);
}
a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
    color: #000000;
    font-size: 16px;
    text-transform: capitalize;
    padding: 11px 19px;
    display: inline-block;
    font-weight: 500;
}

.navbar li:hover a {
  color: var(--theme-color-third);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-third);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}



#main_header a.comon-btn{
  border: 2px solid var(--theme-color-third);
  width: 15rem;
  padding: 7px 6px;
}
.banner {
    padding: 150px 0;
}
.banner h1{
  color: #fff;
  text-shadow: 1px 1px 1px #9b9b9b;
}

.banner  form {
    background-color: #fff;
    padding: 3px;
    border-radius: 600px;
    border: 3px solid var(--theme-color-third);
}
.banner   select, .banner   button {
    background: transparent;
    color: #000;
    border: none;
    padding: 15px 17px;
    width: 95%;
    height: 60px;
    font-weight: 600;
}
.home-modelling-1 a {
    color: #000;
    background-color: #ffff00;
    height: 142px;
    width: 100%;
    text-align: center;
    display: flex!important;
    align-items: stretch;
    border-radius: 3px;
    justify-content: center;
    padding: 3px;
}
.home-modelling-1 a:hover{
  background-color: #dedede;
}
.home-modelling-1 a h6 {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
}
.home-modelling-1 .home-model-unit {
  display: flex;
  grid-area: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home-modelling-1 .home-model-unit a img {
    margin: 9px;
    height: 49px;
    object-fit: contain;
}
.popular-project .line {
    height: 3px;
    width: 100%;
    background-color: var(--theme-color-second);
    /* margin: 0 auto; */
}
.popular-project .line.line-blue{
  background-color: var(--theme-color-third);
}

.popular-project .project-box {
    /* padding: 10px; */
    /* border: 1px solid #9b9b9b; */
}

.popular-project  .owl-nav img{
  width: 35px;
}

.popular-project button.owl-prev {
   
    position: absolute;
    top: 50%;
    left: -50px;
}

.popular-project button.owl-next {
   
    position: absolute;
    top: 50%;
    right: -50px;
}

.blog-sec h5 {
    font-size: 18px;
    color: var(--theme-color-third);
    margin-bottom: 10px;
}

.blog-sec p{
  font-size: 15px;
}

.blog-sec img{
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.area_sec .area-pin {
  display: flex;
  gap: 10px;
  color: var(--theme-color-third);
}

.area_sec  ul li{
  margin-bottom: 15px;
}
.area_sec  ul li:last-child{
  margin-bottom: 0;
}

.footer {
  background-color: var(--theme-color-third);
  color: #f4f4f4;
  padding: 55px 0;
}

.footer h4{
  color: var(--theme-color-second);
}

.footer .social {
  display: flex;
  gap: 10px;
}

.footer .social a {
  display: flex;
  height: 40px;
  width: 40px;
  border: 1px solid #f4f4f4;
  border-radius: 600px;
  align-items: center;
  justify-content: center;
  line-height: normal;
  color: #f4f4f4;
}

.footer  .ft-list li a{
  color: #f4f4f4;
  display: flex;
  gap: 10px;
}
.footer  .ft-list li{
  margin-bottom: 10px;
}

.footer hr{
  color: var(--theme-color-second);
  opacity: 1;
  height: 3px;
}

#main_header {
  background: var(--theme-color-second);
}

.home-modelling-1 .div.units.text-center img {
    height: 58px;
    margin-bottom: 15px;
    object-fit: contain;
}

.home-modelling-1 .div.units {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
#google .google-logo {
    width: 60%;
    margin-bottom: 15px;
}
#google .google-btn {
   
    display: flex;
    align-items: center;
    gap: 5px;
    width: 80%;
    justify-content: center;
   
    margin: 0 auto;
}



#google .review-box {
    background-color: #fff;
    border: 1px solid #e2e2e2;
    padding: 19px 15px;
    border-radius: 6px;
}

#google .review-box .name-logo {
    width: 50px !important;
    height: 50px !important;
}

#google .review-box .name-box h6,
#google .review-box .name-box p {
    margin: 0;
}

#google .review-box .img-box {
    display: flex;
    gap: 25px;
    min-height: 80px;
}

#google .review-box .name-box h6 {
    color: var(--theme-color);
    font-size: 15px;
    font-weight: 600;
}

.review-box .name-box p {
    color: #656565;
    font-size: 12px;
}

#google .content {
    height: 100px;
    overflow-y: scroll;
}

#google .content p {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 9px;
}

#google .owl-nav img {
    width: 32px;
}

#google .owl-nav {
    display: flex;
    gap: 35px;
    width: 100%;
    justify-content: end;
    margin-top: 25px;
}

#google .owl-dots {
    display: none;
}
#google ul{
  display: flex;
  font-size: 13px;
  color: orange;
}

.banner button {
    background: var(--theme-color-third);
    border-radius: 60px;
    margin-left: 3px;
    height: 50px;
    width: 50px;
    display: flex;
    color: #fff;
    align-items: center;
}



#contact .contact-box .icon-box {
  background-color: var(--theme-color-third);
  width: 60px;
  height: 60px;
  color: var(--theme-color-second);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

#contact .contact-box a {
  color: var(--theme-color);
}

#contact .form-box{
  background-color: var(--theme-color-third);
}
.map{
  line-height: 0;
}

.map iframe{
  width: 100%;
}


.contact-us .contact-box {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-us .contact-box .icon-box{
  background-color: #fff;
  width: 60px;
  height: 60px;
  color: var(--theme-color-third);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.contact-us .contact-box h6{
  margin-bottom: 0;
  font-weight: 800;
}

.contact-us .contact-box  a{
  color: var(--theme-color);
}

.contact-us form input{
  padding: 14px;
  border-radius: 3px;
  border-color: 1px solid var(--theme-color-third);
}

.contact-us form textarea{
  padding: 14px;
  border-radius: 3px;
  border-color: 1px solid var(--theme-color-third);
  height: 150px;
}

.contact-us form button{
  background-color: var(--theme-color-second);
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: 3px;
  color: var(--theme-color-third);

}




.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 15px 19px 35px;
  border-radius: 8px;
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #606060;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 600;
  margin-bottom: 18px;
  /* font-size: 29px; */
}

.inner-blog-left-sec .inner-blog-sec1 img {
  border-radius: 5px;
  margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: var(--theme-color);
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgba(69, 69, 70, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}


/* inner-blog-right-sec */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 35px 21px;
  border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #1c1c1c3b;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
}

.inner-blog-right-sec .blog-search form button {
  /* position: absolute;
top: 0;
right: 0;
width: 50px;
height: 100%; */
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 15px;
  color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #000000ab;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #000000ab;
  font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}

.inner-blog-sec1 img {
  height: 335px;
  object-fit: cover;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
  height: 80px;
  object-fit: cover;
}


.faq .accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
  border: none;
  border-radius: 0 !important;
  color: #000;
}

.faq .accordion-header {
  margin-bottom: 0;
  border-bottom: 1px solid #000;
  background: #fff;
  color: #000;
}

.faq .accordion-button {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #ffffff;
  box-shadow: none;
  font-weight: 500;
  letter-spacing: 1px;
}

.faq .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("../image/right-arrow-2.png");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
  transform: rotate(45deg);
}

.faq .accordion-button:not(.collapsed)::after {

  transform: rotate(331deg);
}

.faq .contact-form {
  border: 1px solid #000;
  border-color: #000 !important;
}

.faq form input {
  border: none;
  border: 1px solid #000;
  padding: 10px;
  height: 51px;
}

.faq form select {
  border: none;
  border: 1px solid #000;
  padding: 10px;
  color: #000;
  height: 51px;
}

.faq form textarea {
  border: none;
  border: 1px solid #000;
  padding: 10px;
  height: 125px;
}

.faq form button {
  width: 100%;
  border: 1px solid #000;
  padding: 10px;
  background-color: #000;
  color: var(--theme-color-second);
}

.why-choose .counter-box {
    padding: 25px 18px;
    color: var(--theme-color-third);
    border-radius: 10px;
}
.why-choose .counter-box .heading p {
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1;
}

.why-choose .counter-box hr {
    opacity: 1;
    height: 5px;
    border-radius: 10px;
}

.about_sec1 .quality-list {
    display: flex;
    gap: 70px;
    padding-bottom: 11px;
}
.about_sec1 .quality-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 8px;
}
.about_sec1 .quality-list ul li {
    font-size: 16px;
}

.about_sec1 .quality-list ul li img {
    width: 24px;
}

.how_it_work i{
  color: var(--theme-color-third)!important;
}

.how_it_work .step-box{
  border: 5px solid var(--theme-color-second);
}

 .custom-input, .custom-textarea, .custom-select {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px;
      background-color: #fff;
    }

    .form-label {
      font-weight: 500;
      margin-bottom: 6px;
      display: block;
    }

    .btn-submit {
      padding: 12px 20px;
      font-size: 16px;
      border: none;
      background-color: var(--theme-color-third);
      color: #fff;
      border-radius: 5px;
    }

    .btn-submit:hover {
      background-color: #0056b3;
    }


    .form-wrapper {
      background-color: #fff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }

  .job_details  .section-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 20px;
    }
  .job_details  .job-meta span {
      display: inline-block;
      margin-right: 15px;
      color: #666;
    }
   .job_details .sidebar-box {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 10px;
    }


    .job_details li{
    margin-bottom: 12px;

    }
    .job_details ul.list-unstyled.mb-4 li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
}

.inner-banner-blog .head-4 {
  border-left: 5px solid var(--theme-color-third);
  margin-bottom: 35px;
}

.inner-banner-blog .head-4  ul{
  list-style: disc;
  padding-left: 25px;
}
.inner-banner-blog .head-4  ul li{
  margin-bottom: 10px;
}

.inner-banner-blog .list-group-item {
    position: relative;
    display: inline-block;
    padding: .5rem 0rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: 0px solid rgba(0,0,0,.125);
    text-decoration: underline;
    font-weight: 600;
    font-size: 14px;
}
.inner-banner-blog  .remodel-box {
    background: #f5f9ff;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
}

  .inner-banner-blog  .remodel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

  .inner-banner-blog  .remodel-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--theme-color-third);
    }

  .inner-banner-blog  .remodel-subtitle {
      font-size: 0.875rem;
      color: #555;
    }

 .inner-banner-blog   .get-quote-btn {
      background-color:var(--theme-color-third);
      color: white;
      border: none;
      border-radius: 999px;
      padding: 10px 20px;
      font-weight: 600;
    }

  .inner-banner-blog  .cost-range {
      font-size: 2rem;
      font-weight: bold;
      color: #f65c3c;
    }

  .inner-banner-blog  .meta-label {
      font-size: 0.75rem;
      color: #888;
    }

.inner-banner-blog    .meta-value {
      font-weight: 600;
      font-size: 1rem;
      color: #222;
    }

   .inner-banner-blog .cost-bar {
      width: 100%;
      height: 6px;
      background: #e0e0e0;
      border-radius: 10px;
      position: relative;
      margin-top: 15px;
      margin-bottom: 10px;
    }

 .inner-banner-blog   .cost-bar-fill {
      position: absolute;
      height: 100%;
      background-color:var(--theme-color);
      left: 25%;
      right: 25%;
      border-radius: 10px;
    }

  .inner-banner-blog  .cost-bar-indicator {
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 12px;
      height: 12px;
      background-color:var(--theme-color);
      border-radius: 50%;
      z-index: 2;
    }

  .inner-banner-blog  .avg-label {
      text-align: center;
      font-size: 0.9rem;
      font-weight: 600;
      color: #333;
    }

/*     .inner-banner-blog .head-font-ciustom{
      overflow-y: scroll;
      height: 100vh;
    } */

    .inner-banner-blog .head-font-ciustom::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, Edge */
}



.inner-banner-blog .heading-box-2 .quote-box {
      background-color: #f3f6fd;
      padding: 30px;
      border-radius: 12px;
      
      margin: 50px auto;
      text-align: center;
    }

  .inner-banner-blog .heading-box-2  .quote-box h5 {
      font-weight: 700;
      color: #11145f;
    }

  .inner-banner-blog .heading-box-2   .quote-box p {
      font-size: 0.95rem;
      color: #444;
      margin-bottom: 25px;
    }

  .inner-banner-blog .heading-box-2   .quote-input-group {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 10px 15px;
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

  .inner-banner-blog .heading-box-2   .quote-input-group i {
      font-size: 1rem;
      margin-right: 8px;
      color: #555;
    }

   .inner-banner-blog .heading-box-2  .quote-input-group input {
      border: none;
      outline: none;
      flex: 1;
      font-size: 1rem;
      background-color: transparent;
    }

  .inner-banner-blog .heading-box-2   .quote-button {
      background-color: var(--theme-color-third);
      color: white;
      font-weight: 600;
      border: none;
      width: 100%;
      padding: 12px;
      border-radius: 999px;
      transition: background-color 0.2s ease;
    }

   .inner-banner-blog .heading-box-2  .quote-button:hover {
      background-color: #000000;
    }

    .inner-banner-blog #list-example ul{
      list-style: disc;
      padding-left: 15px;
    }
    .inner-banner-blog #list-example ul li{
      margin-bottom: 10px;
    }

    #blog-banner{
      padding: 50px 0;
    }

    a.btn-dark{
      background-color: #000;
      border-color:#000 !important;
    }



/* 04-08-2025 */


/* Contact Form */


form.wpcf7-form.init p,form.wpcf7-form.invalid p,form.wpcf7-form.sent p {
    margin-bottom: 0 !important;
}

section#contact.form-box.wpcf7-response-output {
    color: #fff !important;
}


/* Blog Pagination */

.center {
  display: flex;
justify-content: center;
margin-top: 40px;
}

a.page-numbers {
    color: #000000;
    padding: 10px 10px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
border-radius: 5px;
    margin: 0px 5px;
    padding: 10px 15px;
   font-size: 18px;
}

a.page-numbers:hover {
    background-color: #d6d4d4;
}

span.page-numbers.current {
    background-color: var(--theme-color-third);
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0px 5px;
    font-size: 18px;
        z-index: 3;
border-radius: 5px;
}

ul#blog_bullet {
    list-style: disc;
    padding-left: 40px;
}
.head-font-ciustom ol li::marker {
    font-size: 24px;
    font-weight: 600;
}
.why-choose-us i {
    font-size: 35px;
    color: var(--theme-color-third);
    height: 75px;
    width: 75px;
    display: flex;
    background: var(--theme-color-second);
    margin: 0 auto;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 600px;
    border: 3px solid var(--theme-color-third);
}
.why-choose-us .choose-card h5 {
    font-size: 20px;
    color: var(--theme-color-third);
}
.ez-toc-sticky {
    display: none;
}
.inner-banner-blog .head-font-ciustom {
    overflow-y: scroll;
    height: 100vh;
}