@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*-----------------------------------
 Universal Styling
------------------------------------*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
      font-family: "Lato", sans-serif;
}
body{
	overflow-x: hidden;
}
:root{
    --primary-color: #F25026;
    --secondary-color: #12888A;
    --third-color: #FF7755;
}
a{
    text-decoration: none;
}
.title-box h2{
    color: #000;
      font-family: "Merriweather Sans", sans-serif;
       font-weight: 400;
}
.title-box h2 span{
    color: var(--primary-color);
      font-weight: 700;
	font-size:32px;
}
@media screen and (min-width:991px){
    .title-box h2{
        font-size: 28px;
    }
}


/* button */
.primary-btn-1 {
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    line-height: normal;
    white-space: nowrap;
    padding: 18px 30px;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all .6s;
    border-radius: 15px;
}

.primary-btn-1:hover {
    color: #fff;
    border: 1px solid var(--secondary-color);
}

.primary-btn-1 span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--secondary-color);
    transition: all .6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.primary-btn-1:hover span {
    width: 225%;
    height: 1000.5px;
}
.primary-btn-2{
	  background-color: #054142;
    border: 1px solid #054142;
}
.primary-btn-1 span{
	 background-color: var(--secondary-color);
}

/*-----------------------------------
Header Styling
------------------------------------*/
header{
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10 !important;
	
}
header .header-top{
	background: #000;
}

header .header-top a{
	color: #fff;
}
header .header-top svg{
	color: #fff;
	width: 20px;
	height: 20px;
}
/*-----------------------------------
Banner Section Styling
------------------------------------*/

@media screen and (min-width:991px){
.hero-section .banner-left-col{
	padding-top: 190px !important;
}
	.banner-shape-text img{
		width: 1119px;
		height: 341px;
		object-fit: contain;
	}
}
.hero-section{
	padding-top: 190px;
	background: #FFD960;
	position: relative;
}
.hero-section .banner-shape-text{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -4%;
}
.hero-section .hero-section-img img{
	height: 612px;
}
.hero-section .title-box p{
	color: #2B2B2B;
}
.hero-section .title-box h2{
	text-transform: capitalize;
}
@media screen and (min-width:991px){
	.hero-section .title-box h2 span{
		font-size: 48px;
	}
}
@media screen and (max-width:768px){
	.hero-section .hero-section-img img{
	display:none;
}
}

/*-----------------------------------
Page Banner Styling
------------------------------------*/
.page-banner .banner-shape-text{
	right: 0;
	bottom: 0;
}
.modal-backdrop.show {
	position: relative;
    opacity: none !important;
}
.modal{
	z-index: 9999 !important;
}
/*-----------------------------------
ABout Section Styling
------------------------------------*/
.about .about-img-wrapper img{
	margin-left: -10%;
	position: relative;
}
@media screen and (min-width:991px){
	.about .about-img-wrapper img{
		height: 100%;
	}
}
.about .about-content p{
	color: #4A4747;
	line-height: 2;
	    padding-bottom: 0;
    margin-bottom: 0;
}
.about .about-featured h3{
	color: var(--primary-color);
	font-size: 23px;
	font-weight: 700;
	 font-family: "Merriweather Sans", sans-serif;
}
.about .about-featured{
	background: #FDF0DF;
	padding: 20px;
	border-radius: 20px;
}
@media screen and (max-width:768px){
	.about .about-featured{
		padding: 5px;
	}
}
.about .about-featured .about-counter h2{
	color: var(--secondary-color);
	font-size: 30px;
	font-family: "Merriweather Sans", sans-serif;
}
.about .about-featured .about-counter p{
	color: #000;
	font-size: 18px;
	margin-bottom: 0;
	padding-bottom: 0;
}
/*-----------------------------------
Services Section Styling
------------------------------------*/
.services-page{
	background-position: cover !important;
}

.services .services-title-wrapper{
position:relative;
	z-index:  2;	
}
@media screen and (min-width:991px){
	.services .services-title-wrapper{
		padding-top: 150px !important;
	}
}
.services .services-content{
	background: #fff;
	padding: 20px;
	border-radius: 20px;
	
}
.services .services-content .services-content-icon img{
	min-width: 60px;
	min-height: 60px;
	width: 60px;
	height: 60px;
}
.services .services-content .services-content-title h3 a{
	font-size: 20px;
	color: var(--secondary-color);
	font-weight: 700;
	 font-family: "Merriweather Sans", sans-serif;
	transition: all .5s ease-in-out;
}
.services .services-content .services-content-title h3 a:hover{
	color: var(--primary-color);
}
.services .services-content .services-content-para p{
	color: #6B6B6B;
	line-height: 26px;
	    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}

/* services btn */ 
.services .services-btn button {
  width: 140px;
  height: 56px;
  overflow: hidden;
  border: none;
  color: #2B2B2B;
  background: none;
  position: relative;
  padding-bottom: 2em;
  cursor: pointer;
}

.services .services-btn button > div,
.services .services-btn button > svg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
}

.services .services-btn button:before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: bottom right;
  background: currentColor;
  transition: transform 0.25s ease-out;
}
.services .services-btn button:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.services .services-btn button .clone > *,
.services .services-btn button .text > * {
  opacity: 1;
  font-size: 16px;
  transition: 0.2s;
  margin-left: 4px;
}

.services .services-btn button .clone > * {
  transform: translateY(60px);
}

.services .services-btn button:hover .clone > * {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.services .services-btn button:hover .text > * {
  opacity: 1;
  transform: translateY(-60px);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.services .services-btn button:hover .clone > :nth-child(1) {
  transition-delay: 0.15s;
}

.services .services-btn button:hover .clone > :nth-child(2) {
  transition-delay: 0.2s;
}

.services .services-btn button:hover .clone > :nth-child(3) {
  transition-delay: 0.25s;
}

.services .services-btn:hover .clone > :nth-child(4) {
  transition-delay: 0.3s;
}
/* icon style and hover */
.services .services-btn button svg {
  width: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-50deg);
  transition: 0.2s ease-out;
}

.services .services-btn button:hover svg {
  transform: translateY(-50%) rotate(-90deg);
}
.services .services-wrapper .services-content-img img{
	width: 100%;
	height: 194px;
	object-fit: cover;
	border-radius: 20px;
}
.services{
	position: relative;
	z-index: 10;
}
/*-----------------------------------
Home Contact Sectin Styling
------------------------------------*/
.home-contact-section{
	transform: translateY(-30%);
	z-index: 1;
	margin-bottom: -20%;
}

.home-contact-section .container{
	padding-top: 150px;
}
@media screen and (max-width:768px){
	.home-contact-section{
	transform: unset;
	z-index: 1;
	margin-bottom: unset;
}
	.home-contact-section .container{
	padding-top: unset;
}
}
.single-service-form-section{
	transform: unset;
	z-index: 1;
	margin-bottom: unset;
}
.single-service-form-section .container{
	padding-top: unset !important;
}
.contact-page{
		transform: unset !important;
	z-index: 1;
	margin-bottom: unset !important;
}
.contact-page .container{
	padding-top: 150px !important;
}
.home-contact-section .appointment-title h5{
	color:#000;
	font-size: 25px;
	  font-family: "Merriweather Sans", sans-serif;
	
}
.home-contact-section .home-contact-form-wraper{
	position: relative;
	border: 1px solid #000;
	padding: 20px;
	border-radius: 20px;
}
.home-contact-section .home-contact-form-wraper h2{
	color:var(--secondary-color);
	position: relative;
	z-index:2;
}
.home-contact-section .home-contact-form-wraper img{
	position: absolute;
/* 	height: 975px;
	top: -60%;
	left: -20%;
	opacity: 0.5;
	transform: rotate(47deg); */
	    bottom: -100px;
    right: -100px;
/*     opacity: 0.5; */
    transform: rotate(-55deg);
    transform: rotate(15deg) scaleX(1.5) scaleY(1.5);
}
.home-contact-section .home-section-form input,
.home-contact-section .home-section-form select{
	background: transparent !important;
	border: none !important;
	border-bottom: 1px solid #000 !important;
	border-radius: 0 !important;
}
.home-contact-section .home-section-form input::placeholder{
	color: #000 !important;
	box-shadow: none !important;
}
.home-contact-section .home-section-form input:focus{
	box-shadow: none;
	border: none !important;
}
.home-contact-section .home-section-form textarea{
	background: transparent;
	border: 1px solid #000;
	border-radius: 20px;
}
.home-contact-section .home-section-form textarea::placeholder{
	color: #000 !important;
}
.home-contact-section .appointment-bottom{
	border: 1.5px dashed #000;
	border-radius: 20px;
	padding: 20px;
	
}
.home-contact-section .wpforms-submit{
	background: var(--primary-color) !important;
	color: #fff !important;
	width: 100%;
	border-radius: 15px !important;
}
.home-contact-section .appointment-middle h3{
color:#000;
	font-size: 30px;
	  font-family: "Merriweather Sans", sans-serif;
	text-transform: capitalize;
}
.home-contact-section .appointment-middle p{
	color: #2B2B2B;
}
.home-contact-section .appointment-bottom h3{
	font-size: 19px;
	  font-family: "Merriweather Sans", sans-serif;
	font-weight: 400;
	text-transform: capitalize;
}
.home-contact-section .appointment-bottom p{
	color: #2B2B2B;
}
.home-contact-section .appointment-bottom a{
		text-transform: capitalize;
}
/*-----------------------------------
Why Choose Us Styling
------------------------------------*/
.why-choose-us .why-choose-content{
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}
@media screen and (min-width:991px){
	.why-choose-us .why-choose-content{
		height: 250px;
	}
}
.why-choose-us .why-choose-content .why-choose-content-icon img{
    width: 60px;
    height: 60px;
}
.why-choose-us .why-choose-content .why-choose-content-title {
    margin: 20px 0;
}
.why-choose-us .why-choose-content .why-choose-content-title h3{
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 700;
     font-family: "Merriweather Sans", sans-serif;
}
.why-choose-us .why-choose-content .why-choose-content-text p{
    color: #2B2B2B;
}
/*-----------------------------------
gallery Styling
------------------------------------*/
.gallery .title-box p{
    color: #6B6B6B;
}
.gallery .gallery-left-col-img-one img,
.gallery .gallery-left-col-img-two img{
    width: 100%;
    height: 298px;
    border-radius: 20px;
    object-fit: cover;
}
.gallery .gallery-right-img-one .gallery-right-img-one-one{
    height: 241px;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.gallery .gallery-right-img-one .gallery-right-img-one-two{
    width: 100%;
    height: 208px;
     border-radius: 20px;
    object-fit: cover;
}
.gallery .gallery-right-img-three{
    object-fit: cover;
    border-radius: 20px;

}
/*-----------------------------------
Testimonials Styling
------------------------------------*/
.testimonials .testimonials-wrapper .testimonials-content{
    border: 2px dashed #12888A;
    padding: 30px;
    border-radius: 10px;
}
.testimonials .testimonials-google h3{
    color: #656565;
    font-size: 25px;
    font-weight: 700;
}
.testimonials .testimonials-content-profile .testimonials-google-icon{
width: 45px;
height: 45px;
}
.testimonials .testimonials-content-profile h3{
    font-size: 20px;
    color: #6B6B6B;
}
.testimonials .testimonials-wrapper .testimonials-content .testimonials-content-para p{
    color: #6B6B6B;
}
/*-----------------------------------
Blog Styling
------------------------------------*/
.blog .blog-wrapper .blog-content .card,
.blog  .blog-content .card{
    background: none;
    border: none;
}
.blog .blog-wrapper .blog-content,
.blog .blog-content{
    background: var(--third-color);
    padding: 20px;
    border-radius: 20px;
}
.blog .blog-wrapper .blog-content img,
.blog .blog-content img{
    height: 296px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.blog .blog-wrapper .blog-content .card .card-body .card-title a,
.blog .blog-content .card .card-body .card-title a{
    color: #fff;
    font-size: 20px;
     font-family: "Merriweather Sans", sans-serif;
	transition: all .5s ease-in-out;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;

}
.blog .blog-wrapper .blog-content .card .card-body .card-title a:hover,
.blog .blog-content .card .card-body .card-title a:hover{
    color: var(--secondary-color);
}

.blog .blog-wrapper .blog-content .card .card-body p,
.blog .blog-content .card .card-body p{
    color: #fff;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}
.blog .blog-wrapper .blog-content .card .blog-date,
.blog .blog-content .card .blog-date{
    margin-bottom: 20px;
}
.blog .blog-wrapper .blog-content .card .blog-date svg,
.blog .blog-content .card .blog-date svg{
    color: #fff;
    width: 20px;
    height: 20px;
}
.blog .blog-wrapper .blog-content .card .blog-date a,
.blog .blog-content .card .blog-date a{
    color: #fff;
	transition: all .5s ease-in-out;
}
.blog .blog-wrapper .blog-content .card .blog-date a:hover,
.blog .blog-content .card .blog-date a:hover{
    color: var(--secondary-color);
}

/* From Uiverse.io by satyamchaudharydev */ 
.blog .blog-btn button,
.blog .blog-btn button{
  width: 140px;
  height: 56px;
  overflow: hidden;
  border: none;
  color: #fff;
  background: none;
  position: relative;
  padding-bottom: 2em;
  cursor: pointer;
}

.blog .blog-btn button > div,
.blog .blog-btn button > svg,
.blog .blog-btn button > div,
.blog .blog-btn button > svg{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
}

.blog  .blog-btn button:before,
.blog .blog-btn button:before{
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: bottom right;
  background: currentColor;
  transition: transform 0.25s ease-out;
}

.blog .blog-btn button:hover:before,
.blog .blog-btn button:hover:before{
  transform: scaleX(1);
  transform-origin: bottom left;
}

.blog .blog-btn button .clone > *,
.blog .blog-btn button .text > * ,
.blog .blog-btn button .clone > *,
.blog .blog-btn button .text > *{
  opacity: 1;
  font-size: 16px;
  transition: 0.2s;
  margin-left: 4px;
}

.blog .blog-btn button .clone > *,
.blog .blog-btn button .clone > *{
  transform: translateY(60px);
}

.blog .blog-btn button:hover .clone > *,
.blog .blog-btn button:hover .clone > *{
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.blog .blog-btn button:hover .text > *,

.blog .blog-btn button:hover .text > *{
  opacity: 1;
  transform: translateY(-60px);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.blog.blog-btn button:hover .clone > :nth-child(1) {
  transition-delay: 0.15s;
}

.blog .blog-btn button:hover .clone > :nth-child(2) {
  transition-delay: 0.2s;
}

.blog .blog-btn button:hover .clone > :nth-child(3) {
  transition-delay: 0.25s;
}

.blog .blog-btn button:hover .clone > :nth-child(4) {
  transition-delay: 0.3s;
}
/* icon style and hover */
.blog .blog-btn button svg {
  width: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-50deg);
  transition: 0.2s ease-out;
}

.blog .blog-btn button:hover svg {
  transform: translateY(-50%) rotate(-90deg);
}

/*-----------------------------------
Footer Styling
------------------------------------*/
footer .footer-top h3{
    color: var(--primary-color);
     font-family: "Merriweather Sans", sans-serif;
     text-transform: uppercase;
     font-weight: 700;
     margin-bottom: 20px;
}
@media screen and (min-width:991px){
    footer .footer-top h3{
        font-size: 28px;
    }
}
footer .footer-top .footer-links{
    list-style: none;
    padding-left: 0;
    line-height: 2;
    
}
footer .footer-top .footer-links li a{
    color: #000;
}
footer .footer-top .footer-links li a:hover{
    color: var(--secondary-color);
}
footer .footer-top .footer-contacts svg{
    color: #656565;
    width: 24px;
    height: 24px;
}
footer .footer-top .footer-contacts a{
    color: #000;
    transition: all .5s ease-in-out;
}
footer .footer-top .footer-contacts a:hover{
    color: var(--secondary-color);
}


footer .footer-top .footer-socials{
    list-style: none;
    padding-left: 0;
    display: flex;
}
footer .footer-top .footer-socials li{
    margin-right: 20px;
}

footer .footer-bottom {
    background: #000;
}
footer .footer-bottom p,
footer .footer-bottom p a{
    text-transform: capitalize;
    color: #fff;
    transition: all .5s ease-in-out;
}
footer .footer-bottom p a:hover{
    color: var(--secondary-color);
}

/*================================
 <-- Single Blog -->
==================================*/
.single-blog .single-blog-img {
	margin-bottom: 20px;
}
@media screen and (min-width:991px){
	.single-blog .single-blog-img img{
		width: 100% !important;
	height: 398.13px;
		object-fit: cover;
}
}
.single-blog .single-blog-img-content{
	border-left: 2px solid var(--primary-color);
	padding-left: 15px;
	
}
.single-blog .single-blog-img-content span,
.single-blog .single-blog-img-content span a{
	color: var(--primary-color);
}
.single-blog .single-blog-img-content span{
	margin-bottom: 5px;
}
.single-blog .single-blog-img-content p{
	color: var(--secondary-color);
	font-weight: 500;
}
.single-blog .single-blog-title h2{
	color: var(--primary-color);
	font-weight: 700;
}
@media screen and (min-width:991px){
	.single-blog .single-blog-title h2{
		font-size: 35px;
	}
}
.single-blog .single-blog-content p{
	color: #565969;
	line-height: 1.7;
	font-size: 17px;
	text-align: justify;
}
.single-blog-sidebar-wrapper {
	margin-bottom: 30px;
    background-color: #f6f6f6;
    padding: 25px 25px 25px;
}
.single-blog-sidebar-wrapper h2{
	color: var(--primary-color);
	border-left: 2px solid var(--primary-color);
	padding-left: 15px;
	text-transform: capitalize;

}
@media screen and (min-width:991px){
	.single-blog-sidebar-wrapper h2{
		font-size: 20px;
	}
}
.single-blog-post-inner ul{
	list-style: none;
	padding-left: 0;
	display: flex;
	padding: 10px 0;
	border-bottom: 1px solid #cccccc;
}
.single-blog-post-inner li img{
/* 	width: 91.5px; */
	width: 150px;
	height: 114.08px;
	object-fit: cover;
	border-radius: 4px;
	max-width: 120px;
}
.single-blog-post-inner li h3{
	padding-left: 10px;
	line-height: 0.9;
}
.single-blog-post-inner li span{
	padding-left: 10px;
	color: #565969;
}
.single-blog-post-inner li a{
	font-size: 18px;
	color: var(--secondary-color);
	transition: all .5s ease-in-out;
	
}
.single-blog-post-inner li a:hover{
		color: var(--primary-color);
}

/*================================
 <-- Single Service -->
==================================*/ 
.single-service .single-service-sidebar h3,
.single-service .single-service-sidebar-contacts h3{
	color: var(--primary-color);
	position: relative;
	margin-bottom: 30px;
	text-transform: capitalize;
	padding-bottom: 15px;
}
.single-service .single-service-sidebar h3:before,
.single-service .single-service-sidebar-contacts h3:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
	top: 100%;
}
.single-service .single-service-sidebar ul{
	list-style: none;
	padding-left: 0;
/* 	border: 1px solid #d7d7d7; */
	}
.single-service .single-service-sidebar ul{
	background: #F6F6F6;
}
.single-service .single-service-sidebar ul li a{
/* 	background: #f5f5f5; */
	color: var(--text-white);
	padding: 18px 30px;
	text-transform: capitalize;
	font-weight: 500;
/* 	border-bottom: 1px solid #d7d7d7; */
	position: relative;
	z-index: 9999 !important;
	display: block;
	transition: all .5s ease-in-out;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.single-service .single-service-sidebar ul li a:before{
	content: '';
	position: absolute;
	width: 0%;
	height: 100%;
	left: 50%;
	top: 0;
	background: var(--primary-color);
	transition: all .5s ease-in-out;
	z-index: -1;
	
}
.single-service .single-service-sidebar ul .current-menu-item a{
	
	background: var(--primary-color);
	transition: all .5s ease-in-out;
	z-index: 1;
	color: #fff;
}
.single-service .single-service-sidebar ul li:hover a:before{
	width: 100%;
	left: 0;
	border-left: 4px solid #000;
}
.single-service .single-service-sidebar ul li:hover a{
	color: #fff;
}
.single-service .single-service-sidebar ul li a:after{
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 32 32'%3E%3Cpath fill='none' stroke='%232C4A28' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m22 6l8 10l-8 10m8-10H2'/%3E%3C/svg%3E");
	position: absolute;
	right: 20px;
}

.single-service .single-service-sidebar-contacts .single-service-sidebar-info svg{
	width: 44px;
	height: 45px;
	color: var(--primary-color);
}
.single-service .single-service-sidebar-contacts .single-service-sidebar-info a{
	color: #777;
	transition: all .5s ease-in-out;
}
.single-service .single-service-sidebar-contacts .single-service-sidebar-info a:hover{
	color: var(--primary-color);
}
.single-service .single-service-content-img img{
	border-radius: 5px;
}
.single-service .single-service-sidebar-contacts .single-service-sidebar-info h4{
	font-size: 18px;

}
.single-service .single-service-content-img{
	position: relative;
	overflow: hidden;
	
}
/* .single-service .single-service-content-img:before{
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	background: linear-gradient(rgba(180, 16, 23, 0.5),rgba(180, 16, 23, 0.5));
	transition: all .5s ease-in-out;
	border-radius: 10px;
} */
.single-service .col-md-8:hover .single-service-content-img:before{
	width: 100%;
}
	.single-service .single-service-content-img img{
		width: 100%;
		height: 450px;
		object-fit: cover;
		border-radius: 10px;
        border: 8px solid var(--primary-color);
	}
@media screen and (min-width:991px){
	.single-service .single-service-content-img img{
		width: 100%;
		height: 450px;
		object-fit: cover;
	}
}
.single-service .single-service-content p{
	color: #777;
	line-height: 1.5;
	text-align: justify;
}
.single-service .single-service-content h2,
.single-service .single-service-content h3,
.single-service .single-service-content h4{
	color: var(--primary-color);
}
.single-service .single-service-content ul li,
.single-service .single-service-content ol li{
	color:  #777;
}.single-service .single-service-content ul {
	list-style: none;
	padding-left: 0;
}
.single-service .single-service-content ul li:before{
	content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.5em' height='1.5em' viewBox='0 0 256 256'%3E%3Cpath fill='%232c4a28' d='M225.86 102.82c-3.77-3.94-7.67-8-9.14-11.57c-1.36-3.27-1.44-8.69-1.52-13.94c-.15-9.76-.31-20.82-8-28.51s-18.75-7.85-28.51-8c-5.25-.08-10.67-.16-13.94-1.52c-3.56-1.47-7.63-5.37-11.57-9.14C146.28 23.51 138.44 16 128 16s-18.27 7.51-25.18 14.14c-3.94 3.77-8 7.67-11.57 9.14c-3.25 1.36-8.69 1.44-13.94 1.52c-9.76.15-20.82.31-28.51 8s-7.8 18.75-8 28.51c-.08 5.25-.16 10.67-1.52 13.94c-1.47 3.56-5.37 7.63-9.14 11.57C23.51 109.72 16 117.56 16 128s7.51 18.27 14.14 25.18c3.77 3.94 7.67 8 9.14 11.57c1.36 3.27 1.44 8.69 1.52 13.94c.15 9.76.31 20.82 8 28.51s18.75 7.85 28.51 8c5.25.08 10.67.16 13.94 1.52c3.56 1.47 7.63 5.37 11.57 9.14c6.9 6.63 14.74 14.14 25.18 14.14s18.27-7.51 25.18-14.14c3.94-3.77 8-7.67 11.57-9.14c3.27-1.36 8.69-1.44 13.94-1.52c9.76-.15 20.82-.31 28.51-8s7.85-18.75 8-28.51c.08-5.25.16-10.67 1.52-13.94c1.47-3.56 5.37-7.63 9.14-11.57c6.63-6.9 14.14-14.74 14.14-25.18s-7.51-18.27-14.14-25.18m-52.2 6.84l-56 56a8 8 0 0 1-11.32 0l-24-24a8 8 0 0 1 11.32-11.32L112 148.69l50.34-50.35a8 8 0 0 1 11.32 11.32'/%3E%3C/svg%3E");
	position: relative;
	top: 6px;
	margin-right: 5px;
}
  #sidebar-service.sticky2{
   opacity: 1;
  
  }
#sidebar-service {
  position: sticky !important;
  top: 100px;         /* adjust for your header height */
  transition: top 0.3s ease; /* smooth feel when snapping */
}

/*-----------------------------------
projects Styling
------------------------------------*/
.gallery .projects-wrapper .projects-content,
.gallery  .projects-content{
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}
.gallery .projects-content:hover,
.gallery  .projects-content{
    background: var(--third-color);
}
.gallery  .projects-content .projects-img,
.gallery  .project-contents .project-img{
    position: relative;
    overflow: hidden;
}
.gallery .projects-content:hover img,
.gallery .project-content:hover img{
    transform: rotate(5deg)scale(1.5);
}
.gallery .projects-content .projects-img img,
.gallery .projects-content .projects-img img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 1s ease-in-out;
}
.gallery  .projects-content .projects-title h3,
.gallery  .projects-content .projects-title h3{
/*       font-family: "Anton", sans-serif; */
      font-weight: 500;
      text-transform: capitalize;
}

.gallery  .projects-content .projects-para p,
.gallery  .projects-content .projects-para p{
    color: #fff;
}
@media screen and (min-width:991px){
    .gallery .projects-content .projects-title h3,
	.gallery  .projects-content .projects-title h3{
        font-size: 24px !important;
    }
}


/* Additional CSS */

@media screen and (min-width:991px){
#mega-menu-wrap-main-menu{
 
    width: 100% !important;
}
	
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

/* Additonal for Mobile view */

  .navbar  .menu-toggle-btn {
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
      color: #333;
    }
    /* ============================
       Fullscreen Sidebar (Mobile)
    ============================ */
    .fullscreen-sidebar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: linear-gradient(rgba(255,255,255,0.85),rgba(255,255,255,0.85));
      z-index: 1200;
      transition: left 0.4s ease;
      display: flex;
      flex-direction: column;
      padding: 80px 20px 20px;
    }

    .fullscreen-sidebar.active {
      left: 0;
    }

    .fullscreen-sidebar a {
      padding: 15px 0;
      font-size: 1.25rem;
      font-weight: 500;
      text-decoration: none;
      color: #333;
      border-bottom: 1px solid #eee;
    }

    .fullscreen-sidebar a:hover {
      background-color: #f9f9f9;
    }

   .navbar  .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 30px;
      cursor: pointer;
      color: #333;
    }
.fullscreen-sidebar ul {
	list-style: none;
	line-height: 2.8;
}

/* additional for sub menu services in navbar */
/* ============================
   Submenu Sliding from Right (Mobile)
============================ */

.fullscreen-sidebar ul li {
  position: relative;
}

/* Parent menu links */
.fullscreen-sidebar ul li.menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Submenu container - hidden off screen by default */
.fullscreen-sidebar ul.sub-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(255,255,255,0.95),rgba(255,255,255,0.95));
  display: flex;
  flex-direction: column;
  padding: 80px 25px;
  transition: right 0.4s ease;
  z-index: 1300;
  overflow-y: auto;
}

/* Active state - slides in */
.fullscreen-sidebar ul.sub-menu.active {
  right: 0;
}

/* Submenu links */
.fullscreen-sidebar ul.sub-menu a {
  font-size: 1.1rem;
  padding: 12px 0;
  color: #333;
  border-bottom: 1px solid #eee;
}

.fullscreen-sidebar ul.sub-menu a:hover {
  color: #000;
}

/* Arrow icon */
.fullscreen-sidebar .submenu-toggle {
  font-size: 18px;
  cursor: pointer;
  padding-left: 10px;
  color: #555;
  transition: transform 0.3s ease;
}

.fullscreen-sidebar .submenu-toggle.rotate {
  transform: rotate(90deg);
}

/* Back button inside submenu */
.fullscreen-sidebar .submenu-back {
  font-size: 1rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 20px;
  cursor: pointer;
  display: inline-block;
}


.text-anime-style-2 .char,
.text-anime-style-2 .word {
  font-family: "Merriweather Sans", sans-serif !important;
  text-transform: capitalize !important;
}
.text-anime-style-2 * {
  font-family: inherit !important;
	 text-transform: none !important;
}