@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	color: var(--secondary-color);
	font-family: "Poppins", sans-serif;
	line-height: 1.8;
	font-size: 14px;
	font-weight: 500;
}

:root {
	--primary-colors: #ffa500;
	--secondary-color: #414141;
	--black-color: #000;
	font-size: 16px;
}

body {
	font-size: 16px;
	background-color: #fff;
}

h1, h2, h3, h4, h5, h5 {
	color: var(--black-color);
	font-family: "Montserrat", sans-serif;
}

.container_gutter {
	padding: 0 40px;
}

p {
	line-height: 1.8;
	font-size: 14px;
	font-weight: 500;
}

.mid_headings {
	font-weight: 800;
	font-size: 30px;
	color: #000;
}

/* scroll uo */
.image-scroll_top {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 590px;
	border: 3px solid #ddd;
	margin: 5px;
	overflow: hidden;
	border-radius: 10px;
}

.image-scroll_top.snd {
	height: 280px;
}

.image-scroll_top img {
	width: 100%;
	height: auto;
	transition: transform 10s linear;
}

.image-scroll_top:hover img {
	transform: translateY(-50%);
}

.overlay-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	text-align: center;
	padding: 20px;
}

.image-scroll_top:hover .overlay-text {
	opacity: 1;
}

.overlay-text h3 {
	color: #fff;
	font-weight: 800;
	text-shadow: 5px 5px 5px #000;
}

.overlay-text p {
	color: var(--primary-colors);
	font-weight: 800;
	text-shadow: 5px 5px 5px #000;
}

@media (max-width: 768px) {
	.image-scroll_top {
		height: 300px;
	}
}
/* Heading */
.section-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.line {
	flex-grow: .1;
	height: 2px;
	background-color: var(--primary-colors);
	position: relative;
}

.dots {
	display: flex;
	align-items: center;
	gap: 4px;
}

.dots span {
	width: 10px;
	height: 10px;
	background-color: #000;
	border-radius: 50%;
}

.dotss {
	display: flex;
	align-items: center;
	gap: 4px;
}

.dotss span {
	width: 10px;
	height: 10px;
	background-color: #000;
	border-radius: 50%;
}

.heading-text {
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 20px;
	color: var(--primary-colors);
	text-transform: uppercase;
	color: var(--primary-colors);
}

/* ========= BUTTON ================ */
.view-more-btn {
	display: inline-block;
	padding: 8px 30px;
	font-weight: 500;
	color: #000;
	border: 2px solid #000;
	border-radius: 50px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	font-size: 16px;
	transition: color 0.3s ease;
}

.view-more-btn::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	background: var(--primary-colors);
	z-index: -1;
	transition: all 0.3s ease;
}

.view-more-btn:hover {
	color: #000;
}

.view-more-btn:hover::before {
	height: 100%;
}

.view-more-btn i {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.view-more-btn:hover i {
	transform: translateX(5px);
}

.wdd_about i {
	color: var(--primary-colors);
}

/* ============== HEADER =========== */
.logo {
	height: 60px;
}

.wd_header .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
	color: #000;
}

.wd_header .dropdown-toggle::after {
	display: inline-block;
	margin-left: .255em;
	color: var(--primary-colors);
	vertical-align: .255em;
	content: "";
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent;
}

.navbar-brand {
	font-weight: bold;
	font-size: 1.5rem;
}

.get-quote-btn {
	background-color: #ff9900;
    color: #fff;
    padding: 8px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 400;
    border: 1px solid #ddd;
    font-size: 16px;
}

.get-quote-btn:hover {
	background-color: #ff6600;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
	border: 1px solid #ddd;
}

.navbar-nav .nav-link {
	font-weight: 400;
	color: #000;
	text-transform: capitalize;
	letter-spacing: .5px;
	font-size: 16px;
}

.navbar-nav .dropdown-menu {
	animation: fadeDown 0.4s ease forwards;
}

.top_right i {
	color: #fff;
	transform: rotate(-42deg);
}

@keyframes fadeDown {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ======= Updated Slider ========== */
.banner-content {
	padding: 40px 0;
}

.banner-content h1 {
	font-weight: 800;
	font-size: 40px;
	text-transform: capitalize;
}

.banner {
	background-color: #f8f8f8;
	padding: 40px 0;
}

.banner-image {
	display: flex;
}

.banner-image img {
	width: 50%;
}

.banner .marquee-wrapper {
	transform: rotate(-12deg);
	overflow: hidden;
	width: 100%;
	height: 400px;
	border-radius: 10px;
	position: relative;
	z-index: 1;
	margin-top: -100px;
}

.banner .marquee-track {
	display: flex;
	flex-direction: column;
	animation: scroll-up-down 12s linear infinite alternate;
}

.banner .marquee-item {
	flex: 0 0 auto;
	margin: 10px;
}

.banner .marquee-item img {
	width: 100%;
	border-radius: 8px;
	display: block;
	border: 2px solid orange;
}

@keyframes scroll-up-down {
	0% {
		transform: translateY(0%);
	}

	100% {
		transform: translateY(-20%);
	}
}

@media (max-width: 480px) {
	.marquee-wrapper {
		width: 90%;
		height: 300px;
	}
}



/* ========= CLIENTS ========= */
.wd_clients {
	background: var(--primary-colors);
	padding: 50px 0;
	position: relative;
	z-index: 2;
}

.wd_clients .owl-carousel .owl-item img {
	display: block;
	height: 40px;
	object-fit: fill;
	width: 75%;
	filter: brightness(0.1);
}

/* ========= ABOUT ========= */
.wd_count {
	display: block;
}

.wd_count h3, .wd_count_1 h3 {
	font-size: 60px;
	margin-bottom: 0;
	font-weight: 800;
	color: var(--black-color);
	font-family: "Open Sans", sans-serif;
}

.wd_over_icon {
	padding-left: 20px;
}

/* =========== SERVICES ========== */
.wd_services {
	background: #f8f8f8;
	padding: 50px 0;
	position: relative;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.wdd_about {
	position: relative;
}

.section-title {
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
}

.tab-content>.tab-pane img {
	height: 280px;
	width: 100%;
	object-fit: cover;
}

/* .section-title::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 2px;
	background: var(--primary-colors);
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
} */

.nav-pills .nav-link {
	font-weight: 600;
	color: #000;
	border-radius: 0;
	display: flex;
	align-items: center;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #ddd;
	transition: all 0.3s ease;
	font-size: 18px;
}

.nav-pills .nav-link i {
	color: var(--primary-colors);
	margin-right: 10px;
}

.nav-pills .nav-link.active {
	background-color: transparent;
	color: var(--primary-colors);
	border-left: 3px solid var(--primary-colors);
}

.more-btn {
	border: 1px solid #000;
	border-radius: 50%;
	padding: 1rem;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: -50px;
	right: 0;
	transition: transform 0.3s;
}

.more-btn:hover {
	transform: scale(1.1);
}

.service_bottom {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100px;
}

.service_bottom_first {
	position: absolute;
	top: 0;
	left: -26px;
	width: 100px;
}

.service_bottom_second {
	position: absolute;
    top: 50px;
    right: 50px;
    width: 135px;
    max-width: 100%;
}

.accor_icons {
	width: 25px;
	margin-right: 10px;
}

.rotate {
	animation: spin 5s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
/* ========== PORTFOLIO ============ */
.wd_portfolio {
	padding: 50px 0;
}

.portfolio-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}

.portfolio-item img {
	width: 100%;
	transition: transform 0.5s ease;
	display: block;
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	opacity: 0;
	transition: opacity 0.5s ease;
	text-align: center;
	padding: 20px;
}

.portfolio-item:hover img {
	transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
}

.portfolio-overlay h5 {
	color: #fff;
	font-size: 30px;
	display: block;
}

.portfolio-overlay h3 {
	color: #fff;
	font-size: 20px;
	display: block;
}

/* ============ Happy Clients  ========== */
.stats-section {
	background-color: #000;
	color: #fff;
	padding: 0;
}

.stats-box {
	text-align: center;
	border-right: 1px solid #ff99005c;
	padding: 20px 10px;
}

.stats-box:last-child {
	border-right: none;
}

.stats-number {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-colors);
}

.stats-text {
	font-size: 0.9rem;
	margin-top: 5px;
	color: #ddd;
}
    
/* ========== SERVICE MARQUEE ========= */
.service_marque {
	position: relative;
}

.marquee-container {
	background: var(--primary-colors);
	overflow: hidden;
	position: relative;
	padding: 35px 0;
	-ms-transform: rotate(-4deg);
	z-index: 2;
}

.marquee-strip {
	background-color: #fff;
	transform: skewY(-5deg);
	padding: 20px 0;
}

.marquee-track {
	display: flex;
	white-space: nowrap;
	animation: marquee-bounce 15s linear infinite alternate;
}

.marquee-item {
	display: inline-flex;
	align-items: center;
	padding: 0 3rem;
	font-weight: 600;
	font-size: 1.5rem;
	color: #111;
}

.marquee-item i {
	margin: 0 1rem;
	color: var(--primary-colors);
}

@keyframes marquee-bounce {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	.marquee-item {
		font-size: 1.2rem;
		padding: 0 1.5rem;
	}
}

/* ========= WORKING PROCESS ========== */
.wd_work_process {
	background: #f8f8f8;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	position: relative;
}

.process-img {
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 20px;
}

.yellow-block {
	background-color: var(--primary-colors);
	border-radius: 10px;
	display: flex;
	width: 270px;
	align-items: center;
	justify-content: center;
	position: relative;
	border: 1px solid #000;
}

.process-img img {
	border-radius: 20px;
	border: 1px solid #000;
	padding: 5px;
	width: 100%;
}

.yellow-block-top {
	border-radius: 100px 100px 0px 0px;
	height: 100px;
	margin-bottom: 20px;
	width: 48%;
}

.yellow-block-bottom {
	border-radius: 10px;
}

.zigzag-line {
	position: absolute;
	width: 40px;
	height: 100px;
	background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 10px,
        black 10px,
        black 12px
      );
	transform: rotate(90deg);
}

.process-box {
	background: white;
	border: 2px solid #000;
	padding: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.process-box-number {
	background-color: var(--primary-colors);
	border-radius: 50%;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	padding: 35px;
	border: 1px solid #000;
	color: #000;
}

.process-heading {
	font-weight: 700;
	color: #000;
	font-size: 20px;
}

.process-subheading {
	font-size: 0.9rem;
	color: #000;
}

.section-title {
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 0;
}

.work-process-label {
	font-size: 0.9rem;
	color: #888;
}

@media(max-width: 768px) {
	.process-img img {
		width: 100%;
	}

	.yellow-block {
		height: 150px;
	}
}

/* ========== BLOGS ========== */
.blog-box {
	border: 1px solid #eee;
	padding: 15px;
	background: #fff;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.blog-box img {
	width: 100%;
	border-radius: 10px;
	height: 200px;
	object-fit: cover;
}

.blog-box h5 {
	font-weight: 600;
	margin-top: 15px;
	font-size: 18px;
	line-height: 1.6;
}

.blog-meta {
	font-size: 14px;
	color: #777;
	margin-top: 10px;
}

.blog-box a {
	font-weight: 500;
	color: #000;
	text-decoration: none;
}

.blog-box a:hover {
	color: var(--primary-colors);
}

/* ======= CONTACT PAGE ========== */
.info-box {
	border: 1px solid #d8dde1;
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	background: #fff;
	transition: 0.3s;
}

.info-box h6 {
    color: #000;
}

.info-box i {
	font-size: 24px;
	margin-bottom: 10px;
	color: #fbc02d;
}

.contact-form {
	background: #f9f9f9;
	padding: 40px;
	border-radius: 20px;
	margin-top: 30px;
	border: 1px solid #d8dde1;  
}

.btn-submit {
	background-color: #fbc02d;
	color: #000;
	font-weight: 600;
	border-radius: 30px;
	padding: 15px 30px;
	border: none;
}
.btn-submit:hover {
	background-color: #000;
	color: #fbc02d;
}
.contact-form .form-control {
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.contact-form select {
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* Change placeholder color to black */
::placeholder {
  color: #000 !important;   /* Black */
  opacity: 1;               /* Ensures full visibility */
}

/* For different browsers */
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000 !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #000 !important;
}

/* Change select text color to black */
select.form-select {
  color: #000 !important;   /* Black */
}

/* Ensure the placeholder (disabled option) appears gray */
select.form-select option[disabled] {
  color: #6c757d;  /* Bootstrap gray */
}
/* ============ Testimonials ========== */
.testimonial-slider {
	display: flex;
	overflow: hidden;
}

.testimonial-card {
	flex: 0 0 33.333%;
 
	max-width: 33.333%;
	padding: 15px;
	box-sizing: border-box;
	transition: transform 0.5s ease;
}

.testimonial-card .inner {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
	padding: 25px;
	height: 100%;
}

.testimonial-footer {
	display: flex;
	align-items: center;
	margin-top: 15px;
}

.testimonial-footer img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 10px;
}

.stars {
	color: #ffc107;
	font-size: 14px;
}

.bg-dark {
	--bs-bg-opacity: 1;
	background-color: rgb(255 153 0) !important;
}

    /* Mobile responsive */
@media(max-width: 768px) {
	.testimonial-card {
		flex: 0 0 100%;
		max-width: 100%;
	}
}	
/* ========== FAQ ============= */
.faq-section {
	background: #f8f8f8;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 60px 0;
	position: relative;
}

.faq-section .accordion-button:not(.collapsed) {
	color: #fff;
	background-color: orange;
}

.faq-section .accordion-button {
	font-weight: 600;
	border-radius: 0 !important;
	font-size: 15px;
}

.faq-section .accordion-item {
	margin-bottom: 10px;
	border: 0;
	border-radius: 0 !important;
	overflow: hidden;
}

.faq-section .accordion-body {
	background: #fff;
}

.faq-title p {
	color: #6c757d;
}

.accordion-button {
	font-weight: 600;
	border-radius: 10px !important;
	box-shadow: none !important;
}

.accordion-item {
	margin-bottom: 10px;
	border: 1px solid #ddd;
	border-radius: 12px !important;
	overflow: hidden;
}

.btn-ask {
	background: #000;
	color: #fff;
	border-radius: 25px;
	padding: 10px 20px;
	font-weight: 600;
	transition: 0.3s;
}

.btn-ask:hover {
	background: #ffc107;
	color: #000;
}	
/* Change accordion dropdown arrow to white */
.accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%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(0deg);
}

/* When open (rotate arrow) */
.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='white'%3e%3cpath fill-rule='evenodd' d='M1.646 11.354a.5.5 0 0 0 .708 0L8 5.707l5.646 5.647a.5.5 0 0 0 .708-.708l-6-6a.5.5 0 0 0-.708 0l-6 6a.5.5 0 0 0 0 .708z'/%3e%3c/svg%3e");
	transform: rotate(180deg);
}
/* ========= FOOTER TOP ========== */
.footer_top.text-center {
    background-color: #F8F8F8;
    background-image: url(../image/footer_top.png);
    background-position: center center;
    background-repeat: no-repeat;
	border-top: 1px solid #ddd;
}
.footer_top .form-control {
    background-color: transparent;
}
  /* .section-title {
      position: relative;
      display: inline-block;
      padding: 0 20px;
      font-size: 14px;
      font-weight: 600;
    }
    .section-title::before,
    .section-title::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 60px;
      height: 2px;
      background: #f1c40f;
    }
    .section-title::before {
      left: -70px;
    }
    .section-title::after {
      right: -70px;
    }

    .boost-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 30px;
    } */

    .form-control,
    .btn-check-now {
      border-radius: 50px;
      padding: 12px 20px;
    }

    .btn-check-now {
      background: #000;
      color: #f1c40f;
      font-weight: 600;
      transition: 0.3s;
    }
    .btn-check-now:hover {
      background: #f1c40f;
      color: #000;
    }

    .privacy-note {
      font-size: 14px;
      margin-top: 10px;
      color: #666;
    }

    .circle-btn {
		margin-top: 40px;
		width: 120px;
		height: 120px;
		border: 2px solid #ccc;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
		font-weight: 500;
		padding: 10px;
		transition: 0.3s;
    }
    .circle-btn:hover {
      background: #000;
      color: #fff;
      border-color: #000;
    }
/* ============ FOOTER ============ */
.footer {
	color: #bbb;
	padding: 60px 0 30px;
	background-color: #000;
	background-image: url(../image/footer_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.footer_logo {
	height: 55px;
	margin-bottom: 15px;
}

.footer h5 {
	color: #fff;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
	font-size: 20px;
}

.footer h5::after {
	content: '';
	width: 40px;
	height: 2px;
	background: var(--primary-colors);
	position: absolute;
	bottom: -10px;
	left: 0;
}

.footer a {
	color: #bbb;
	text-decoration: none;
	display: block;
	margin-bottom: 10px;
	transition: 0.3s;
}

.footer p {
	color: #bbb;
}

.footer a:hover {
	color: var(--primary-colors);
}

.footer .social-icons a {
	font-size: 18px;
	margin-right: 15px;
	color: #fff;
}

.footer .social-icons a:hover {
	color: var(--primary-colors);
}

.footer-bottom {
	border-top: 1px solid #333;
	margin-top: 30px;
	padding-top: 20px;
	font-size: 14px;
	color: #888;
}

.footer-bottom a {
	color: #bbb;
	margin-left: 20px;
}

.footer-bottom a:hover {
	color: var(--primary-colors);
}