
:root {
  --primary-color: #8fef8e;
    --secondary-color: #775bbf;

}

.header-navigation {
    border-top: 1px solid #ccd6d9;
}

a {
	word-break: break-all;
}

button.navbar-toggler {
    background-color: #fff;
    padding: 3px 5px;
}

.slide-container {
    transform: translate(-50%, -50%);
}

.slide .slide-text h1 {
    color: #fff;
    font-size: 60px;
}


.slide .slide-text h3 {
	color: #fff;
	font-size: 30px;
}

.slide .slide-text p {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.home-services .card {
    border: 0;
}

.btn-primary {
    position: relative;
}

.section-2101 {
    background-color: #00313f;
    padding: 100px 0;
}

.blog {
    background-color: #f9f9f9;
}

.blog h2 {
    margin-bottom: 35px;
}

.latest-blog h3 a {
    color: #00313f;
    font-size: 20px;
    font-weight: bold;
}

.latest-blog h3 {
    line-height: 25px;
    margin-bottom: 17px;
}

.latest-blog a.btn {
    background-color: #ff0000;
    padding: 15px;
    font-size: 20px;
    margin: 0;
    border-radius: 25px;
}

.latest-blog a.btn:hover {
    background-color: #000;
}

.reviewname {
    text-align: left;
    margin-bottom: 0;
}

.stars img {
    text-align: left;
    vertical-align: top;
}

.testimonials {
    padding: 100px 0;
}

.last-banner {
    background-image: url(../img/banner2.jpg);
    padding: 80px 0;
    color: #fff;
}

.last-banner h2 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-main {
    margin-top: 0px;
}

.footer-main .title {
    font-size: 25px;
    font-weight: bold;
}

.social .fa-brands {
    width: 25px;
    line-height: 25px;
    font-size: 15px;
}

.sub-title {
    position: relative;
    display: inline-block;
    padding-right: 15px;
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid #e02454 !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid #003a66 !important;
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid #e02454 !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid #003a66 !important;
}

/* ------------ */
.slide .swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide .swiper-slide img {
    width: 100%;
    max-height: 700px;
    display: block;
    position: relative;
    z-index: 0;
    object-fit: cover;
    min-height: 300px;
}

.slide .slide-container {

    z-index: 99;
}

.page-banner {
    position: relative;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-banner .container {
    z-index: 99;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-banner h1 {
    color: #fff;
}

.page-banner img {
	width: 100%;
	height: 500px;
	display: block;
	position: relative;
	z-index: 0;
	min-height: 300px;
	object-fit: cover;
}

.service-box {
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

/* ------------ */

h1.display-5.mb-4 {
    font-weight: 600 !important;
}

.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
    c  color: var(--secondary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.text-muted {
    color: #6c757d !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: #f0f5fb !important;
}


/* ------------ */


.service-card {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    border-radius: 1rem;
    background: #fff;
}

.service-card img {
    width: 100%;
    height: 250px;
    transition: transform 0.5s ease, filter 0.5s ease;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    object-fit: cover;
}

.service-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

/* .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 1rem;
  pointer-events: none;
} */

.service-card:hover::before {
    opacity: 1;
}

/* .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 2rem 2.5rem rgba(0, 0, 0, 0.2);
} */

.service-card .card-body h4 {
    transition: color 0.4s ease, transform 0.4s ease;
}


.service-card .btn {
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 123, 255, 0.3);
}


/*** Service End ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 100%;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

/* new */

.why-choose {
    padding: 5rem 0;
}

.why-choose .section-title h2 {
    font-weight: 700;
    margin-bottom: 2rem;
    color: #007bff;
}

.why-choose .feature-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.why-choose .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.why-choose .feature-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.why-choose .feature-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-choose .feature-text {
	font-size: 16px;
	color: #000;
	font-weight: 700;
}

/*---------------*/

.pricing-section {
    background: #f8f9fc;
}

.pricing-card {
	background: #fff;
	padding: 30px;
	border-radius: 16px;
	text-align: center;
	transition: 0.3s ease;
	position: relative;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(0,128,128,0.1);
    color: var(--secondary-color);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pricing-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-card .price {
	font-size: 32px;
	font-weight: bold;
	color: #000;
}

.pricing-card .price span {
    font-size: 14px;
    color: #666;
}

.price-alt {
    font-size: 14px;
    color: #888;
}

.pricing-card.featured {
    border: 2px solid #008080;
    transform: scale(1.05);
}

.pricing-card .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #008080;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* Info Boxes */
.info-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.info-box h5 {
    color: #008080;
    margin-bottom: 15px;
}

.info-box ul {
    padding-left: 18px;
}


/*---------------*/






@media (max-width: 768px) {
    .why-choose {
        padding: 3rem 0;
    }
}

/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}

/*** Contact End ***/


/*** Footer End ***/

.featured-services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    z-index: 1;
}

.featured-services .service-item:before {
    content: "";
    position: absolute;
    background: var(--accent-color);
    inset: 100% 0 0 0;
    transition: all 0.3s;
    z-index: -1;
}

.featured-services .service-item .icon {
    margin-bottom: 10px;
}

.featured-services .service-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.featured-services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
    color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
    background: var(--accent-color);
    inset: 0;
    border-radius: 0px;
}

section.full_width.py-5 {
    background-color: #3061b4;
}

.worktitle {
    font-size: 20px;
    font-weight: bolder;
}

.width-20 {
    width: 20%;
}

/*---------------*/
.workshop-section {
    padding: 60px 20px;
    background: #fff;
    box-shadow: 0 0 15px #ddd;
    border-radius: 10px;
}

.workshop-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2rem;
    border-bottom: 3px solid #dc3545;
    display: inline-block;
    padding-bottom: 5px;
}

.workshop-description {
    font-size: 1.2rem;
    margin-top: 15px;
    color: #000;
}

.workshop-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    line-height: 40px;
}

/*-------------*/

.home-custom-blog .swiper-button-next:after,
.home-custom-blog .swiper-button-prev:after {
    display: none;
}

.home-custom-blog .blog-button-prev,
.home-custom-blog .blog-button-next {
    background: #000000;
    width: 80px;
    border-radius: 5px;
    font-size: 13px;
    padding: 0 10px;
    color: #fff;
}

.home-custom-blog .swiper-slide {
    padding: 0 100px;
}


.footer-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.footer-item a img {
    width: 200px;
    height: 150px;
    object-fit: contain;
    background-color: transparent;
    padding: 5px;
    border: 1px solid #3c3c3c;
}


@media screen and (min-width: 1400px) and (max-width: 1800px) {
    .header .navbar-nav .nav-item a {
        font-size: 18px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (max-width: 1200px) {
    .slide .slide-text h1 {
        font-size: 40px;
    }
}

@media screen and (min-width: 992px) {
    .home-custom-blog .swiper-slide {
        padding: 0 100px;
    }
}


@media screen and (max-width: 575px) {
    .sub-title {
        font-size: 14px;
    }

    .btn-primary {
        position: relative;
        font-size: 14px !important;
    }

    .service-title p {
        font-size: 14px;
    }

    .testimonials-slider.px-5 {
        padding: 10px !important;
    }

    .sub-title::before {
        width: 30px;
        margin-right: -18px;
    }

    .sub-title::after {
        width: 30px;
        margin-right: -18px;
    }
}

.footer-item img {
    width: fit-content;
}