/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 35px;
    left: 0;
    z-index: 9;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 40px 0;
    color: var(--bs-warning);
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
	font-weight:600;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color:#fff;
	font-weight:600;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
        background: #1a1a1a;
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgb(0 0 0 / 21%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
	display:none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 1.5rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-white);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-white);
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3rem solid rgba(0, 0, 0, .5);
    border-radius: 300px;
    z-index: 1;
}

.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(to right, #0e5626, #04441a);
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to left,#0e5626,#04441a);
}

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}

.footer {
	background-image: url(../img/footer-bg.webp);
	background-position: 0px 0px;
    background-repeat: repeat;
	animation: footerAnimatedBg 50s linear infinite;
}
.logo-img{
    width: 140px;
}
.foot-logo{
    width: 240px;
}
.banner-logo{
    width: 50%;
}
.banner-main a {
    color:#fff;
}
.main-cap{
    background: #1e1c1cd1;
}
@media (max-width: 650px){
    .title .title-left h1, .title .title-center h1, .title .title-right h1{
        font-size: 154%;
    }
    .mx-5{
        margin-left: 0px!important;
        margin-right: 0px!important;
    }
    .fs-5{
        font-size: 14px!important;
    }
    .service-item .service-img::before{
    top: 0%!important;
    left: 0%!important;
    }
}
.bg-dark{
    background-color: #1a1a1a !important;
}
.bg-secondary.aboutsec{
background:#08421b !important;
}
p{
	color:#f1e4e4;
}
.pricelist h1 {
    color: #f1d535;
}
 .title.pricelist:before{
	background:#f1d535 !important;
	top:10px;
}
.pricelist li{
	    color: #e7dfdf !important;
    letter-spacing: 0.5px;
}
.pricelist h5{
	color:#fff;
}
.pricelist .waiting, .pricelist .waiting li{
background:#000;
text-align:left;
padding:10px !important;
border-radius:15px;
line-height:1.8em;
font-weight:500;
}
.pricelist .waiting ul{
	margin-bottom:10px !important;
}.pricelist .waiting{
	margin-bottom:40px !important;
}
.pricelist .waiting h4{
	margin: 15px 15px;
	color:#ebaa44;
	letter-spacing: 1px;
    text-decoration: underline;
}
.price-table{
	border-radius:30px;
}

.shrt-notes h6 {
    color: #fff;
    text-align: center;
    padding: 5px 10px;
	line-height:2em;
	letter-spacing:0.5px;
}
.shrt-notes p {
    margin-bottom: 30px;
    color: #f5d65f;
    margin-top: 10px;
}
## Tables
--------------------------------------------------------------*/
.price-table {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .price-table {
    margin-bottom: 100px;
  }
}

.price-table__title {
  font-size: 14px;
}

.price-table__title > td:first-child {
  font-size: 16px;
  color: #6678ea;
  font-weight: bold;
}

@media (min-width: 768px) {
  .price-table__title > td:first-child {
    font-size: 18px;
  }
}

.price-table tr td {
  line-height: 20px;
  padding: 10px 5px 10px 10px;
}

@media (min-width: 768px) {
  .price-table tr td {
    line-height: 29px !important;
    padding: 15px 5px !important;
  }
}

.price-table tr:not(.price-table__title):nth-child(even) {
  background: #f3f4f7;
}

.price-table tr:not(.price-table__title) {
  background: #f8f8fa;
}
.responsive-table {
  margin-bottom: 0;
  overflow-x: auto;
  width: 100%;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}
.responsive-table table {
  margin: 0;
}
.price-table {
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
}
table {
  width: 100%;
}
.price-table th:first-child{
  background: #19d564;
  border: 0;
  color: #fff;
}
.price-table thead th {
  font-size: 13px;
  padding: 2em 1em;
}
.price-table thead th {
  font-size: 13px;
  padding: 2em 3em;
}
.price-table th{
  background: #000000;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-align: center;
}
.price-table thead th i {
  display: block;
  font-size: 40px;
  line-height: 33px;
  overflow: hidden;
}
.price-table tbody tr:nth-child(odd) th {
  background: rgb(167 255 202);
  color: #000;
}
.price-table tbody tr:nth-child(odd) td {
  background:rgb(21 138 67);
}
.price-table td {
  background: #444444;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-align: center;
}
.price-table th{
	    font-size: 20px;
    font-weight: 900;
    background: #4a575e91;
    color: #ffffff;
    padding: 1em;
}
.price-table thead th {
   background: #444444;
    color: #fff;
    font-size: 18px;
}
.price-table tr td {
    font-size: 18px;
    font-weight: 600;
}
.bg-secondary.pricesec{
	background:#1a6e35 !important;
}
.waiting h4 {
    margin: 15px 15px;
    color: #ebaa44;
    letter-spacing: 1px;
    text-decoration: underline;
}
.waiting, .waiting li {
    background: transparent;
    text-align: left;
    padding: 10px !important;
    border-radius: 15px;
    line-height: 1.8em;
    font-weight: 500;
}
.waiting li {
    color: #e7dfdf !important;
    letter-spacing: 0.5px;
	font-size:18px;
}
.pricesec .title{
	margin-bottom:10px;
}
.des-sec {
	background:#08421b !important;
}
.info-box {
    text-align: center;
    padding: 40px 0 20px;
    background-image: url(../img/texture.png);
    position: relative;
	line-height:5em;
}
#book span.text-link {
    font-weight: 600;
    color: #6cf56c;
    font-size: 24px;
}
#book h1{
    font-size: 42px;
	color: #fdf81d;
    text-transform: capitalize;
}
.planning
{
	background:#044219 !important;
}
.intro p.icon-circle, .intro p.icon-circle img {
  color: #fabd07 !important;
    border: 2px solid #fabd07;
}
.icon-circle.icon-big {
    font-size: 2em;
    height: 70px;
    line-height: 70px;
    width: 70px;
}
.icon-circle {
    border: 2px solid #19d564;
    border-radius: 50%;
    color: #000000;
    display: inline-block;
    text-align: center;
}
#services h1, #services h5, #services p, #services h4 {
    color: #177437;
}
#services .title .title-center h1{
	border-bottom: 1px solid #177437;
}
section#services {
    background: #fff;
}

/* -Why choose Section */
.why{
  background-image: url(../images/texture.png);
}
.service {
  padding: 0 0 10px 75px;
  position: relative;
  margin-bottom: 25px;
}
.service p{
  line-height: 65px;
}
.service i {
  border: 2px solid #19d564;
  border-radius: 50%;
  color: #000000;
  display: block;
  font-size: 1.75em;
  height: 70px;
  left: 0;
  line-height: 66px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 70px;
}
.service strong {
  color: #fff;
  font-size: 19px;
}
.service i {
  border: 2px solid #f1d535;
  border-radius: 50%;
  color: #f1d535;
  display: block;
  font-size: 1.5em;
  height: 60px;
  left: 0;
  line-height: 60px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 60px;
}

.why{
	background:#08421b !important;
}
/* -End Why choose Section */

/* car tyes*/

.types{
	background:#075420;
}
.footer .text-light {
    color: #3c403e !important;
}
.footer p {
    color: #3a5643;
}

.service p.sub-content {
    line-height: 25px;
    margin-left: -75px;
    margin-top: -10px;
    /* text-align: center; */
}

/* gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 15px;
}

.gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  z-index: 999;
}

.lightbox:target {
  display: block;
}

/* Image */
.lightbox img {
  display: block;
  max-width: 90%;
  max-height: 80%;
  margin: 5% auto;
  border-radius: 8px;
}

/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  transition: 0.3s;
}

.prev:hover, .next:hover {
  background: rgba(255,255,255,0.2);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  text-decoration: none;
}
	

.more{
display:none;
}
#contactForm {
    box-shadow: 0 15px 25px rgb(0 0 0);
    padding: 30px 20px;
    background-color: #56b37b;
}
label {
    font-size: 15px;
	color:#000;
}

label {
    display: flex;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}
textarea {
    width: 100%;
    height: 215px;
    min-height: 215px;
    resize: vertical;
    overflow: auto;
}

.terms{
	background:#f1f1f1;
	}
	.terms p,.terms ul li, .terms strong{
		font-size:17px;
		color:#000;
		font-family:"Work Sans",sans-serif;
	}
	.terms a {
    color: #cf7e00;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}
.terms h4 strong {
    color: #084b1b !important;
font-size:24px !important;
}

.subscrip{
	background:#08421b;
}
.subscrip p,.subscrip ul li, .subscrip strong{
		font-size:18px;
		font-family:"Work Sans",sans-serif;
		color:#fff;
	}
	.subscrip a {
    color: #cf7e00;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}
.subscrip h4 strong {
font-size:24px !important;
color:#ffc107;
}

.subscrip h4,.subscrip h5{
		font-family:"Work Sans",sans-serif;
}
.headline {
    background: #098b3d;
    color: #fff;
    padding: 10px;
}
.header-container_wrap {
    position: relative;
}
.header-container__flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
}
.top-header {
    display: flex;
}

.top-header ul {
    display: flex;
    padding: 0px;
    margin: 0px;
    font-size: 14px;
}.top-header ul li {
    padding-right: 20px;
	    list-style: none;
}
.top-header a {
    color: #fff;
}
.navbar.position-fixed{
	top:0;
}

/* mobile view */
@media (max-width:767px) {
    #header-carousel .carousel-item img {
		position:relative !important;
}
.carousel-inner.desktop{
	display:none;
}
	.premium .service-text {
    margin-bottom: 25px;
}
.service strong{
	font-size:18px;
}

.service {
    padding: 0 0 10px 70px;
}
.carousel-inner{
	height:300px;
}
.home.carousel-inner{
	height:auto !important;
}
}

@media (min-width:768px) {

.carousel-inner.mobile{
	display:none;
}
}
@media(max-width:480px){
	.price-table th{
		font-size:17px;
	}
	.service{
		margin-bottom:0;
	}
}
@media(min-width:567px) and (max-width:767px){
		.service p {
    line-height: 60px;
}
}
@media(max-width:344px){
.top-header ul li {
    padding-right: 8px;
}
}
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

.nav a {
  text-decoration: none;
  padding: 10px 15px;
  color: #333;
}

.nav a.active {
  color: #fff;
  background: #007bff;
  border-radius: 5px;
}