/* 
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 */
/* --- 1. Base Card Styling (Applied to the inner wrapper) --- */
/* --- 1. Base Card Styling --- */
/* --- 1. Slide Inner Wrapper --- */
/* appear conent after click  */
#extra-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out;
}

/* When expanded */
#extra-content.show {
    max-height: 2000px; /* enough height for full content */
}

/* Hide show-less button initially */
#show_less_button {
    display: none;
}


/* destination card css code here  */
/* destination card css code here  */
.destination_card {
	overflow: hidden;
	position: relative;
	border-radius: 10px;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease-out;
}

.destination_card .destination_image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.5s ease;
}


.destination_slide_up_container {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px;
	color: white;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform: translateY(100%);
}

.destination_slide_up_container .elementor-heading-title {
	color: #FFFFFF;
	margin-bottom: 10px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.destination_slide_up_container .elementor-element-d558593 {
	opacity: 0;
	transition: opacity 0.3s ease 0.2s;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.destination_slide_up_container .elementor-icon-list-item {
	color: white;
	margin: 0 !important;
	display: inline-flex;
	align-items: center;
}

.destination_slide_up_container .elementor-icon-list-icon svg {
	fill: #00ff99;
	margin-right: 5px;
}

.destination_slide_up_container .elementor-icon-list-text {
	color: white !important;
	font-size: 14px;
	font-weight: 500;
}

.destination_slide_up_container .elementor-element-6223d81 {
	opacity: 0;
	transition: opacity 0.3s ease 0.2s;
	margin-top: 10px;
}

.destination_slide_up_container .elementor-button {
	width: 100%;
	text-align: center;
	background-color: #00ff99;
	color: #194866;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: bold;
	border: none;
}

.destination_card:hover .destination_image img {
	transform: scale(1.05);
}

.destination_card:hover .destination_slide_up_container {
	transform: translateY(0%);
	background-color: #02964c;
	opacity: 0.9;
}

.destination_card:hover .destination_slide_up_container .elementor-element-d558593,
.destination_card:hover .destination_slide_up_container .elementor-element-6223d81 {
	opacity: 1;
}

.destination_card .destination_slide_up_container {
	transform: translateY(115px);
}

.destination_card:hover .destination_slide_up_container {
	transform: translateY(0);
}

.destination_card:hover .destination_slide_up_container .destination_title {
	padding: 0px !important;
}

.destination_slide_up_container .elementor-element-d558593,
.destination_slide_up_container .elementor-element-6223d81 {
	opacity: 0;
	transition: opacity 0.2s ease-out;
}



/* stay activities form */
.stay_activitise_form button {
	position: absolute !important;
    top: -57px !important;
    right: 0px !important;
}

/* slider css code here  */
/* slider css code here  */
/* --- Gallery Container (Flexbox for 3 columns) --- */
.image-gallery {
    display: flex;
    gap: 20px; /* Space between columns */
/*     max-width: 1200px; */
    margin: 0 auto; /* Center the gallery */
	align-items: center !important;
}

/* --- Individual Gallery Item --- */
.gallery-item {
    flex: 1; /* Makes all items equal width */
    position: relative; /* Essential for absolutely positioning images */
    overflow: hidden; /* Hides the sliding image initially */
    aspect-ratio: 1 / 1; /* Example: Ensures items are square, adjust as needed */
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- Image Base Styles --- */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images cover the area without distortion */
    transition: transform 0.4s ease-out; /* Smooth transition for the slide */
}

/* --- Primary (Initial) Image --- */
.image-primary {
    display: block;
}

/* --- Secondary (Hidden) Image Setup --- */
.image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    /* Move the secondary image completely off-screen to the left */
    transform: translateX(-100%); 
}

/* --- HOVER EFFECT: Reveals the secondary image and slides the primary one --- */
.gallery-item:hover .image-primary {
    /* Slide the primary image off-screen to the right */
    transform: translateX(100%);
}

.gallery-item:hover .image-secondary {
    /* Slide the secondary image into view (from -100% to 0) */
    transform: translateX(0); 
}

/* --- Responsiveness: Stacks items on smaller screens --- */
@media (max-width: 768px) {
    .image-gallery {
        flex-direction: column; /* Stacks items vertically */
    }
}
/* --- New CSS for Fixed Height on Right Column --- */

.right-column-fixed-height {
    /* Apply the specific fixed height */
    height: 396px; 
    
    /* Remove the aspect ratio to allow the fixed height to take effect */
    aspect-ratio: auto; 
}

/* Our Team Css Code  */
/* 1. Define the transition for a smooth effect */
.our_team_img img {
  /* Ensure a base box-shadow is set if needed, or just focus on the transition */
  box-shadow: none; /* or your default shadow */
  transition: box-shadow 0.3s ease-in-out; 
}

/* 2. Apply the shadow effect on hover */
.our_team_img img:hover {
  /* Horizontal | Vertical | Blur | Spread | Color */
  box-shadow: 0px 27px 27px 0px rgba(0, 0, 0, 0.5); 
  /* Note: Adjust the rgba color's last value (0.5) to control transparency/darkness */
}


/* faqs section custom css code  */
.faqs-section summary,
.faqs-section .elementor-element:has(.elementor-widget-heading),
.faqs-section .elementor-widget-heading .elementor-widget-container { 
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.faqs-section .elementor-widget-heading .elementor-widget-container {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

.faqs-section .e-n-accordion-item-title-icon {
	transform: scale(1.5);
}

.faqs-section summary ~ div[data-element_type="container"] {
	border: none !important;
	box-shadow: none !important;
}

.faqs-section summary {
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	border-bottom: none !important;
}

.faqs-section details{
	border-bottom: 1px solid #DDD !important;
}

.faqs-section .elementor-accordion-item {
	border: none !important;
	box-shadow: none !important;
}

.faqs-section .elementor-accordion-item:not(:last-child) {
	margin-bottom: 10px;
}

/* Message field ke baad Personal Information text */
.elementor-element-0cdfe65 .elementor-field-group-message::after {
    content: "Personal Information";
    display: block;
    margin-top: 10px;
    font-size: 30px;
    font-weight: 600; /* px hatao, font-weight me number hi chalega */
    font-family: 'Outfit', sans-serif; /* quotes aur fallback font add karo */
    color: #00A652;
}
.elementor-field-group-field_5fe2fb3 .elementor-field-option {
	justify-content: center;
    display: flex;
    gap: 5px;
}