/* Add your custom styles here */
*{
    font-family: Helvetica;
}
.topbar {
    background-color: #007bff; /* blue color */
    color: #fff; /* white text color */
    padding: 10px 0;
    font-family: 'Arial', sans-serif; /* specify desired font */
}

.topbar p {
    margin: 0;
}

.topbar a {
    color: #fff; /* white color for social icons */
    margin-left: 10px; /* adjust spacing between social icons */
}

.navbar {
    transition: top 0.5s ease-in-out;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

@media (min-width: 992px) {
    .navbar {
        padding: 5px 0;
    }
}

.navbar-brand img {
    max-width: 240px;
}

/* Add custom styles for slider */
.carousel-caption {
    padding: 20px 0px;
    border-radius: 5px;
    text-align: center;
    align-content: center;
    bottom: 0;
    top: 0;
}

/*
.carousel-caption h2, .carousel-caption h6 {
    color: #fff;
}
*/

.carousel-caption a.btn {
    margin-top: 10px;
}
.services {
    padding: 50px 0;
	background: #f8f9fa;
}

.services h3{
	text-align: center;
}

/* Add custom styles for service grid */
.service {
    text-align: center;
    padding: 30px;
    border-radius: 5px;
    background-color: #ffffff; /* Light gray background */
    margin-bottom: 30px;
    transition: background-color 0.3s ease;
	border: #e5e5e5 1px solid;
	box-shadow: #ededed 5px 5px 5px;
	transition:1s;
}

.services a{
    color: #333;
    text-decoration: none;
}


.service:hover {
    /*background-color: #007bff;*/
	color: #ffffff;
	transition:1s;
}

.service:hover .icon {
	color: #ffffff;
}

.service:hover p {
	color: #ffffff;
	transition: 1.5s;
}

.service .icon {
    font-size: 40px;
    margin-bottom: 20px;
    /*
	color:#007bff;
    */
}

.service h4 {
    margin-bottom: 10px;
    font-size:22px;
}

.service p {
    font-size: 14px;
    color: #333; /* Dark text color */
}


.about {
    padding: 50px 0;
}

.about p{
    text-align: justify;
	color: #525252;
}

.about img {
    max-width: 100%;
    border-radius:8px;
}

.packages {
    padding: 50px 0;
	background: #f8f9fa;
}


.package {
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
}

.wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
    padding: 0px;

}
.pricing-table{
   box-shadow: 0px 0px 18px #ccc;
   text-align: center;
   padding: 30px 0px;
   border-radius: 5px;
   position: relative;
 
}
.pricing-table .head {
    border-bottom:1px solid #eee;
    padding-bottom: 50px;
    transition: all 0.5s ease;
}

/*
.pricing-table:hover .head{
   border-bottom:1px solid #2d7be2;
}
*/
.pricing-table .head .title{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.pricing-table .content .price{
    /* background:linear-gradient(to right, #57a8ff 0%, #0067d5 100%); */
    width: 90px;
    height: 90px;
    margin: auto;
    line-height: 90px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
    margin-top: -50px;
     transition: all 0.5s ease;
}
.pricing-table:hover .content .price{
    transform: scale(1.2);
 
}
.pricing-table .content .price h1{
    color:#fff;
    font-size: 30px;
    font-weight: 700;
	margin-top: 19px;
}
.pricing-table .content ul{
   list-style-type: none;
   margin-bottom: 20px;
   padding-top: 10px;
}

.pricing-table .content ul li{
    margin: 20px 0px;
    font-size: 14px;
    color:#555;
}

.pricing-table .content .sign-up{
    /* background:linear-gradient(to right, #57a8ff 0%, #0067d5 100%); */
    border-radius: 40px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}


.pricing-table .btn {
	color: #fff;
	padding: 14px 40px;
	display: inline-block;
	text-align: center;
	font-weight: 600;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3 linear;
	transition: all 0.3 linear;
	border: none;
	font-size: 14px;
	text-transform: capitalize;
	position: relative;
	text-decoration: none;
    margin: 2px;
    z-index: 9999;
    text-decoration: none;
    border-radius:50px;
 
}

.pricing-table .btn:hover{
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.pricing-table .btn.bordered {
	z-index: 50;
	color: #333;
}
.pricing-table:hover .btn.bordered{
	color:#fff !important;
}

.pricing-table .btn.bordered:after {
	background: #fff none repeat scroll 0 0;
	border-radius: 50px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3 linear;
	transition: all 0.3 linear;
	width: 100%;
	z-index: -1;	
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	transform:scale(1);
}
.pricing-table:hover .btn.bordered:after{
	opacity:0;
	transform:scale(0);
}

@media screen and (max-width:768px){
   .wrapper{
        grid-template-columns: repeat(2,1fr);
    } 
}

@media screen and (max-width:600px){
   .wrapper{
        grid-template-columns: 1fr;
    } 
}


.expertise {
    padding: 50px 0;
    text-align: center;
}






.blog {
    padding: 50px 0;
    background: #f8f9fa;
}

.blog_card{
    border-radius:7px;
    box-shadow: #ededed 5px 5px 5px;
}

.blog_card img{
    border-top-right-radius:7px;
    border-top-left-radius:7px;
}

.client-feedback{
    padding: 50px 0;
    text-align: center;
} 



.carousel_review .carousel-item_review {
	color: #999;
	overflow: hidden;
	min-height: 120px;
	font-size: 13px;
}
.carousel_review .media img {
	width: 80px;
	height: 80px;
	display: block;
	border-radius: 50%;
	margin: 0 auto;
}
.carousel_review .testimonial {
	padding: 0 15px 0 60px ;
	position: relative;
}
.carousel_review .testimonial::before {
	content: "\201C";
	font-family: Arial,sans-serif;
	color: #e2e2e2;
	font-weight: bold;
	font-size: 68px;
	line-height: 54px;
	position: absolute;
	left: 15px;
	top: 0;
}
.carousel_review .overview b {
	text-transform: uppercase;
	/*color: #1c47e3;*/
}
.carousel_review .carousel-indicators_review {
	bottom: -40px;
}
.carousel-indicators_review [data-bs-target], .carousel-indicators_review [data-bs-target].active {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin: 1px 3px;
	box-sizing: border-box;
}
.carousel-indicators_review [data-bs-target] {	
	background: #e2e2e2;
	border: 4px solid #fff;
}
.carousel-indicators_review [data-bs-target].active {
	color: #fff;
	/* background: #1c47e3; */    
	border: 5px double;    
}



.contact {
    padding: 50px 0;
}

.contact form {
    margin-bottom: 20px;
}

.contact_img img{
    border-radius:8px;
}


/*************ALL BLOG PAGE ********************/
.blog_categories h5{
    padding: 8px 8px 8px 12px; background:#555555; color: #ffffff;margin-bottom:6px;border-radius:5px;
}
.blog_categories h6{
    padding: 8px 8px 8px 12px; background:#ebebeb; color: #888888;margin-bottom:6px;border-radius:5px;
}

.blog_categories a{
    color: #888888;
    text-decoration:none;
}

.blog_detail_img img{
    width:100%;
    border-radius:8px;
}

.blog_detail_title h2{
    color: #6a6a6a;
    padding: 12px 0;
}

.blog_details_text p{
    color: #333333;
    padding-bottom: 12px;
    text-align: justify;
}

.blog_details{
    padding: 50px 0;
}

#contactForm .form-control {
    font-size: 16px;
}

.info-wrap .dbox .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.info-wrap .dbox-sm .icon-sm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.info-wrap .dbox .icon span {
    font-size: 20px;
    color: #fff;
}

.info-wrap .dbox-sm .icon-sm span {
    font-size: 20px;
    color: #fff;
}

.info-wrap .dbox {
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.info-wrap .dbox-sm {
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.info-wrap {
    border-radius: 5px;
}

.info-wrap h3 {
    color: #fff;
}

.info-wrap .dbox .text {
    width: calc(100% - 50px);
}

.info-wrap .dbox-sm .text {
    width: calc(100% - 50px);
}

.info-wrap .dbox p {
    margin-bottom: 0;
    padding-left: 1rem !important;
}

.info-wrap .dbox-sm p {
    margin-bottom: 0;
    padding-left: 1rem !important;
}
.info-wrap .dbox p span {
    font-weight: 600;
    color: #fff;
}
.info-wrap .dbox-sm p span {
    font-weight: 600;
    color: #fff;
}
.info-wrap .dbox p a {
    color: #fff;
    text-decoration:none;
}
.info-wrap .dbox-sm p a {
    color: #fff;
    text-decoration:none;
}


/*** Sub Menu ***********************/

.nav-item {
    position: relative;
    margin: 0 8px;
}

.nav-link {
    text-decoration: none;
    color: #000;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s, color 0.3s;
}

.submenu {
    display: none;
    list-style: none;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f8f9fa;
    border-radius: 5px;
    width: 200px;
}

.submenu li {
    margin: 2px 5px;
}

.submenu li a {
    padding: 5px 8px;
    text-decoration: none;
    color: #000;
    display: block;
    transition: background 0.3s, color 0.3s;
}

.submenu li a:hover {
    background: #dddddd;
    color: #4e4e4e;
    cursor:pointer;
}

.nav-item:hover .submenu {
    display: block;
}

@media (max-width: 768px) {
    
    .submenu {
        position: static;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        border:#888888 1px solid;
    }
    .nav-item:hover .submenu {
        display: block;
    }
}