/* 
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 */

/* Header Css */
.sticky-header {
    transition: transform 0.3s ease;
}

.sticky-header.scrolled {
    transform: translateY(-40px);
}

.header-new a.ekit-menu-nav-link {
    position: relative;
}

.header-new a.ekit-menu-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--e-global-color-primary);
    bottom: 1px;
    left: 0;
    transition: width 0.3s;
}

.header-new a.ekit-menu-nav-link.active::after,
.header-new a.ekit-menu-nav-link:hover::after {
    width: 100%;
}


/* Global Button Css */ 
#btn-primary, .btn-primary {
 border: unset !important;
 z-index: 1;
 background: var(--e-global-color-primary) !important;
 position: relative;
/*  -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27) !important;
 box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27) !important; */
 transition: all 250ms ;
 overflow: hidden !important;
	 border-radius: 10px !important;
}

#btn-primary::before,.btn-primary::before {
 content: "" !important;
 position: absolute !important;
 top: 0 !important;
 left: 0 !important;
 height: 100% !important;
 width: 0 !important;
 border-radius: 10px !important;
 background-color: var(--e-global-color-f5ea86a) !important;
 z-index: -1 !important;
 -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27) !important;
 box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27) !important;
 transition: all 250ms !important;
}

.btn-primary:hover {
}

#btn-primary:hover::before,.btn-primary:hover::before {
 width: 100% !important;
}


.carousel-container {
	width: 100%;
	height: 580px;
	position: relative;
	overflow: hidden;
}
.owl-carousel .item {
	position: relative;
	width: 100%;
	height:580px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.owl-carousel .item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}
.slide-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.content-box {
	    position: absolute;
    bottom: 10px;
    left: 35px;
    background: #192F00DB;
    padding: 10px 20px;
	padding-bottom:20px;
    color: #fff;
    border-radius: 10px;
    width: 60%;
    max-width: 380px;
    z-index: 2;
}
.content-box h2 {
	    font-family: "Oswald", Sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 30px;
	margin:5px 0;

}
.content-box p{
	    font-family: "Kufam", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;

}
.content-box .btn {
    display: inline-block;
    text-transform: uppercase;
    padding: 10px 33px;
	    padding-top: 18px;
    background: var(--e-global-color-primary);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 3px;
    transition: 0.3s;
    font-family: "Kufam", Sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}
.content-box .btn:hover {
	background: #63932d;
	color:#fff;
}

.owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

.owl-prev, .owl-next {
	background: none;
	border: none;
	cursor: pointer;
	pointer-events: all;
	width: 30px; /* Adjust size as needed */
	height: 30px;
	color:transparent !important;
}

.owl-prev {
	background: url('/wp-content/uploads/2026/03/icons8-expand-arrow-100-1.webp') no-repeat center center !important;
	background-size: contain !important;
	transform: rotate(90deg);

}

.owl-next {
	background: url('/wp-content/uploads/2026/03/icons8-expand-arrow-100-1.webp') no-repeat center center !important;
	background-size: contain !important;
	transform: rotate(270deg);
}
.owl-dots {
	position: absolute;
	bottom: 5px;
	right: 20px;
}
.owl-theme .owl-dots .owl-dot span {
	width: 23px !important;
	height: 4px !important;
	margin: 5px !important;
}




@media (max-width:768px){
	
	.owl-carousel .item, .carousel-container{
		
	}
	.content-box{
		width:75%;
	}
	.content-box h2 {
		font-size:18px;
		max-width:90%;
	}
	
	.content-box p {
		font-size:14px;
	}
	.content-box .btn {
		font-size:14px;
		padding:7px 19px;
	}
	
}