
/* Page Title Section */
#page-title {
height: 50vh;
min-height: 400px;
background-color: var(--dark-color);
position: relative;
padding-top: 120px;
overflow: hidden;
}

.page-title-heading {
font-size: 48px;
font-weight: 800;
margin-bottom: 20px;
}

.page-title-description {
font-size: 18px;
max-width: 700px;
margin: 0 auto 20px;
color: var(--light-color);
}

.breadcrumb {
background-color: transparent;
justify-content: center;
padding: 0;
margin: 0;
}

.breadcrumb-item {
font-size: 16px;
font-weight: 500;
}

.breadcrumb-item a {
color: var(--light-color);
}

.breadcrumb-item.active {
color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
color: var(--light-color);
}

.page-title-shape {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
background: linear-gradient(to top, var(--dark-light-color), transparent);
}

/* Services Search Section */
.section-padding-sm {
padding: 50px 0;
}

.search-box {
background-color: var(--dark-color);
border-radius: 15px;
padding: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-box .input-group {
border-radius: 10px;
overflow: hidden;
}

.search-box .input-group-text {
background-color: var(--dark-light-color);
border: none;
color: var(--primary-color);
font-size: 18px;
}

.search-box .form-control {
background-color: var(--dark-light-color);
border: none;
color: var(--white-color);
font-size: 16px;
padding: 15px;
height: auto;
}

.search-box .form-control:focus {
box-shadow: none;
background-color: var(--dark-light-color);
color: var(--white-color);
}

.search-box .form-control::placeholder {
color: var(--light-color);
}

.search-box .btn {
padding: 10px 20px;
font-weight: 600;
}

/* Services Filter Section */
.filter-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
margin-bottom: 30px;
}

.filter-btn {
background-color: var(--dark-color);
color: var(--light-color);
border: 2px solid transparent;
border-radius: 30px;
padding: 10px 25px;
font-size: 16px;
font-weight: 600;
transition: all 0.3s ease;
cursor: pointer;
}

.filter-btn:hover {
background-color: var(--dark-light-color);
color: var(--primary-color);
}

.filter-btn.active {
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
color: var(--dark-color);
border-color: transparent;
}

/* Services Grid Section */
.services-wrapper {
position: relative;
min-height: 400px;
}

#services-loading {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: rgba(var(--dark-color-rgb), 0.7);
z-index: 10;
}

.spinner {
width: 60px;
height: 60px;
position: relative;
margin-bottom: 20px;
}

.double-bounce1, .double-bounce2 {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: var(--primary-color);
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
animation-delay: -1.0s;
}

@keyframes bounce {
0%, 100% { 
transform: scale(0.0);
} 
50% { 
transform: scale(1.0);
}
}

#services-loading p {
color: var(--white-color);
font-size: 18px;
font-weight: 600;
}

.service-card {
background-color: var(--dark-color);
border-radius: 15px;
overflow: hidden;
margin-bottom: 30px;
transition: all 0.3s ease;
border: none;
height: 100%;
position: relative;
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card img {
width: 100%;
height: 220px;
object-fit: cover;
transition: all 0.5s ease;
}

.service-card:hover img {
transform: scale(1.05);
}

.service-card .card-body {
padding: 25px;
}

.service-title {
font-size: 22px;
font-weight: 700;
margin-bottom: 15px;
color: var(--white-color);
}

.service-description {
color: var(--light-color);
margin-bottom: 20px;
font-size: 16px;
line-height: 1.6;
}

.service-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}

.service-category {
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
color: var(--dark-color);
padding: 5px 15px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
}

.service-rating {
display: flex;
align-items: center;
}

.service-rating i {
color: #FFD700;
margin-right: 2px;
}

.service-rating span {
color: var(--light-color);
font-size: 14px;
margin-left: 5px;
}

.read-more-btn {
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
color: var(--dark-color);
border: none;
border-radius: 30px;
padding: 10px 25px;
font-size: 16px;
font-weight: 600;
transition: all 0.3s ease;
cursor: pointer;
display: inline-block;
text-align: center;
text-decoration: none;
}

.read-more-btn:hover {
background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
}

#no-results {
padding: 50px 0;
}

.no-results-icon {
font-size: 60px;
color: var(--primary-color);
margin-bottom: 20px;
}

#no-results h3 {
font-size: 28px;
margin-bottom: 15px;
color: var(--white-color);
}

#no-results p {
font-size: 18px;
color: var(--light-color);
max-width: 500px;
margin: 0 auto;
}

/* Featured Services Section */
.featured-services-slider {
margin: 0 -15px;
}

.featured-services-slider .slick-slide {
padding: 15px;
}

.featured-service-card {
background-color: var(--dark-color);
border-radius: 15px;
overflow: hidden;
transition: all 0.3s ease;
height: 100%;
position: relative;
}

.featured-service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.featured-service-card .featured-badge {
position: absolute;
top: 20px;
right: 20px;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
color: var(--dark-color);
padding: 5px 15px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
z-index: 1;
}

.featured-service-card img {
width: 100%;
height: 250px;
object-fit: cover;
transition: all 0.5s ease;
}

.featured-service-card:hover img {
transform: scale(1.05);
}

.featured-service-card .card-body {
padding: 25px;
}

.featured-service-title {
font-size: 24px;
font-weight: 700;
margin-bottom: 15px;
color: var(--white-color);
}

.featured-service-description {
color: var(--light-color);
margin-bottom: 20px;
font-size: 16px;
line-height: 1.6;
}





/* FAQ Section */
.accordion-item {
background-color: var(--dark-color);
border: none;
margin-bottom: 15px;
border-radius: 10px;
overflow: hidden;
}

.accordion-button {
background-color: var(--dark-color);
color: var(--white-color);
font-weight: 600;
font-size: 18px;
padding: 20px 30px;
box-shadow: none;
}

.accordion-button:not(.collapsed) {
background-color: var(--dark-color);
color: var(--primary-color);
box-shadow: none;
}

.accordion-button:focus {
box-shadow: none;
border-color: transparent;
}

.accordion-button::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2366FCF1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2366FCF1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transform: rotate(-180deg);
}

.accordion-body {
background-color: rgba(255, 255, 255, 0.05);
padding: 20px 30px;
color: var(--light-color);
}

/* CTA Section */
.cta-box {
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
border-radius: 15px;
padding: 50px;
position: relative;
overflow: hidden;
}

.cta-box::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
animation: pulse 4s infinite;
}

@keyframes pulse {
0% {
transform: scale(0.8);
opacity: 0.5;
}
50% {
transform: scale(1);
opacity: 0.8;
}
100% {
transform: scale(0.8);
opacity: 0.5;
}
}

.cta-title {
font-size: 36px;
font-weight: 800;
margin-bottom: 15px;
color: var(--dark-color);
position: relative;
z-index: 1;
}

.cta-text {
font-size: 18px;
color: var(--dark-color);
margin-bottom: 0;
position: relative;
z-index: 1;
}

.cta-box .btn {
position: relative;
z-index: 1;
font-weight: 600;
padding: 12px 30px;
font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
.page-title-heading {
font-size: 42px;
}

.process-content {
width: calc(50% - 40px);
}

.process-item:nth-child(odd) .process-content {
margin-right: 40px;
}

.process-item:nth-child(even) .process-content {
margin-left: 40px;
}
}

@media (max-width: 991px) {
.filter-buttons {
flex-wrap: nowrap;
overflow-x: auto;
padding-bottom: 15px;
justify-content: flex-start;
}

.filter-btn {
flex-shrink: 0;
}

.process-timeline::before {
left: 40px;
}

.process-item {
flex-direction: row !important;
}

.process-number {
left: 40px;
width: 60px;
height: 60px;
font-size: 20px;
}

.process-content {
width: calc(100% - 90px);
margin-left: 90px !important;
margin-right: 0 !important;
}

.cta-box {
padding: 30px;
}

.cta-title {
font-size: 28px;
}
}

@media (max-width: 767px) {
.page-title-heading {
font-size: 36px;
}

.page-title-description {
font-size: 16px;
}

.search-box .form-control {
font-size: 14px;
padding: 12px;
}

.search-box .btn {
padding: 8px 15px;
font-size: 14px;
}

.filter-btn {
padding: 8px 20px;
font-size: 14px;
}

.service-title {
font-size: 20px;
}

.service-description {
font-size: 14px;
}

.read-more-btn {
padding: 8px 20px;
font-size: 14px;
}

.category-icon {
width: 60px;
height: 60px;
font-size: 24px;
}

.category-title {
font-size: 20px;
}

.process-number {
width: 50px;
height: 50px;
font-size: 18px;
}

.process-content {
width: calc(100% - 80px);
margin-left: 80px !important;
padding: 20px;
}

.process-title {
font-size: 20px;
}

.accordion-button {
font-size: 16px;
padding: 15px 20px;
}

.accordion-body {
padding: 15px 20px;
}

.cta-box {
padding: 30px 20px;
}

.cta-title {
font-size: 24px;
}

.cta-text {
font-size: 16px;
}
}

@media (max-width: 575px) {
.page-title-heading {
font-size: 30px;
}

.process-timeline::before {
left: 20px;
}

.process-number {
left: 20px;
width: 40px;
height: 40px;
font-size: 16px;
}

.process-content {
width: calc(100% - 60px);
margin-left: 60px !important;
}

.testimonial-author-img {
width: 50px;
height: 50px;
}

.testimonial-author-info h4 {
font-size: 16px;
}
}
