/* ===============================
   PAGE BANNER
================================= */

/* Container for the banner */
.page-banner-area {
	position: relative;         /* To position overlay and image absolutely inside */
	padding-top: 155px;
	padding-bottom: 155px;
	overflow: hidden;           /* Ensures nothing spills outside */
	z-index: 1;                 /* Base z-index */
}

/* Overlay: semi-transparent color overlay */
.page-banner-area::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #160A05; /* Your overlay color */
	opacity: 0.7;              /* Adjust transparency as needed */
	z-index: 2;                /* Above the image, below content */
}

/* Banner image: positioned behind overlay but above background */
.banner-image {
	position: absolute;        /* Fill the container */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;         /* Cover the container without distortion */
	z-index: 1;                /* Below overlay and content */
	display: block;
}

/* Content: Above overlay and image */
.page-banner-content {
	position: relative;        /* Keep above overlay and image */
	z-index: 3;                /* Highest, so content is visible */
}


/* ===============================
   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: #ff6726; /* 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: #ff6726;
	transform: none;
}

.faq-wrapper.accordion .accordion-button:not(.collapsed)::after {
	content: "−";
}


/* ===============================
   POLICY TERMS
================================= */

.policy-terms ol {
	margin-bottom: 20px;
}

.policy-terms ol li::marker {
    color: #555555 !important;
}


/* ===============================
   PRELOADER 
================================= */

/* Preloader Overlay */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	/* Fade out animation */
	animation: fadeOut 1s ease forwards;
	animation-delay: 1s; /* Change delay here */
}

/* Spinner */
.spinner {
	width: 60px;
	height: 60px;
	border: 6px solid #333;
	border-top: 6px solid #ff6726;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Fade out animation */
@keyframes fadeOut {
	to {
		opacity: 0;
		visibility: hidden;
	}
}


/* ===============================
   FORMS
================================= */

/* Input Form Errors */
.form-control.is-invalid, .was-validated .form-control:invalid {
    background-image: none !important;
    border: 1px solid #dee2e6 !important;		
}

.input-error-message {
    color: #dc3545 !important;
}

.form-control:focus {
	box-shadow: none !important;
	outline: none !important;
}



/* ===============================
   NOTIFICATIONS
================================= */

/* Form Notifications */
#notification-container.form-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: auto;
}

.form-notifications .alert {
    margin: 0;
    padding: 15px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.form-notifications .alert-success {
    background-color: #ff6726; 
    border-color: #ff6726;  
    color: #ffffff;              
}


/* ===============================
   CTA
================================= */

/* CTA service details */
.service-cta-box {
    background: #f7f9fc;
    border: 1px solid #e6ecf2;
    border-radius: 10px;
    padding: 25px;
}

/* CTA buttons */
.cta-buttons .btn-primary {
	color: #ffffff;
}

.cta-buttons .btn-outline-primary:hover {
	color: #ffffff;
}


/* ===============================
   UPLOAD
================================= */
.customfile.form-control[type="file"]::file-selector-button {
	background: #ccc;
	border: 0;
	padding: 8px 12px;
	cursor: pointer;
}
