/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 06 2025 | 12:55:27 */
.customer-heading h5, .customer-heading h3, .customer-heading h4{
    margin-bottom: 0px !important;
    padding-bottom: 0px;
}
.footer-container::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%);
  width: 80%;
  height: 300px;
  background: #FA620F;
  filter: blur(50px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.custom-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 300px;
  height: 300px;
  background: #FA620F;
  filter: blur(120px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.custom-bg-2:after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: #FA620F;
  filter: blur(50px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}
.border-after::after{
    content: "|";
    color: #fff;
    font-size: 30px; 
}

.bizbie-timeline-item {
  position: relative;
  padding-left: 40px;
}

.bizbie-timeline-item p{
	margin-bottom: 0px;
}

.bizbie-timeline-item h3{
	font-size: 24px;
	color: #fff;
}

.bizbie-timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 2px;
  background: rgba(250, 98, 15, 0.4); /* line color */
}

.bizbie-timeline-item::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;  /* dot fill color */
  border: 3px solid #FA620F; /* dot border */
}
.bizbie-timeline-item:nth-child(2)::after {
  background: #fff;
  border: 4px solid #FA620F;
}

.full-width-container::before,
.full-width-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 420px; /* Adjust width as needed */
    height: 100%;
    z-index: 2;
}

.full-width-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(13,13,22,1), rgba(13,13,22,0));
}

.full-width-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(13,13,22,1), rgba(13,13,22,0));
}

.custom-carousel .carousel-image {
  transition: transform 0.4s ease;
  transform: scale(1);
  cursor: pointer;
}

.custom-carousel .carousel-image.active {
  transform: scale(1.1);
}


.icon-box-about .elementor-icon {
    background-color: #202130;
    padding: 22px;
    clip-path: polygon(
        25% 5%, 75% 5%, 
        100% 50%, 75% 95%, 
        25% 95%, 0% 50%
    );
    transition: background 0.3s ease;
}

:root {
	--brand-orange: #FA620F;
	--dark-bg: #1A1A1A;
	--iconbox-bg: #151621;
	--light-text: #E0E0E0;
	--dark-text: #111111;
}
/*
=================================
1. Main Tabs (Services, Goods, Places)
=================================
*/
.services-tabs .e-n-tab-title {
	font-weight: 600;
	color: var(--light-text);
	background: none !important;
	padding-bottom: 15px !important;
	margin: 0 25px !important;
	position: relative;
	font-size: 38px; /* Inactive font size */
	transition: color 0.3s ease, font-size 0.3s ease;
}

/* Active main tab */
.services-tabs .e-n-tab-title[aria-selected="true"] {
	color: var(--brand-orange) !important;
	font-size: 42px; /* Active font size */
}

/* Remove top orange line */
.services-tabs .e-n-tab-title[aria-selected="true"]::before {
	display: none;
}

/*
=================================
2. Inner Sub-Tabs (Pill buttons)
=================================
*/
.services-inner-tabs .e-n-tabs-heading {
	justify-content: center;
	margin-bottom: 30px;
	border: none !important;
}

.services-inner-tabs .e-n-tab-title {
	background-color: transparent !important;
	border: 1px solid #444;
	border-radius: 50px !important;
	margin: 0 10px !important;
	padding: 12px 25px !important;
	transition: all 0.3s ease;
	cursor: pointer;
}

/* Text style */
.services-inner-tabs .e-n-tab-title .e-n-tab-title-text {
	font-weight: 500;
	color: var(--light-text);
}

/* Active inner tab */
.services-inner-tabs .e-n-tab-title[aria-selected="true"] {
	background-color: var(--brand-orange) !important;
}

.services-inner-tabs .e-n-tab-title[aria-selected="true"] .e-n-tab-title-text {
	color: #ffffff !important;
	font-weight: 600;
}

/* Hover effect (same as active bg) */
.services-inner-tabs .e-n-tab-title:hover {
	background-color: var(--brand-orange) !important;
}
.services-inner-tabs .e-n-tab-title:hover .e-n-tab-title-text {
	color: #ffffff !important;
}

/*
=================================
3. Content Grid Items (Icon Boxes)
=================================
*/
.services-inner-tabs .elementor-widget-icon-box .elementor-icon-box-wrapper {
	background-color: var(--iconbox-bg);
	border-radius: 55px;
	padding: 12px 10px;
}

.services-inner-tabs .elementor-widget-icon-box .elementor-icon-box-title {
	color: var(--light-text);
	font-weight: 500;
}

/* ===== Fade transition for MAIN tab content ===== */
.services-tabs .e-n-tabs-content > .e-con {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.services-tabs .e-n-tabs-content > .e-con.e-active {
	opacity: 1;
	visibility: visible;
}

/* ===== Fade transition for INNER tab content ===== */
.services-inner-tabs .e-n-tabs-content > .e-con {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.services-inner-tabs .e-n-tabs-content > .e-con.e-active {
	opacity: 1;
	visibility: visible;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Apply the animation to the active tab content for BOTH tab widgets */
.services-tabs .e-n-tabs-content > .e-active,
.services-inner-tabs .e-n-tabs-content > .e-active {
  animation: fadeIn 0.4s ease-in-out;
}

.fluent-form-css select[name="dropdown"], .fluent-form-css select[name="dropdown_1"] {
	color: #aaa;
}

.fluent-form-css .ff_submit_btn_wrapper{
	width: 30%;
}

.fluent-form-css button[type="submit"] {
	background-image: none !important;
	background-color: var(--brand-orange);
	color: #fff;
	padding: 14px 32px;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 14px rgba(250, 98, 15, 0.2);
	width: fit-content !importnat;
	letter-spacing: 0.5px;
}
.fluent-form-css option{
	background-color: #0D0D16;
	color: white;
}

.fluent-form-css button[type="submit"]:hover {
	background-color: #e65c0c;
	box-shadow: 0 4px 18px rgba(250, 98, 15, 0.35);
	transform: translateY(-2px);
}

.fluent-form-css button[type="submit"]:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(250, 98, 15, 0.2);
}

.accor-container:before{
	content: none !important;
}

.marquee-text {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background-color: #1A1A28;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.marquee-text::before {
  content: attr(data-text);
  position: absolute;
  left: 100%;
  white-space: nowrap;
  animation: marqueeScroll 15s linear infinite;
}

@keyframes marqueeScroll {
  0% { left: 100%; }
  100% { left: -100%; }
}

.accord-custom details{
	padding-bottom: 10px;
	border-bottom: 1px solid var(--brand-orange);
}
.e-n-accordion-item-title-icon{
	border: 1px solid #FF6600;
    padding: 10px 14px;
    border-radius: 80px;`
}
.services-tabs .e-n-tab-title{
	margin: 0 !important;
	padding-left: 0px;
}
.services-tabs .e-n-tabs-heading{
	justify-content: space-evenly;
	border-bottom: 0.86px solid #FA620F;
	margin-bottom: 20px;
}
.cta-form
	justify-content: center !important;
} 
.services-inner-tabs .e-n-tabs-heading{
	justify-content: space-evenly;
	border: none !important;
}
@media (max-width: 1024px) {
	p{
		font-size: 16px !important;
		margin-bottom: 5px;
	}
	.elementor-button span{
		font-size: 20px;
	}
	.custom-smaller-fonts p{
    	font-size: 18px;
	}
	.customer-heading h5 span{
		font-size: 20px;
	}
	.accord-custom p{
		font-size: 16px;
	}
	.bizbie-timeline-item{
		margin-bottom: 20px;
	}
	.bizbie-timeline-item h3{
		font-size: 22px;
	}
	.btn-ps{
		display: flex;
		justify-content: end;
	}
}

@media (max-width: 767px) {
    .border-after::after {
        content: none;
    }
	.icon-box-about {
    	border: none !important;
  	}
	.services-inner-tabs .e-n-tab-title{
		font-size: 18px !important;
		margin-bottom: 10px;
	}
	.custom-bg-2:after{
		width: 320px;
	}
	.custom-smaller-fonts p{
    	font-size: 14px;
	}
	.services-tabs .e-n-tabs-heading{
		justify-content: center !important;
		border-bottom: none !important;
	}
	.services-tabs .e-n-tab-title{
		padding-left: 35px;	
	}
	.services-tabs .customer-heading h5 span{
		font-size: 14px !important;
	}
	.services-inner-tabs .e-n-tabs.e-activated{
		gap: 15px !important;
	}
	.full-width-container::before, .full-width-container::after{
		content: none;
	}
	.full-width-container .swiper-slide img{
		width: 90%;
	}
}
@media (min-width: 768px) {
  .full-width-container .swiper-slide:nth-child(3) img {
    transform: scale(1.1);
    transition: transform 0.3s ease; /* optional for smoothness */
  }
}
