/* ===============================
   BREADCRUMB
================================= */

/* Container for the breadcrumb */
nav.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
	padding: 10px 20px;
	border-top: 1px solid #f4f4f4;
	border-bottom: 1px solid #f4f4f4;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Style for each breadcrumb item */
.breadcrumb a {
	text-decoration: none;
	color: #007bff;
	padding: 8px 12px;
	transition: color 0.3s;
}

/* Hover effect */
.breadcrumb a:hover {
	color: #0056b3;
}

/* Separator styling */
.breadcrumb span.separator {
	padding: 8px 12px;
	color: #6c757d;
}

.breadcrumb .current-page {
	color: #000;
}

/* Responsive adjustments */
@media (max-width: 600px) {
	nav.breadcrumb {
		font-size: 14px;
	}
	.breadcrumb a,.breadcrumb span.separator {
		padding: 6px 10px;
	}
	
	.services-details-area .details-content h4 {
		margin-bottom: 10px !important;
	}
}


/* ===============================
   SLIDER
================================= */

/* Slider image */
.custom-slider-img {
    height: 540px;
    object-fit: cover;
}

/* Smooth fade transition */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Zoom effect (premium look) */
.carousel-item img {
    transform: scale(1);
    transition: transform 6s ease-in-out;
}

.carousel-item.active img {
    transform: scale(1.1);
}

/* Overlay */
.carousel-item {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Content positioning */
.slider-content .container {
    max-width: 600px;
}

.slider-content {
    position: absolute;
    top: 30%;              /* slightly above center */
    left: 8%;              /* space from left edge */
    transform: translateY(-30%);
    z-index: 2;
    max-width: 600px;
}

.slider-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.slider-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Text animation */
.carousel-item .slider-content h1,
.carousel-item .slider-content p,
.carousel-item .slider-content a {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
    color: #fff;
}

.carousel-item.active .slider-content h1,
.carousel-item.active .slider-content p,
.carousel-item.active .slider-content a {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation */
.carousel-item.active .slider-content p {
    transition-delay: 0.3s;
}

.carousel-item.active .slider-content a {
    transition-delay: 0.6s;
}

@media (max-width: 768px) {
    .slider-content {
        top: 35%;
        left: 5%;
        transform: translateY(-35%);
        max-width: 90%;
    }

    .slider-content h1 {
        font-size: 32px;
    }

    .slider-content p {
        font-size: 16px;
    }
}


/* ===============================
   CHECKLIST
================================= */

/* checklist-items */
.custom-check {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background-color: #ffa826; /* circle background */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.custom-check::before {
	content: '';
	width: 6px;
	height: 12px;
	border: solid white; /* tick color */
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	display: block;
}


/* ===============================
   ACCORDIONS
================================= */

.faq-wrapper.accordion .accordion-button::after {
	background-image: none;
	width: 1rem;
	height: 1rem;
	position: relative;
}

.faq-wrapper.accordion .accordion-button::after {
	content: "+";
	font-size: 20px;
	font-weight: 600;
	color: #FFA826;
	transform: none;
}

.faq-wrapper.accordion .accordion-button:not(.collapsed)::after {
	content: "−";
}
