
    .hero-banner .slide-item {
      position: relative;
      color: white;
      padding: 40px 0;
      height: 600px;
    }
    .hero-banner .slide-item:before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.3); /* black overlay with 30% opacity */
}
    .hero-banner .slide-item img {
      width: 100%;
      height: 500px;
      object-fit: cover; 
    filter: brightness(0.8);
    }
.hero-banner .button1{
    background-color: var(--primary-color);
}
    .hero-banner .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 10px;
    opacity: 0;
    max-width: 1000px;
    margin: auto;
    width: 100%;
    text-align: center;
    }

    .hero-banner .slide-content h1, 
    .hero-banner .slide-content h2 {
        position: relative;
        display: block;
        color: white;
        font-size: 58px; 
        font-weight: 700;
        text-transform: uppercase;
    margin: 30px 0;
    }

    .hero-banner .slide-content p {
      font-size: 1rem;
      margin: 0;
      opacity: 0.9;
      opacity: 0;
    font-size: 21px;
    color: white;
    font-weight: 400;
    line-height: 31px;
}

    /* Animations */
    .hero-banner .animate__fadeUp {
      animation: fadeUp 1.5s forwards;
    }

    .hero-banner .animate__fadeDelay {
      animation: fadeUp 1.5s forwards;
      animation-delay: 0.3s;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Custom navigation */
   .hero-banner  .owl-nav button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%); 
      border-radius: 50%;
      width: 70px;
      height: 70px;
      border: none;
      outline: none;
      transition: 0.3s;
      background: rgba(0,0,0,0.5) !important;
    }
   .hero-banner  .owl-nav button i{
    color: white;
   }
    .hero-banner .owl-nav button:hover {
      background: white !important;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

 .hero-banner .owl-nav button:hover i{
      color: var(--text-color) !important;
   }
   .hero-banner  .owl-nav .owl-prev { left: 15px; }
    .hero-banner .owl-nav .owl-next { right: 15px; }

    .hero-banner .owl-dots {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
    }

    .hero-banner .owl-dots .owl-dot span {
      background: white !important;
      width: 40px;
      height: 4px;
      margin: 5px 7px; 
      transition: 0.3s;
      display: inline-block;
    }

    .hero-banner .owl-dots .owl-dot.active span {
      background: var(--primary-color) !important;
      transform: scale(1.3);
    }



    
.hero-banner .slide-content-text{
    position: relative;
    margin-bottom: 20px;
    display: block;
}
.hero-banner .slide-content-text .big-title{
	position: relative;
	color: white;
	font-size: 72px;
	line-height: 1.1em;
	font-weight: 800;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0px 0px 8px rgba(0,0,0,0.2);
}
.hero-banner .slide-content-text .text{
	position: relative;
    display: inline-block;
    padding-top: 23px;
    border-top: 1px solid var(--primary-color);
	color: var(--text-color);
	font-size: 20px;
	line-height: 1.5em;
	font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
    font-family: 'Nunito Sans', sans-serif;
}


.slide-content-text .title{
    position: relative;
    display: inline-block;
    height: 50px;
    padding: 19px 40px 11px;
    background: transparent;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 5px;
    text-transform: capitalize; 
    z-index: 1;
}

.slide-content-text .title:before {
    position: absolute;
    top: 7px;
    left: 0px;
    right: 0px;
    height: 43px;
    background-color: rgba(255, 255, 255, 1.0);
    content: "";
    border-radius: 5px;
    z-index: -1;
}
.slide-content-text .title:after {
    position: absolute;
    top: 0px;
    left: 15px;
    right: 15px;
    height: 7px;
    background-color: rgba(255, 255, 255, 0.45);
    content: "";
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: -1;
}


/*about sec css start here*/

.about__images {
    position: relative; 
    margin-right: 25px;
    margin-bottom: 25px;
}
.about__images::before {
border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--primary-color);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    position: absolute;
    overflow: hidden;
    content: "";
    height: 100%;
    left: 15px;
    z-index: -9;
    width: 100%;
    top: 10px;
    border-radius: 10px;
}

.about__images::after {
border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--primary-color);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    position: absolute;
    overflow: hidden;
    content: "";
    height: 100%;
    left: 25px;
    z-index: -9;
    width: 100%;
    top: 25px;
    border-radius: 10px;
}
.about__images  img{ 
 
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
} 
.about__images .shape img {
    position: absolute;
    z-index: -1;
    width: fit-content;
}
.about__images .shape img:nth-child(1) {
    right: -50px;
    top: -10px;
    z-index: -2;
}
.about__images .shape img:nth-child(2) {
    
    left: -65px;
    bottom: -10px;
}

.alltuchtopdown {
	-webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
	animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
	animation-duration: 3s;
}
@keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
    50% {
        -webkit-transform: rotateX(0deg) translateY(-20px);
        -moz-transform: rotateX(0deg) translateY(-20px);
        -ms-transform: rotateX(0deg) translateY(-20px);
        -o-transform: rotateX(0deg) translateY(-20px);
        transform: rotateX(0deg) translateY(-20px);
    }
    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
    }

    @-webkit-keyframes alltuchtopdown {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
    50% {
        -webkit-transform: rotateX(0deg) translateY(-20px);
        -moz-transform: rotateX(0deg) translateY(-20px);
        -ms-transform: rotateX(0deg) translateY(-20px);
        -o-transform: rotateX(0deg) translateY(-20px);
        transform: rotateX(0deg) translateY(-20px);
    }
    100% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        -moz-transform: rotateX(0deg) translateY(0px);
        -ms-transform: rotateX(0deg) translateY(0px);
        -o-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px);
    }
}

.about-left-content{
    padding-left: 40px;
}
.about-right-content{
    padding-right: 40px;
}


.service-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../images/dotted-map.svg);
    background-position: top left;
    background-size: auto;
    background-repeat: repeat-x;
    background-color: #f0f6f3;
    width: 100%;
    height: 808px;
}
.service-area{
    position: relative;
}

.single-service-style {
    position: relative;
    display: block; 
    background-color: white;
box-shadow: rgba(0, 0, 0, 0.35) 0px 3px 17px 0px;
    overflow: hidden;
    border-radius: 10px;
} 
.single-service-style .img-holder {
    position: relative;
    display: block;
    z-index: 1;
}
.single-service-style .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}
.single-service-style .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
    height: 250px;
    object-fit: cover;
}
.overlay-style-two {
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    top: 0px;
    z-index: 2;
    opacity: 0;
    transition: all 900ms ease;
}
.overlay-style-two:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    width: 100%;
    height: 50%;
    display: block;
    opacity: 0;
    text-align: center;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: top;
    transition: all 0.3s;
    background-color: rgba(18, 18, 18, 0.90);
}
.overlay-style-two:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    display: block;
    opacity: 0;
    text-align: center;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 0.3s;
    background-color: rgba(18, 18, 18, 0.90);
}
.single-service-style:hover .overlay-style-two {
    opacity: 1;
}
.single-service-style:hover .img-holder .overlay-style-two:before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms 
ease 100ms;
}
.single-service-style:hover .img-holder .overlay-style-two:after {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms 
ease 300ms;
}
.single-service-style .text-holder {
    position: relative;
    display: block;
   padding: 25px;
}
.single-service-style .text-holder .top {
    position: relative;
    display: block;
    overflow: hidden; 
    margin-bottom: 10px;
} 
.single-service-style .text-holder .top .title-holder {
    position: relative;
    display: block;
}
.single-service-style .text-holder .top .title-holder h3 { 
    margin-left: 0px;
    transition: all 300ms ease 100ms;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
}
.single-service-style .text-holder .text {
    position: relative;
    display: block;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateY(1px);
    transition: all 300ms ease 100ms;
}
.single-service-style .text-holder .text p {
    margin: 0;
}
.single-service-style .text-holder .top .icon-holder .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0px;
    height: 60px;
    background: var(--primary-color);
    text-align: center; 
    border-radius: 4px;
    z-index: 3;
    transition: all 300ms ease 100ms;
}
.single-service-style .text-holder .top .icon-holder .overlay-icon span:before {
    color: white;
    font-size: 35px;
    line-height: 60px;
}
.single-service-style .text-holder .top .title-holder h3 a{
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}
.single-service-style .text-holder .top .title-holder h3 a:before {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 150px;
    height: 3px;
    background: var(--primary-color);
    content: "";
    transition: all 300ms ease 100ms;

} 

.border-class{
        position: relative;
    display: block;
    width: 90px;
    height: 5px;
        margin: 20px auto;
}
.border-class:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    content: "";
}
.border-class:after {
    position: absolute;
    right: 10px;
    background: var(--primary-color);
    content: "";
    top: 0;
    left: 0px;
    width: 5px;
    height: 5px;
}
.border-class span {
    position: absolute;
    background: var(--primary-color);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 70px;
    margin: 0 auto;
} 

/*project facts css start here*/
.award-sec{
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    
    background-image: url(../images/people-taking-part-high-protocol-event.avif);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.fullWidth {
    width: 100%;
    display: table;
    float: none;
    padding: 0;
    min-height: 1px;
    position: relative;
}

.background-overlay {
    background-color: var(--secondary-color );
    opacity: 0.9;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.projectFactsWrap {
 display: grid;
      grid-template-columns: repeat(4, 1fr); /* 2 column banenge */
      gap: 20px; /* boxes ke beech ka gap */
}
.projectFactsWrap .item { 
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .3); 
}
.projectFactsWrap .item i {
    vertical-align: middle;
    font-size: 80px;
    color: white;
}
.projectFactsWrap .item p.number{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 7px;
    color: white;
    margin-top: 20px;
}
.projectFactsWrap .item p{
    font-weight: 600;
    text-transform: none;
    margin-bottom: 0px;
    color: white;
    font-size: 19px;
    line-height: 30px;
    display: block;
    letter-spacing: 1px;
}



/**/
.service-section { 
    background-color: #ffdbe9; 
}
.home-new-box { 
  position: relative;
  background-color: white;
  height: 100%; 
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.home-new-box-content {
  position: relative;
  padding: 20px;
}

.home-new-box::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.home-new-box:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
.home-new-box h3 {
  margin: 0;
  color: var(--black);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
} 

.home-new-box:hover h3 {
  color: var(--black);
}

.home-new-box p{
  font-size: 17px; 
  margin: 0;
  line-height: 23px;
}
.home-new-box-image {
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-new-box-image img{
  object-fit: cover;
  transition: .3s;
}
 
 .home-new-box:hover img{
    transform: scale(1.1);
 }

/*GALLERY CSS start here*/

.gallery-section .gallery-section-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    justify-content: center;
    align-items: center;
}
.gallery-section .card {
    background: var(--white);
    box-shadow: unset;
    border-radius: 0;
    overflow: hidden;
    border: 0;
}
.gallery-section .card-image {
    background: var(--white);
    display: block;
    padding-top: 70%;
    position: relative;
    width: 100%;
}
.gallery-section .card-image a:before {
    content: "\f002";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: white;
    font-family: 'FontAwesome';
    z-index: 9;
    display:none;
}
.gallery-section .card-image a:hover:before{
  display: inline-block;
}
.gallery-section .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}
.gallery-section .card-image:hover img{
    filter: brightness(0.5);
    transform: scale(1.1);
}  

/*==========Blog CSS Start==========*/
 
.blog-title .h2-title {
  margin-bottom: 38px;
}

.blog-lists .row {
  --bs-gutter-y: 1.5rem;
}

.blog-box {
  position: relative;
}


.blog-img-box {
  position: relative;
  margin-bottom: 23px;
}

.blog-img-wp {
  position: relative;
  width: 100%;
  height: 100%; 
  overflow: hidden;
}
.back-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blog-img {
  width: 100%;
  transition: 0.3s;
  height: 300px;
  object-fit: cover;
}

.blog-box:hover .blog-img {
  transform: scale(1.03) ;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.blog-date img {
  width: 20px;
  flex-shrink: 0;
}

.blog-box-text h4 {
  margin-bottom: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
    font-weight: 700;
} 
.blog-box-text h4 a {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  display: inherit;
  -webkit-line-clamp: inherit;
  line-clamp: inherit;
  -webkit-box-orient: inherit;
  box-orient: inherit;
  overflow: inherit;
  text-overflow: inherit;
  transition: 0.3s;
}
 
.blog-box-text:hover  a {
  color: var(--primary-color);
}

.blog-box-text p {
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*==========Blog CSS End==========*/


/*Testimonials section start*/

.testimonials-sec {
    position: relative;
    background-color: #F4F4F9;
    background-image: url(../images/bg.webp);
    background-position: center center;
    background-size: cover;
    text-align: center;
}

.testimonials-sec:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(38 92 165 / 21%);
    z-index: 1;
} 
.testimonials-sec .owl-item img {
    width: 70px;
    border-radius: 100%;
    margin-left: auto;
    margin-right: auto;
}
.testimonials-sec .owl-item .quote-asset {
    width: 38px;
    height: auto;
    margin: 30px 0 40px;
    border-radius: 0;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-sec .owl-item h5 {
    margin: 20px 0 5px;
    color: #fff;
    font-size: 21px;
}
.testimonials-sec h2, .testimonials-sec p{
    position: relative;
    z-index: 2;
    color: var(--white);
}
.testimonials-sec p{
    margin-bottom: 30px;
}
.testimonial-slider .item{
    max-width:800px;
    margin: auto;
}

   .testimonials-sec  .owl-nav button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%); 
      border-radius: 50%; 
      border: none;
      outline: none;
      transition: 0.3s; 
    }
    .testimonials-sec .owl-nav .owl-prev {
    left: 15px;
}
.testimonials-sec .owl-nav .owl-next {
    right: 15px;
}
   .testimonials-sec  .owl-nav button i{
    color: white;
    font-size: 40px;
   } 
   .testimonials-sec .owl-nav button:hover i{
    color:var(--primary-color); 
   } 

   
    .testimonials-sec .owl-dots {
       margin-top: 20px;

    }

    .testimonials-sec .owl-dots .owl-dot span {
      background: #fff !important;
      width: 40px;
      height: 4px;
      margin: 5px 7px; 
      transition: 0.3s;
      display: inline-block;
    }

    .testimonials-sec .owl-dots .owl-dot.active span {
      background: var(--primary-color) !important;
      transform: scale(1.3);
    }



/*----------call to action css start here----------*/



.call-to-action{

	background-image: url(../images/about-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; 
    position: relative;
    background-attachment: fixed;
}

.call-to-action .col-md-8{
	position: relative;
	z-index: 9;
}

.call-to-action .background-overlay{
    background-color: var(--secondary-color)  !important;
}
.call-to-action .button1 {
    background: var(--primary-color);
}
.call-to-action h2{
	color: white;
}
.call-to-action .border-class span, .call-to-action .border-class:before, .call-to-action .border-class:after{
background-color: white;
}
.call-to-action p{
    font-size: 20px;
	color: white;
}


/*About css start here*/
.banner__inner-page {
    position: relative; 
        background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/bg-img.jpg);
    background-size: cover;
    padding: 90px 0; 
    overflow: hidden;
}
.banner__inner-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270.07deg, var(--secondary-color) 0.07%, #00060c 99.95%);
   
    opacity: 0.5;
}
.banner__inner-page .container-fluid{
    position: relative;
} 
.banner__inner-page .shape3 {
    position: absolute;
    right: 0;
    bottom: 0; 
    height: 100%;
}
 
.banner__inner-page h1{
    color: white; 
    font-size: 56px;
    font-weight: 700; 
    margin-bottom: 20px;
}
.banner__inner-page p{
    color: white;
}  
.banner__inner-page .breadcrumb-menu li {
  display: inline-block;
  position: relative;
  color: var(--white);
  font-weight: 500; 
  font-size: 18px;
}

.banner__inner-page .breadcrumb-menu li:first-child {
  margin-left: 0;
}
.banner__inner-page .breadcrumb-menu li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.banner__inner-page .breadcrumb-menu li a {
  display: inline-block;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: relative;
  color: var(--primary-color);
}
.banner__inner-page .breadcrumb-menu li a:hover{
  color: var(--white);
}
.banner__inner-page .breadcrumb-menu li:first-child:after {
  content: "\f101";
  font-weight: 700;
  font-family: 'Font Awesome 5 Free';
  margin: 0 6px; 
  font-size: 13px;
} 

/*Our Mission Section Start here*/
.our-misson {
    position: relative;
} 
.main-box {
    padding: 10px 10px;
}
.icon-box {
    height: 180px;
    width: 180px;
    line-height: 180px;
    border: 1px dashed #e7e7e7;
    border-radius: 50%;
    background-color: white;
    position: relative;
    text-align: center;
    margin: 0 auto;
}
.icon-box:before {
    height: 120px;
    width: 120px;
    line-height: 120px;
    background-color: #f5f8fb;
    border-radius: 50%;
    position: absolute;
    content: "";
    top: 30px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    transition: .3s ease;
}
.process-num {
    font-size: 12px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    font-weight: 500;
    position: absolute;
    top: -10px;
    margin-left: -20px;
    bottom: -15px;
    z-index: 10;
    border: none;
    display: block;
    color: white;
    margin-right: 5px;
    left: 65%;
    -webkit-transition: .3s 
cubic-bezier(.3, .58, .55, 1);
    transition: .3s 
cubic-bezier(.3, .58, .55, 1);
}
.icon-box i {
    font-size: 40px; 
    position: relative;
    color: var(--secondary-color);
    line-height: 173px;
}
.content-box {
    text-align: center;
    padding-top: 30px;
}
.content-box h4{
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
}
 .main-box2 {
    margin-top: 60px;
}
.main-box:hover .icon-box {
    border: 1px dashed var(--secondary-color);
}
.main-box:hover .icon-box::before {
    background-color: var(--primary-color);
    transition: .3s ease;
}
.main-box:hover .process-num {
    transform: scale(1.2);
    background-color: var(--secondary-color);
}
.main-box:hover i {
    color: white;
}

.choose-box-wrapper{
        max-width: 100%;
    width: 100%;
    display: flex
;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
        flex-direction: column;
    padding: 0 15px;
}
.choose-box-wrapper .choose-icon{
  width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    border-radius: 50%;
    background: linear-gradient(0deg, rgb(218 192 97) 0%, rgb(5 67 44) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    flex-shrink: 0; /* Prevents shrinking in Flexbox */
    box-sizing: border-box;
}   
.choose-box-wrapper .choose-box-content h3{
font-size: 24px;
font-weight: 700;
}

/*contact css start*/

.contact-info-area, .contact-form-area{ 
  background-color: var(--bg-color);
}
.single-contact-info {
    border-radius: 3px;
    background-color: var(--white);
    padding: 40px 30px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    display: flex;
} 
.single-contact-info i {
    width: 66px;
    height: 66px;
    line-height: 66px;
    font-size: 32px;
    border-radius: 50px;
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
} 
.single-contact-info h3 {
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 700; 
}
.single-contact-info p:last-child {
    margin-bottom: 0;  
}
.single-contact-info a {
    text-decoration: none;
    display: block;
    margin-bottom: 7px;
    color: #000000;
    font-weight: 500;
}
.map-wrap iframe {
    width: 100%;
    margin-top: 40px;
    height:525px;
    display: block; 
    padding: 15px;
      background: linear-gradient(110deg, var(--primary-color) 46.9%, var(--secondary-color) 47%);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
}


.contact-form-wrap {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.contact-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: 700; 
}
.contact-form-wrap .form-group {
    margin-bottom: 25px;
}
.contact-form-wrap .form-group label {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 11px;
}

.contact-form-wrap .form-group .form-control {
    background-color: var(--white);
    border-color: var(--bg-color);
    border-radius: 5px;
    padding: 12px 20px; 
    border: 2px solid #d9d9d9; 
    color: #9b757d;
    font-size: 15px;
    width: 100%;
    transition: all ease .5s;
        -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.contact-form-wrap .form-group .form-control option{
  padding-left: 20px;
}
.contact-form-wrap .form-group select.form-control{
  cursor: pointer;
}
.contact-form-wrap .form-group .form-control:focus{
    box-shadow: unset;
    border:2px solid var(--primary-color);
}
.contact-form-wrap .form-group i {
    font-size: 20px;
    color: var(--secondary-color);
    position: absolute;
    top: 16px;
    left: 20px;
    opacity: .6;
}
.contact-form-wrap .col-md-12 .form-group{
    margin-bottom: 0;
}
 .contact-form-wrap .button1:hover{
    background-color: var(--primary-color);
 }
.contact-form-wrap form{
  margin-bottom: 0;
}




/* carrer css started here  */ 
.career-sec .section-text {
font-size: 36px;
line-height: 24px;
}
.career-sec .section-p {
font-size: 16px;
line-height: 24px;
}
.career-sec .accordion-button{
    cursor: pointer;
}
.career-sec .accordion-button::after {
background-image: url('../images/plus-img.png');
}
.career-sec .accordion-button:not(.collapsed)::after {
background-image: url('../images/minus-img.png');
}
.career-sec .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
background-color: white;
cursor: pointer;
}
.career-sec .accordion-button p {
font-family: var(--fontLight);
font-size: 1rem;
}
.career-sec .accordion-body .boldText {
font-weight: var(--fontBold);
}
.career-sec .list-group-item {
background-color: #f9fdff;
}
.career-sec h4 {
    font-size: 22px;
    font-weight: 700;
} 
.career-sec .list-group-item .button1 {
    margin: 20px 0;
    min-width: unset;
    font-size: 14px;
    padding: 14px 25px;
}
/* carrer css ended here  */


.page-blog-detail h1{
    font-size: 40px;
font-weight: 800; 
margin: 30px 0 10px 0;      
color: var(--primary-color); 
}
.page-blog-detail .title, .page-blog-detail h2 {
font-size: 37px;
font-weight: 700; 
margin: 30px 0 10px 0;     

}
.page-blog-detail h3 {
font-size: 27px;
font-weight: 700; 
margin: 20px 0 10px 0;    

}
.page-blog-detail h4 {
font-size: 25px;
font-weight: 700; 
margin: 20px 0 10px 0;  

}
.page-blog-detail h5, .page-blog-detail h6{
font-size: 24px;
font-weight: 700; 
margin: 20px 0 10px 0;    
text-transform: capitalize;

}
.page-blog-detail .blog-detail-content a { 
    color: var(--primary-color);
}

.page-blog-detail .blog-detail-content a:hover { 
        color: var(--secondary-color);
}
.page-blog-detail .content {
margin-top: 20px;

} 
.page-blog-detail ul, 
.page-blog-detail ol{

  padding-left: 30px;
}
.page-blog-detail ul li, .page-blog-detail ol li {
  list-style: inherit;
  margin-bottom: 10px;
    font-size: 17px;
}
.service-detail{
  overflow: inherit;
}
.sidebar .h4-title {
    padding-bottom: 4px;
    position: relative;
    margin-bottom: 30px;
    margin-top: 0;
}
.sidebar .h4-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 79px;
    height: 1px;
    background: var(--primary-color);
}
.recent-post-box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.recent-post-box:not(:last-child) {
    margin-bottom: 25px;
}
.recent-post-box .img {
    width: 100px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.recent-post-box .text p {
    margin-bottom: 10px;
    font-weight: 700;
}
.recent-post-box .date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}
.recent-post-box .date img {
    width: 20px;
}
.sidebar {
    position: sticky;
    top: 100px;
}
.page-blog-detail{
    overflow: inherit;
}



 

/*+++++++++++++ Why Choose us section css start here+++++++++++++*/



.choose-us{

    background-color: #1b2c34; 

}

.choose-us h2, .choose-us h3,  .choose-us p{

    color: white;

}

.choose-us-box{

    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: white21;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    height: 100%;
    text-align: center;
    padding: 35px 12px 20px;
    max-width: 400px;
    margin: auto;

}

.choose-us-box:hover {

    border-color: white;

}

.choose-us-box i{

    fill: #BB8E5D;

    color: #BB8E5D;

    border-color: #BB8E5D;

    font-size: 40px;

    margin-bottom: 10px;

}

.choose-us-box img {

    width: 59px;

    height: auto;

    margin-bottom: 20px;

}



 .choose-us-box h2, .choose-us-box h3, .choose-us-box h4 {

    font-size: 24px;

}

.choose-us{

    background-attachment: fixed;

    background-color: #c6a556;

    background-image: url(../images/choose-us-bg.jpg);

    background-position: center center;

    background-size: cover;

    position: relative;

}

.choose-us .row.g-4 .col-md-6.col-sm-6, .choose-us .row.g-4 .col-md-6{
z-index: 9;
}



.choose-us .col-lg-5 span{
    position: sticky;
    top: 90px;
}

.choose-us .choose-us-box span {

    font-size: 40px;
    color: var(--secondary-color);
    font-weight: 700;
    background: white;
    border-radius: 16px 7px;
    margin-bottom: 17px;
    display: inline-block;
    height: 60px;
    line-height: 50px;
    width: 70px;

}
 



/* .choose-us .choose-us-box p{ 
    font-size: 14px;
} */




/*faq css start here*/
.faq .accordion-button::after {
background-image: unset;
content: "\2b";
font-family: 'Font Awesome 7 Free';
font-weight: 900;
transition: all 0.5s;
transform: unset;
font-size: 24px;
}
.faq .accordion-button:not(.collapsed)::after {
background-image: unset; 
content: "\f068";
font-family: "";
font-weight: 900;
transform: unset;



}
.faq .accordion-button::after {
transition: all 0.5s;
}
.faq h2.accordion-header{
  margin-bottom: 0;
}
.faq button.accordion-button {
  position: relative;
  background-color: #f8f8fa;
  color: var(--text-color);
  font-weight: 700;
  font-size: 22px;
  padding: 20px 35px 20px 29px;
  transition: color .2s linear;
  cursor: pointer;
}
.faq .accordion-button:focus{
box-shadow: unset;
}
  .accordion-item:first-of-type .accordion-button{
    color: var(--secondary-color);
  }
/* section:nth-child(even) {
  background-color: #f8f9fa;
}  */
/*----------call to action css start here----------*/



/*==========404 Error Page CSS Start==========*/
.main-404-error {
    margin: 0;
}

.error-content {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.error-content .error-img {
    margin-bottom: 30px;
    max-width: 500px;
}

.error-content .h2-title {
    margin-bottom: 18px;
    color: var(--text-color);
}

.error-content p {
    font-size: 18px;
    line-height: 28px; 
}

.thank-you-img {
     
    max-width: 250px;
    margin: auto;
    margin-bottom: 20px;
}
.thank-you-img svg{
    width: 150px;
    height: 150px;
    color: var(--primary-color);
}
.thank-you-img .error-img{
    margin-bottom: 0;
} 
/*==========404 Error Page CSS End==========*/

/*----------call to action css start here----------*/

/*responsive css start here*/
@media (max-width: 1399px) {
    .blog-date {
        font-size: 13px;
    }
}

@media (max-width: 1200px) { 
 
}


@media (max-width: 1199px) {

.hero-banner .slide-content{
    padding: 20px 30px;
}
.testi-card3 p {
    margin-bottom: 30px;
}
    .testimonial-slider {
        margin-top: 20px;
    }
        .shape-mockup.testi-shape {
        min-width: 203px;
        -webkit-clip-path: polygon(0 0, 80% 0%, 65% 100%, 0% 100%);
        clip-path: polygon(0 0, 80% 0%, 65% 100%, 0% 100%);
    }
}

@media (max-width: 992px) {

.testimonials-sec .owl-nav{
    display: none;
}
.hero-banner .slide-content h1, .hero-banner .slide-content h2 {
    margin-bottom: 20px;
    font-size: 50px;
}
.about__images {
    margin-bottom: 40px;
}
.about-left-content, .about-right-content{
    padding: 0;
}
.projectFactsWrap .item i { 
    font-size: 50px;
}

.heading-area h2 {
    font-size: 36px;
  }
.testi-image11 {
    display: none;
}
.shape-mockup.testi-shape {
    min-width: auto;
    -webkit-clip-path: polygon(0 0, 60% 0%, 45% 100%, 0% 100%);
    clip-path: polygon(0 0, 60% 0%, 45% 100%, 0% 100%);
    height: 100%;
}
.testimonial-slide .owl-carousel .owl-nav {
    display: none;
}
.site-mobile-menu .site-nav-wrap a i { 
    margin-top: 4px;
}
.banner__inner-page{
    padding: 90px 0;
}
.about-img {
        max-width: 550px;
        margin-left: auto;
        margin-right: auto; 
        margin-bottom: 30px;
    }
    .main-box {
    max-width: 550px;
    margin: auto;
}
.our-misson .row{
    gap: 15px 0;
}
.our-misson .row:before{
    display: none;
}
.banner__inner-page .shape3 {
    max-width: 40%;
    top: auto;
    bottom: 0;
}
    .blog-date {
        font-size: 17px;
    }
    .contact-info {
    max-width: 450px;
    height: auto;
    margin: 15px auto;
}
.map-iframe iframe {
    height: 400px;
    width: 100%;
}
.choose-us .col-lg-5 span {
        position: relative;
        top: inherit;
        margin-bottom: 30px;
        display: inline-block;
    }
.page-blog-detail .title, .page-blog-detail h2{
  margin: 20px 0 10px 0;
}
    .page-blog-detail .title, .page-blog-detail h2 {
        font-size: 32px;
    }
        .single-contact-info {
        max-width: 500px;
        margin: 10px auto;
        margin-bottom: 30px;
    }
}


@media (max-width: 768px) {
    .hero-banner .slide-content h1, .hero-banner .slide-content h2 {
        font-size: 40px;
    }
    .hero-banner .slide-item{
        height: inherit;
        padding: 70px 0; 
    }
        .hero-banner .slide-content {
        padding: 0px 30px;
        position: initial;
        transform: unset;
    }
    .hero-banner .owl-nav button{
        width: 40px;
        height: 40px;
    }
    .single-service-style, .home-new-box, .blog-box {
        max-width: 470px;
        margin: auto;
    }
    .heading-area { 
        margin-bottom: 20px;
    }
    .gallery-section .gallery-section-wrapper{
        
    grid-template-columns: repeat(2, 1fr);
    }
        .blog-date {
        font-size: 18px;
    }
    .about__year-wrap .count {
    font-size: 50px;
    }
    .about__year-wrap .title { 
    font-size: 14px;
    }
    .about__year-wrap{
            right: -80px;
    }
    .about__images {
    position: relative;
    margin-bottom: 50px;
}
.single-service-style .img-holder img {
    height: auto;
}
.banner__inner-page {
    padding: 60px 0;
} 
.banner__inner-page h1 { 
font-size: 40px;
}
    .map-wrap iframe {
        height: 405px;
        padding: 5px;
    }
}

@media (max-width: 575px) {
.contact-section .inner-column{
    padding: 25px;
}   
.map-iframe iframe {
    height: 300px;
}
.thank-you-img svg {
        width: 130px;
        height: 110px;
    }
}
@media (max-width: 480px) {
.slide-content-text .title{
padding: 19px 20px 4px;
height: auto;
}
.slide-content-text .title:before{
    height: 100%;
}
.hero-banner .slide-content {
    padding: 0px 20px;
}
.hero-banner .slide-content h1, .hero-banner .slide-content h2 {
    font-size: 33px;
}
.projectFactsWrap {
    grid-template-columns: repeat(2, 1fr);
}
.home-new-box h3 { 
    font-size: 22px;
}
.heading-area h2 {
    font-size: 32px;
}
.banner__inner-page h1 {
    font-size: 32px;
    margin-bottom: 12px;
}
    .banner__inner-page {
        padding: 45px 0;
    }
        .map-iframe iframe {
        height: 250px;
    }
    .faq button.accordion-button{
            font-size: 20px;
    padding: 20px 15px 20px 20px;
    }
    .faq .accordion-button::after{
        font-size: 21px;
    }

.page-blog-detail .title, .page-blog-detail h2 {
    font-size: 28px;
    margin: 20px 0 10px 0;
}
.page-blog-detail h3 {
    font-size: 25px;
    }
.page-blog-detail h4 {
font-size: 24px;
}
.page-blog-detail h5, .page-blog-detail h6{
    font-size: 22px;
}
    .thank-you-img svg {
        width: 100px;
        height: 100px;
    }
        .map-wrap iframe {
        height: 300px;
        padding: 5px;
    }
    .single-contact-info {
        padding: 25px 20px;
    }
.testimonials-sec .owl-item .quote-asset{
    
    margin: 5px auto 10px;
}
.blog-img {
    width: 100%;
    transition: 0.3s;
    height: 250px;
}
    .contact-form-wrap {
        padding: 30px 20px;
    }
}
@media (max-width: 374px) {
.contact-section .inner-column {
    padding: 15px;
}
.contact-section .outer-box { 
    border-radius: 10px;
}
.contact-section .button1 {
    margin: 10px 0;
}

}

select.wpcf7-form-control.wpcf7-select.form-input{
	background: #3671c1;
}

#back-to-top {
 display: block;
    position: fixed;
    bottom: 30px;
    right: 10px;
    background: var(--secondary-color);
    border: none;
    border-radius: 15%;
    color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
    z-index: 99;
    padding: 6px;
    width: 50px;
    height: 50px;
}
#back-to-top p i {
    display: block;
    font-size: 20px;
}
#back-to-top p{
    color: #fff;
    font-size: 10px;
    line-height: 19px;
}

span.text-danger {
    font-size: 24px;
}

.whats-ic {
    position: fixed;
    text-align: center;
    bottom: 112px;
    right: 13px;
    z-index: 9;
}

.whats-ic .btn-whatsapp-pulse {
    background: #25d366;
    color: #fff;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    margin: auto;
    text-decoration: none;
    animation-name: pulse;
}
.whats-ic .btn-whatsapp-pulse, .whats-ic .btn-whatsapp-pulse-border::before {
    border-radius: 50%;
    padding: 25px;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}



.single-feature {
    padding: 40px 30px;
    border-radius: 30px; 
    box-shadow: rgb(0 0 0 / 16%) 0px 3px 8px;
    text-align: center;
    border-bottom: 5px solid var(--primary-color);
    transition: all 0.3s ease-out 0s;
    height: 100%;
    background-color: white;
}
.single-feature .icon {
    color: var(--secondary-color);
    font-size: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 20px;
    position: relative;
    width: 110px;
    height: 100px;
    z-index: 1;
}
.single-feature .icon svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.single-feature .content h5 {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 22px;
}
.single-feature:hover {
    border-color: var(--secondary-color);
    box-shadow: 0px 6px 13px rgb(42 43 44 / 35%);
}
.single-feature .content p{
    margin-bottom: 0    ;
}

@media (max-width: 992px) {
.single-feature {
    max-width: 400px;
    margin: auto;
}
}
@media (max-width: 480px) {
.single-feature {
    padding: 30px 20px;
}
.single-feature .icon{
    margin-bottom: 10px;
    height: 90px;
}
.single-feature .content h5 { 
    font-size: 20px;
}

}