/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

body{
	overflow-x: hidden;
}
/* Elementor dropdown submenu */
header .elementor-nav-menu--dropdown .sub-menu,
header .elementor-nav-menu .sub-menu {
	max-height: 300px;
	overflow-y: auto;

	/* Firefox */
	scrollbar-width: thin;
	scrollbar-color: var(--e-global-color-primary) transparent;
}

/* Chrome / Edge / Safari */
header .elementor-nav-menu .sub-menu::-webkit-scrollbar {
	width: 5px;
}

header .elementor-nav-menu .sub-menu::-webkit-scrollbar-track {
	background: transparent;
}

header .elementor-nav-menu .sub-menu::-webkit-scrollbar-thumb {
	background: var(--e-global-color-primary);
	border-radius: 10px;
}

/* Keep Elementor's hover behavior intact */
header .elementor-nav-menu .menu-item-has-children:hover > .sub-menu {
	max-height: 300px;
	overflow-y: auto;
}

.menu-item-has-children:hover .sub-menu::-webkit-scrollbar-thumb:hover {
	background: var(--e-global-color-secondary);
}

.orangeHeading  span {
	color: var(--e-global-color-primary);
}
.dotAnimation{
	position: relative;
	padding-left: 30px !important;
}

.dotAnimation::before {
	content: '';
	position: absolute;
	left: 12px;
	top: 10px;
	width: 8px;
	height: 8px;
	background-color: var(--e-global-color-primary);
	border-radius: 100px;
	animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 var(--e-global-color-primary);
	}

	70% {
		transform: scale(1.05);
		box-shadow: 0 0 0 8px transparent;
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 transparent;
	}
}

.servicesCon .elementor-widget-image-box:hover .elementor-image-box-title{
	color: var(--e-global-color-2abdf15) !important;
} 
.servicesCon .elementor-widget-image-box:hover .elementor-image-box-img img {
	filter: invert(1) brightness(100);
}
/* Hero Form - Upload Field */
.heroQuoteForm .elementor-field-type-upload {
	position: relative;
	width: 100%;
}

/* Hide default Elementor file input */
.heroQuoteForm .elementor-field-type-upload input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

/* Custom upload box */
.heroQuoteForm .custom-upload-box {
	width: 100%;
	min-height: 215px;
	box-sizing: border-box;
	border: 2px dashed #f5a07d;
	border-radius: 10px;
	background: #fffaf7;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	transition: all 0.25s ease;
	/*     padding: 25px 20px; */
}

/* Hover / drag state */
.heroQuoteForm .custom-upload-box:hover,
.heroQuoteForm .custom-upload-box.dragover {
	background: #fff5ef;
	border-color: var(--e-global-color-primary);;
}

/* File icon */
.heroQuoteForm .upload-file-icon {
	width: 28px;
	height: 34px;
	margin-bottom: 18px;
	position: relative;
	background: #e9e1ee;
	border-radius: 2px;
}

/* Folded corner */
.heroQuoteForm .upload-file-icon::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 10px;
	height: 10px;
	background: #d8cedf;
	clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Lines inside file icon */
.heroQuoteForm .upload-file-icon::after {
	content: "☰";
	font-size: 11px;
	color: #9c8fa5;
	position: absolute;
	top: 11px;
	left: 7px;
	transform: rotate(90deg);
}

/* Main text */
.heroQuoteForm .upload-main-text {
	font-size: 13px;
	line-height: 1.5;
	color: #666;
	margin-bottom: 2px;
}

/* Browse text */
.heroQuoteForm .upload-browse-text {
	font-size: 13px;
	line-height: 1.5;
	color: #666;
}

/* Browse text highlight */
.heroQuoteForm .upload-browse-text span {
	color: #ee4d00;
	font-weight: 600;
}

/* Accepted formats */
.heroQuoteForm .upload-accepted-text {
	margin-top: 24px;
	font-size: 13px;
	color: #777;
}

/* Selected file */
.heroQuoteForm .upload-file-name {
	margin-top: 10px;
	font-size: 13px;
	color: #333;
	max-width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Mobile */
@media (max-width: 767px) {

	.heroQuoteForm .custom-upload-box {
		min-height: 190px;
	}

}


/* Contact - Quote Form */

/* Drag & Drop Upload Box */
.quoteForm .elementor-field-type-upload {
	position: relative;
}

.quoteForm .elementor-field-type-upload .elementor-field-label {
	display: block;
	margin-bottom: 10px;
}

.quoteForm .elementor-field-type-upload input[type="file"] {
	width: 100%;
	min-height: 100px;
	padding: 40px 20px ;
	border: 2px dashed var(--e-global-color-primary);
	border-radius: 12px;
	background: #f8fafc;
	cursor: pointer;
	font-size: 14px;
	text-align: center;
	transition: all 0.3s ease;
}

/* Hover */
.quoteForm .elementor-field-type-upload input[type="file"]:hover {
	border-color: var(--e-global-color-primary);;
	background: #f1f5ff;
}

/* File button */
.quoteForm .elementor-field-type-upload input[type="file"]::file-selector-button {
	margin-right: 10px;
	padding: 10px 18px;
	border: 0;
	border-radius: 6px;
	background: var(--e-global-color-primary);;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s ease;
}

.quoteForm .elementor-field-type-upload input[type="file"]::file-selector-button:hover {
	background: var(--e-global-color-secondary);;
}


.logoGallery .gallery-item .gallery-icon{
	border: 1px solid #e7e7e7;
	border-radius: 5px;
}
.logoGallery .gallery-item img{
	height: 142px;
	width: 120px;
	object-fit: contain;
	object-position: center center;
}


@media screen and (min-width: 768px){
	.sectorsCon .elementor-image-box-img img{
		margin: 0 auto;
	}
}