@import url('https://fonts.googleapis.com/css2?family=Petrona:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&display=swap');

	html {
		box-sizing: border-box;
		height: 100%;
	}

	*, *::before, *::after {
		box-sizing: inherit;
	}

	body {
		margin: 0;
		font-family:"Manrope", sans-serif;
		font-size: var(--firstFontSize);
		color:var(--customBody);
	}

	img {
		display: block;
		height: auto;
		max-width: 100%;
		object-fit: cover;
	}

	svg {
		display: block;
		object-fit: cover;
		fill: currentcolor;
	}

	a {
		text-decoration: none!important;
		color: inherit;
	}

	h1, h2, h3, h4, h5, h6 {
		margin: 0;
	}

	figure {
		margin: 0;
	}

	article {
		margin: 0;
	}

	.address {
		font-style: normal;
	}

	/* button */
	button {
		padding: 14px 50px;
		background-color: var(--primaryColor);
		color: var(--bodyColor);
		border: none;
		border-radius: 30px 0 30px 0 !important;
		cursor: pointer;
		transition: background-color 0.3s ease;
		font-family: var(--secondFontFamily);
		font-weight: var(--secondFontWeight);
	}
.button-whtspp {
    padding: 14px 50px;
    background-color: var(--primaryColor);
    color: var(--bodyColor);
    border: none;
    border-radius: 30px 0 30px 0 !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--secondFontFamily);
    font-weight: var(--secondFontWeight);
    display: inline-block;
    margin-top: 20px;
}
	button a{
		color: var(--bodyColor);
		font-family: var(--secondFontFamily);
		font-weight: var(--secondFontWeight);
		text-decoration:none;
	}
	/* heading */
	.heading-structure h1 {
		font-size: var(--secondFontSize);
		font-family: var(--firstFontFamily);
		font-weight: var(--firstFontWeight);
		color:var(--HeadingColor);
		margin:0;
	}
	.heading-structure h2 {
		font-size: 45px;
		margin-bottom: 20px;
		font-family: var(--firstFontFamily);
		font-weight: var(--firstFontWeight);
		color:var(--HeadingColor);
	}
	/* paragraph */
	p {
		font-size: var(--firstFontSize);
		font-family: var(--secondFontFamily);
		font-weight: var(--secondFontWeight);
		color:var(--paraColor);
		margin-bottom:0 !important;
	}

	:root {
		--customBody:#000000;
		--bodyColor:#ffffff;
		--primaryColor : #658F28;
		--secondaryColor : #823470;
		--firstFontFamily:"Petrona", serif;
		--secondFontFamily:"Manrope", sans-serif;
		--thirdFontFamily:"Covered By Your Grace", cursive;
		--HeadingColor:#1F1E17;
		--paraColor:#525560;
		--firstFontSize:18px;
		--customFontSize:20px;
		--headingFontSize:24px;
		--secondFontSize:50px;
		--firstFontWeight:700;
		--secondFontWeight:500;
	}

/* topbar */
/* ===== Desktop Default (Original Styling) ===== */
.top-header {
  background: var(--secondaryColor);
  padding: 15px 0;
}

.top-header-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.address-div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.address-div p {
  margin: 0;
  margin-right: 25px;
  color: var(--bodyColor);
  font-size: 14px;
}

/* Address icons */
.address-div a i,
.address-div i {
  color: #ffffff !important;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.address-div a i:hover,
.address-div i:hover {
  color: #ffffff !important;
  transform: scale(1.2);
}

/* Social icons */
.icon-div {
  display: flex;
  gap: 10px;
}

.icon-div a i,
.icon-div i {
  color: #ffffff !important;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.icon-div a i:hover,
.icon-div i:hover {
  color: #fcfcfc !important;
  transform: scale(1.2);
}

/* ===== Hide on Mobile Devices ===== */
@media (max-width: 768px) {
  .top-header {
    display: none;
  }
}


	/* navbar */
	.navbar-header a {
		color:var(--HeadingColor);
		font-size:var(--firstFontSize);
		font-family: var(--secondFontFamily);
	}
.navbar-nav .nav-item .nav-link {
    color: var(--customBody);
    font-weight: var(--secondFontWeight);
    font-size: var(--customFontSize);
}
	.navbar-header>nav.navbar>.container>a.navbar-brand {
		margin-left:0px;
	}

	.navbar-header .navbar {
		padding:0;
	}

	.header-icon {
		display: flex;
		gap: 20px;
		margin-right:20px;
	}
.header-icon a{
	cursor:pointer;
}
	.header-icon i {
		font-size: var(--customFontSize);
		color:var(--HeadingColor);
		text-align: center;
		vertical-align: middle;
		position: relative;
	}

	.header-icon i:after {
		content: "3";
		position: absolute;
		background: var(--primaryColor);
		height: 20px;
		right: -10px;
		width: 20px;
		text-align: center;
		top: -10px;
		line-height: 2rem;
		font-size: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		color: var(--bodyColor);
	}
.navbar-header .navbar-brand img{
	width:100px;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bodyColor);
    background-color: var(--primaryColor);
}
ul.navbar-nav.me-auto.mb-2.mb-lg-0 {
    gap: 10px;
}
ul.dropdown-menu {
    padding: 0;
}
a.dropdown-item {
  padding:5px 10px;
}
li.nav-item a:hover {
    background: var(--secondaryColor);
	color:var(--bodyColor);
	border-radius: 5px;
}
li.nav-item a:active {
    background: var(--primaryColor);
	color:var(--bodyColor);
	border-radius: 5px;
}
.navbar-nav .nav-item .nav-link.active {
    color: var(--bodyColor); /* Text color */
    background-color: var(--primaryColor); /* Background color */
    border-radius: 5px; /* Optional: match the border-radius on hover */
}
.navbar-nav .nav-item .dropdown-menu .dropdown-item.active {
    color: var(--bodyColor); /* Text color for active dropdown item */
    background-color: var(--primaryColor);/* Background color for active dropdown item */
}

a.dropdown-item:hover {
    background: var(--primaryColor);
    color: var(--bodyColor);
}
/* notification bell */
.header-icon {
    position: relative;
}

.notification-bell {
    position: relative;
}

.notification-dropdown {
    display: none; /* Initially hidden */
    position: absolute;
    background-color: var(--bodyColor);
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    right: 0; /* Align to the right of the bell icon */
    width: 300px; /* Set a width for the dropdown */
    height: auto; /* Optional: limit height */
    overflow-y: auto; /* Enable scrolling if content exceeds height */
}

.notification-bell:hover .notification-dropdown {
    display: block; /* Show dropdown on hover */
}

.notification-item {
    padding: 10px;
    border-bottom: 1px solid #eee; /* Add separator between items */
}

.notification-item:last-child {
    border-bottom: none; /* Remove border from last item */
}

.notification-item:hover {
    background-color: #f0f0f0; /* Change background on hover */
}


	/* banner */
	.banner-container {
		position: relative;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}

	.left-content {
		position: absolute;
		top: 50%;
		left: 10%;
		transform: translateY(-50%);
		z-index: 10;
		width: 50%;
		padding: 0 50px;
		color: var(--bodyColor);
	}

	.left-content h6 {
		font-size: var(--firstFontSize);
		margin-bottom: 20px;
		text-transform: uppercase;
		font-family: var(--secondFontFamily);
		font-weight: var(--secondFontWeight);
	}

	.left-content h1 {
		font-size: var(--secondFontSize);
		margin-bottom: 20px;
		font-family: var(--firstFontFamily);
		font-weight: var(--firstFontWeight);
		color:var(--bodyColor);
	}

	.left-content p {
		margin-bottom: 10px;
		color:var(--bodyColor);
	}

	.left-content button {
		margin-top: 30px;
	}

	button:hover {
		background-color: var(--secondaryColor);
	}

	.swiper-container {
		width: 100%;
		height: 100%;
	}

	.swiper-slide {
		position: relative;
	}

	.swiper-slide img {
    width: 100%;
    object-fit: fill;
}

	.banner-container .swiper-button-prev, .banner-container .swiper-button-next {
		color: var(--bodyColor);
	}

	/* Our Products */
/* --- Product Section General Setup --- */
.product-screen {
    margin: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* --- Section Heading --- */
.heading-structure {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.heading-structure h2 {
    margin: 0;
    font-size: 2.25rem;
}

/* Button with your requested green color */
.heading-structure button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #69972a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.heading-structure button:hover {
    background-color: #5a8224;
}

/* --- Responsive Product Grid --- */
.image-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2rem 1.5rem;
    justify-items: center;
}

/* --- Individual Product Icon Styling --- */
.image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.image-wrapper a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

/* --- Product Circle --- */
.image-wrapper .circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f0f0f0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-wrapper a:hover .circle {
    transform: scale(1.1);
}

/* --- Product Label (Alignment Fixed) --- */
.image-wrapper p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    min-height: 2.6em; /* ensures uniform height */
    line-height: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
    white-space: normal; /* allow wrapping but keep balance */
}

/* --- Mobile Responsiveness (3-Column Grid) --- */
@media (max-width: 768px) {
    .image-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 1rem;
        align-items: start; /* fixes last-row vertical misalignment */
    }

    .image-wrapper .circle {
        width: 80px;
        height: 80px;
    }

    .image-wrapper p {
        font-size: 0.8rem;
        min-height: 2.6em; /* keep all labels same height */
    }
}

/* --- Extra Small Devices --- */
@media (max-width: 480px) {
    .image-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .image-wrapper .circle {
        width: 70px;
        height: 70px;
    }

    .image-wrapper p {
        font-size: 0.75rem;
        min-height: 2.4em;
    }
}


	/* work with us */
	.work-with-us{
	    background: #FEECC8;
	}
.Work-banner {
    background: url(../images/work-banner.jpg);
    background-repeat: no-repeat;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Work-banner h1 {
    color: var(--bodyColor);
    font-size: 3em;
    text-align: center;
    padding: 20px 50px;
    margin: 0;
    background: #c7d7b1b8;
    border-radius: 10px;
}
.work-content {
    padding: 100px 0;
}
.work-content p {
    margin-bottom: 40px!important;
}

	/* about */
	.about-screen {
		background: url(../images/about-background.png);
		width: 100%;
		background-size: 100% 100%;
		background-repeat: no-repeat;
		padding: 100px 0;
		margin-bottom:100px;
	}
.heading-structure.tagline {
    display: block;
    margin-bottom: 30px;
}
.about-content p{
	margin-bottom:15px!important;
}

	.about-svg {
		display: flex;
		align-items: center;
		gap: 10px;
		margin: 20px 0;
	}

	p.about-para {
		font-size: var(--headingFontSize);
		color: var(--secondaryColor);
		margin-bottom: 10px !important;
	}

	ul.about-list {
		list-style-type: disclosure-closed;
	}

	.about-svg p {
		font-size: var(--customFontSize);
		font-weight: var(--firstFontWeight);
	}

	/* product */
	.row.what-we-offer {
		margin-top: 30px;
	}

	.product-cards {
		text-align: center;
		position: relative;
	}

	.product-cards img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    transition: transform 0.3s ease;
    border: 1px solid var(--HeadingColor);
    border-radius: 10px;
    transform: scale(0.9);
}

	.product-cards img:hover {
		transform: scale(1);
		/* Scale the image to 110% on hover */
		position: relative;
		/* Keep the image relative to the card */
		z-index: 1;
		/* Ensure it appears above other elements if necessary */
	}

	p.card-name {
		font-size: var(--customFontSize);
		color: var(--HeadingColor);
		font-weight: var(--firstFontWeight);
		margin: 10px 0;
		/* Adds vertical spacing */
	}

	p.card-rate {
		text-decoration: line-through;
		color:var(--paraColor);
		/* Gray color for crossed-out price */
	}

	p.cart, p.stock {
		background: transparent;
		border-radius: 30px 0 30px 0;
		border: 1px solid var(--secondaryColor);
		padding: 10px;
		margin: 5px 0;
		cursor: pointer;
	}

	.offer-screen {
		margin: 100px 0;
	}

	p.cart:hover {
		background: var(--secondaryColor);
		color: var(--bodyColor);
	}

	p.stock {
		border-color: var(--paraColor);
	}

	p.stock:hover {
		background: var(--paraColor);
		color: var(--bodyColor);
	}


	/* choose-us */
	.choose-us-section {
		margin-bottom: 100px;
	}

	h2.subheading {
		font-size: var(--headingFontSize);
		color: var(--primaryColor);
		margin-bottom: 20px;
	}

	.choose-us-section img {
		width:100%;
		border-radius: 10px;
	}

	.choose-list {
		font-size: var(--headingFontSize);
		color: var(--HeadingColor);
		margin-top: 20px;
	}

	.choose-list li {
		font-size:var(--firstFontSize);
		color: var(--paraColor);
	}

	.choose-us-section .heading-structure {
		margin: 20px 0;
	}

	.choose-us-section .row {
		align-items: center;
	}

	.choose-list ul {
		list-style-type: none;
	}
	.choose-list li:first-child {
    font-size: var(--headingFontSize);
    color: var(--HeadingColor);
    margin-top: 20px;
    list-style-type: disclosure-closed;
}
	/* Spiritual Tourism and Events */
	.spiritual-tourism {
		background: url(../images/Events.png);
		background-repeat: no-repeat;
		background-size: cover;
		height: auto;
		width: 100%;
		background-repeat: no-repeat;
		position: relative;
		color: var(--bodyColor);
		background-position: 20%;
		padding: 100px 0;
	}
	.events-section a {
    color: var(--bodyColor);
	
}
.spiritual-tourism .row{
	align-items: center;
}
	.events-section {
    padding: 30px 20px;
    background: var(--primaryColor);
    border-radius: 50px 0 50px 0;
}
.spiritual-tourism a{
	margin: 30px 0 0px 30px;
    display: inline-block;
    text-decoration: underline!important;
	
}
	.spiritual-tourism h1, .spiritual-tourism p {
		color: var(--bodyColor);
		padding: 0 30px;
	}
.custom-button:hover{
	background:unset;
}
	.spiritual-tourism button {
		padding: 30px;
	}

	.custom-button {
		padding: 0 !important;
		margin-left: auto;
		text-align: right;
		display: flex;
		align-items: center;
		justify-content: end;
	}

	.button-container {
		width: 83px;
		height: 83px;
		background-color: var(--bodyColor);
		border-radius: 50%;
		position: relative;
		box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.3), 2px 3px 5px rgba(0, 0, 0, 0.1);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.button-shadow {
		position: absolute;
		width: 72px;
		height: 72px;
		background-color: var(--HeadingColor);
		border-radius: 50%;
		left: 50%;
		transform: translateX(-50%);
		top: 5px;
		filter: blur(1px);
		z-index: 10;
	}

	.button-label {
		position: absolute;
		width: 72px;
		height: 72px;
		background: linear-gradient(to bottom, #8e487e, #ffffff);
		border-radius: 50%;
		left: 50%;
		transform: translateX(-50%);
		top: 5px;
		box-shadow: inset 0px 4px 2px #60a5fa, inset 0px -4px 0px #f1f2f5, 0px 0px 2px rgba(0, 0, 0, 1);
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		z-index: 20;
	}

	.button-label:active {
		box-shadow: inset 0px 4px 2px rgba(96, 165, 250, 0.5), inset 0px -4px 2px rgba(37, 99, 235, 0.5), 0px 0px 2px rgba(0, 0, 0, 1);
	}

	.button-icon {
		width: 32px;
		fill: #dbeafe;
		filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
		transition: width 0.1s;
	}

	.button-label:active .button-icon {
		width: 31px;
	}

	.spiritual-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 20px;
	}

	.spiritual-tourism img {
		text-align: center;
		margin: auto;
	}

	.spiritual-tourism .imga{
		text-align: center;
		/* margin: auto; */
		border-radius: 0 50px 0 50px  !important;
		margin: 0 30px  0px 30px  !important;
	}
	

	/* -------------------- Responsive Design -------------------- */
@media (max-width: 992px) {
	.spiritual-tourism {
		padding: 70px 0;
		text-align: center;
	}

	.spiritual-tourism h1,
	.spiritual-tourism p {
		padding: 0 20px;
	}

	.spiritual-tourism a {
		margin: 20px auto 0;
		display: block;
		text-align: center;
	}

	.spiritual-tourism .imga {
		max-width: 100%;
		margin: 20px auto !important; /* Adds space between image & text box */
	}

	.events-section {
		margin-top: 20px; /* Space between text and image on smaller screens */
	}
}

@media (max-width: 576px) {
	.spiritual-tourism {
		padding: 50px 0;
	}

	.spiritual-tourism .imga {
		border-radius: 50px 0 50px 0 !important;
		margin: 15px auto !important;
	}

	.events-section {
		padding: 25px 15px;
		border-radius: 40px 0 40px 0;
		margin-top: 25px;
	}
}

	/* Mission we are working on */
	.mission-we-are-working {
		margin: 100px 0;
		background: url(../images/mission-left-image.png);
		background-position: 20%;
		background-repeat: no-repeat;
	}

	.mission-we-are-working .row {
		align-items: center;
	}

	.mission-img {
		display: flex;
		flex-direction: column;
		/* Stack images vertically */
	}



	.mission-bottom-images {
		display: flex;
		/* Use flexbox for bottom images */
		justify-content: space-between;
		/* Space between the two images */
	}


	.mission-icons {
		font-size:var(--headingFontSize);
		display: flex;
		flex-wrap: wrap;
		margin: 20px 0px;
	}

	.mission-icons ul {
		list-style-type: none;
		padding: 0;
	}

	.mission-icons ul {
		list-style-type: none;
		padding: 0;
		display: flex;
		/* Use flexbox on the unordered list */
		flex-wrap: wrap;
		/* Allow wrapping */
	}

	.mission-icons li {
		display: flex;
		align-items: center;
		justify-content: start;
		margin: 20px 0 0px 0;
		width: calc(50% - 20px);
		gap: 10px;
		font-size: var(--customFontSize);
		color:#000;
	}

	.mission-icons i {
		color: var(--bodyColor);
		background: var(--primaryColor);
		width: 60px;
		height: 60px;
		display: flex;
		/* Use flexbox for icon */
		align-items: center;
		/* Center icon vertically */
		justify-content: center;
		/* Center icon horizontally */
		border-radius: 50%;
	}

	.mission-we-are-working p {
		margin: 20px 0;
	}

	/* for carousel */
	.mission-img {
    position: relative; /* Make sure the position is relative for controls */
	    width: 100%;
    height: 100%;
}

.carousel-item {
    display: flex;
    justify-content: center; /* Center the images in the slide */
}

.mission-top-image {
    width: 100%;  
}

.mission-bottom-image,.mission-top-image {
    width: 100%; 
    border-radius: 10px; 
}


	/* testimonial */
	.testimonial {
		background:#FEECC8;
		padding:100px 0;
	}

	.testimonial p {
		margin:20px 0;
	}
	.testimonial .slider-wraapper .col-md-4 p{
		margin:20px auto;
		text-align: center;
	}

	.testimonial button {
		margin-top:30px;
	}

	.testimonial .testimonial-group h2 {
		text-align: center;
		margin-bottom: 50px;
	}

	.testimonial .testimonial-group .slider-wraapper {
		border-radius: 10px;
		box-shadow: #959da533 0px 8px 24px;
		padding: 30px 25px;
		background: var(--bodyColor);
	}

	.testimonial .testimonial-group .slider-wraapper h5 {
		font-size: var(--customFontSize);
		text-align: start;
		margin-top:20px;
	}

	.testimonial .testimonial-group .mySwiper .swiper-button-next:after, .testimonial .testimonial-group .mySwiper .swiper-button-prev:after {
		display:none;
	}

	.testimonial .testimonial-group .mySwiper .swiper-button-next {
		right: 40%;
		top: 80%;
		font-size: 40px;
		background: var(--bodyColor);
		padding: 6px;
		height: 60px;
		width: 60px;
		border-radius: 50%;
		color: var(--paraColor);
	}

	.testimonial .testimonial-group .mySwiper .swiper-button-prev {
		left: 40%;
		top: 80%;
		font-size: 40px;
		background: var(--bodyColor);
		padding: 6px;
		height: 60px;
		width: 60px;
		border-radius: 50%;
		color: var(--paraColor);
	}

	.testimonial .swiper-slide img {
		width: 100%;
		object-fit: cover;
		height: 100px;
		width: 100px;
		border: 2px dashed #EEC044;
		border-radius: 50%;
		text-align: center;
		margin: auto;
	}

	.testimonial .slider-wraapper {
		position: relative;
		/* Set the parent to relative for absolute positioning */
	}

	.testimonial .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
		display: none;
	}
/* view testimonial */

.testimonial-area {
    background: rgb(101 143 40 / 36%);
    position: relative;
    z-index: 2;
    padding: 100px 0;
}
.testimonial-area .owl-carousel {
	overflow: hidden;
	padding: 0 20px;
	margin: 0px -40px;
	padding-right: 40px;
}
.testimonial-area .owl-stage-outer {
	padding: 30px 50px;
	margin-left: -34px;
	width: calc(100% + 100px);
}
.single-testimonial {
    border: 7px solid var(--secondaryColor);
    text-align: center;
    border-radius: 45px;
    position: relative;
    z-index: 2;
	height: 300px;
}
.single-testimonial p {
    color: var(--HeadingColor);
    padding: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 3;
    text-align: left;
}
.single-testimonial::before {
	content: "";
	position: absolute;
	left: -35px;
	top: -35px;
	background: url(https://i.ibb.co/nb8Hjms/quote.png) no-repeat var(--blue);
	background-size: 60%;
	width: 126px;
	height: 100px;
	transform: rotate(180deg);
	background-position: 34px 15px;
}
.single-testimonial::after {
	content: "";
	position: absolute;
	right: -35px;
	bottom: -34px;
	background: url(https://i.ibb.co/nb8Hjms/quote.png) no-repeat var(--blue);
	background-size: 60%;
	width: 126px;
	height: 100px;
	background-position: 34px 19px;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100%;
	object-fit:fill;
}
.round {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}
.round-1::before {
	content: "";
	position: absolute;
	left: 88px;
	top: -7px;
	width: 50px;
	height: 7px;
	background: var(--bodyColor);
	border-radius: 30px;
}
.round-1::after {
	content: "";
	position: absolute;
	left: -7px;
	top: 62px;
	width: 7px;
	height: 50px;
	background: var(--bodyColor);
	border-radius: 30px;
}
.round-2::before {
	content: "";
	position: absolute;
	right: 87px;
	bottom: -7px;
	width: 50px;
	height: 7px;
	background: var(--bodyColor);
	border-radius: 30px;
	z-index: 1;
}
.round-2::after {
	content: "";
	position: absolute;
	right: -7px;
	bottom: 62px;
	width: 7px;
	height: 50px;
	background: var(--bodyColor);
	border-radius: 30px;
	z-index: 1;
}
.client-video {
	padding-right: 15px;
}

.client-info a {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
}
.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
    margin-right: 20px;
    position: absolute;
    z-index: 3;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.client-info h6 {
	font-weight: var(--firstFontWeight);
	font-size: var(--firstFontSize);
	color: var(--HeadingColor);
}
.client-info span {
	display: inline-block;
	color: var(--HeadingColor);
	font-size: 12px;
}

.owl-dots button {
	background: var(--secondaryColor)!important;
	width: 10px;
	height: 10px;
	border-radius: 26px;
	margin: 0 5px;
	transition: 0.3s;
}
.owl-dots {
	text-align: center;
	margin-top: 50px;
}
.owl-dots button.active {
	width: 30px;
}

	/* explore-products */
	.explore-products .products-content img {
		width: 100%;
		height: 400px;
		object-fit: fill;
		border-radius: 10px;
		position: relative;
		/* Added for positioning */
	}

	.explore-products .product-item {
		position: relative;
		/* For absolute positioning of the overlay */
	}

	.explore-products .overlay {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, 0.7);
		/* Semi-transparent background */
		color: var(--bodyColor);
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		/* Hidden by default */
		transition: opacity 0.3s ease;
		/* Smooth transition */
		border-radius: 10px;
		/* Match the image border radius */
	}

	.explore-products .product-item:hover .overlay {
		opacity: 1;
		/* Show overlay on hover */
	}

	.explore-products .overlay-content {
		text-align: center;
		/* Center the content */
	}

	.explore-products .view-more-button {
    background-color: var(--primaryColor);
    color: var(--bodyColor);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
}

	.explore-products .view-more-button:hover {
		background-color: var(--secondaryColor);
		/* Darker shade on hover */
	}

	.explore-products {
		margin: 100px 0;
	}

	.products-content {
		margin-top: 30px;
	}

	.explore-products .overlay-content p {
		text-align: center;
		color: var(--bodyColor);
		margin-bottom: 10px;
	}

	/* faq */
	.faq-section {
		padding: 100px;
		background: url(../images/faq-background.png);
		background-size: cover;
		background-repeat: no-repeat;
	}

	.faq-section .row {
		align-items: center;
	}

	.faq-section img {
		border-radius: 20px;
	}

	.faq-section .accordion-button:not(.collapsed) {
		font-size: var(--customFontSize);
		color: var(--primaryColor);
		background: #F8F7F0;
	}

	.faq-section .accordion-button {
		font-size: var(--customFontSize);
		color: var(--HeadingColor);
		background: #F8F7F0;
	}

	.faq-section .accordion {
		margin-top:30px;
	}

	.faq-btn {
		position: relative;
		top: -30px;
		left: 0;
		background: #8e487e;
	}

	.faq-btn p {
		color:var(--bodyColor);
	}

	.faq-btn h2 {
		color:var(--bodyColor);
		font-size: 25px;
		margin-bottom: 0;
	}

	/* footer section */
	.top-footer {
		display: flex;
		align-items: start;
		justify-content: space-between;
	}
.top-footer a {
    color: var(--paraColor);
}
	.top-footer ul li {
		font-size: var(--firstFontSize);
		font-weight: var(--secondFontWeight);
		color: var(--paraColor);
		list-style-type: none;
		padding: 5px 0;
	}

	.top-footer ul {
		padding: 0;
		font-size: var(--customFontSize);
		font-weight:var(--firstFontWeight);
		margin: 0;
	}

	ul.footer-Social li {
		display: flex;
		align-items: center;
		gap: 10px;
		cursor: pointer;
	}

	.footer .row {
		margin: 100px 0;
	}

	.bottom-footer {
		border-top: 1px solid var(--paraColor);
		padding: 20px 0;
		text-align: center;
	}

	.footer {
		background: #F8F6F4;
	}
	.top-footer ul li:first-child{
		font-size: var(--customFontSize);
    font-weight: var(--firstFontWeight);
	}
	.footer .bottom-logo {
    width: 100px;
}
.footer img {
    width: 100%;
}
/* about us screen */
  .about-us {
    background:url(../images/about-background-3.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
}
.about-banner {
    background: url(../images/about-banner.jpg);
    background-repeat: no-repeat;
    height: 500px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    display: flex; /* Enable flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.about-banner h1 {
    color: white;
    font-size: 3em;
    text-align: center;
    padding: 20px 50px;
    margin: 0;
    background: #72776cb8;
    border-radius: 10px;
}
.about-content .row {
    background: rgba(143, 117, 40, 0.355);
    margin-bottom: 100px;
    padding: 20px;
    border-radius: 10px;
    align-items: center;
}
.about-content {
    padding: 100px 0;
}
.about-content .row:nth-child(3) {
    margin-bottom: 0;
}
.about-content .row img {
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 0px 70px;
    margin: auto;
}

/* resorts-adventure start */
.resorts-and-adventure {
	background: #FEECC8;
	padding: 100px 0;
}
.heading-structure.tagline.price-list {
    margin-bottom: 0;
}
.restro-menu h3 {
    margin: 10px 0;
}
.resort-column {
	margin-top: 100px;
	margin-bottom: 100px; /* Adjust this value as needed */
	background: var(--bodyColor);
	padding: 50px;
	border-radius: 10px;
	align-items: center;
	-webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
	-moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
	box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.resort-column-first {
	margin-top: 0px;
	background: var(--bodyColor);
	padding: 50px;
	border-radius: 10px;
	-webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
	-moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
	box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.resorts-and-adventure h1 {
	margin-bottom: 20px;
}

.resorts-and-adventure img {
	width: 250px;
	height: 250px;
	object-fit: contain;
	margin: auto;
}
/* collaboration */
.Collaboration-section {
	background: #FEECC8;
	padding: 100px 0;
}

.Collaboration-section img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: 0 40px;
}

#Shankh-section .row,
#Pursuits-section .row,
#Yuvocreations-section {
	align-items: center;
	margin-bottom: 100px;
}

#Merchandise-section .row {
	align-items: center;
}

#Shankh-section,
#Merchandise-section {
	background-color: rgb(130 52 112 / 23%);
	backdrop-filter: blur(5px);
	box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.08);
	padding-right: 20px;
	border-radius: 0 0 0 35px;
}

#Pursuits-section,#Yuvocreations-section {
	background-color: rgb(101 143 40 / 36%);
	backdrop-filter: blur(5px);
	box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.08);
	padding-left: 20px;
	border-radius: 0 35px 0 0;
}
#Yuvocreations-section{
	margin-bottom:0;
	margin-top:100px;
}
.collab-link{
	color:#fff;
}
/* contact-us */
.contact-info {
	display: inline-block;
	width: 100%;
	text-align: center;
}

.contact-info-icon {
	margin-bottom: 15px;
}

.contact-info-item {
	background: #efefef;
	padding: 30px 0px;
	border-radius: 10px;
	-webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
	-moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
	box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.contact-page-sec .contact-page-form h2 {
	color: var(--secondaryColor);
	text-transform: capitalize;
	font-size: 22px;
	font-weight: var(--firstFontWeight);
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
	padding-left: 0;
}

.contact-page-form.contact-form input {
	margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
	height: 110px;
}

.contact-page-form.contact-form input[type="submit"] {
	background: #071c34;
	width: 150px;
	border-color: #071c34;
}

.contact-info-icon i {
	font-size: var(--headingFontSize);
	color: var(--secondaryColor);
}

.contact-info-text p {
	margin-bottom: 0px;
}

.contact-info-text h2 {
	color: var(--secondaryColor);
	font-size: 22px;
	text-transform: capitalize;
	font-family:var(--firstFontFamily);
	font-weight: var(--firstFontWeight);
	margin-bottom: 10px;
}

.contact-info-text span {
	color: var(--HeadingColor);
	font-size: var(--firstFontSize);
	display: inline-block;
	width: 100%;
}

.contact-page-form input {
	background: #f9f9f9 none repeat scroll 0 0;
	border: 1px solid #f9f9f9;
	margin-bottom: 20px;
	padding: 12px 16px;
	width: 100%;
	border-radius: 4px;
}

.contact-page-form .message-input {
	display: inline-block;
	width: 100%;
	padding-left: 0;
}

.single-input-field textarea {
	background: #f9f9f9 none repeat scroll 0 0;
	border: 1px solid #f9f9f9;
	width: 100%;
	height: 120px;
	padding: 12px 16px;
	border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"]:hover {
	background:var(--paraColor);
	transition: all 0.4s ease-in-out 0s;
	border-color:var(--paraColor);
}

.single-input-field h4 {
	color: var(--HeadingColor);
	text-transform: capitalize;
	font-size: 14px;
}

.contact-page-form {
	display: inline-block;
	width: 100%;
}

.contact-page-map {
	margin-top: 36px;
}

.contact-page-form form {
	padding: 20px 15px 0;
}

.contact-form {
	margin: 100px 0;
}

.single-input-fieldsbtn {
	margin-top: 30px;
}

.top-container {
	position: relative;
	/* Positioning context for absolutely positioned children */
	text-align: center;
	/* Center the text if desired */
	margin-bottom: 100px;
}

.left-top-content {
	position: absolute;
	/* Position the content absolutely within the container */
	top: 50%;
	/* Center vertically */
	left: 50%;
	/* Center horizontally */
	transform: translate(-50%, -50%);
	/* Adjust to truly center the content */
	z-index: 1;
	/* Ensure content is above the image */
}

.left-top-content h1 {
	font-size: 60px;
	font-family: var(--firstFontFamily);
	font-weight: var(--firstFontWeight);
	color: var(--bodyColor);
}

.top-container img {
	width: 100%;
	height: 500px;
	display: block;
}
/* whatsapp icon */
.float-whatsapp {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color:var(--primaryColor);
	color: var(--bodyColor);
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
/* founder */
 .container-glass, .container-glass::before, .container-glass::after {
    border-radius: 7px;
    background-color: rgb(101 143 40 / 36%);
    backdrop-filter: blur(5px);
    box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.08);
}
.container-glass {
    position: relative;
    padding: 30px;
    width: 100%;
    max-width: 80%;
    margin: auto;
}
.founder-guardian .heading-structure {
    justify-content: center;
    text-align: center;
    margin: auto;
    width: 100%;
    margin-bottom: 20px;
}
.container-glass::before,
.container-glass::after {
  content: '';
  position: absolute;
}
.container-glass::before {
  height: 80px;
  width: 80px;
  top: -40px;
  left: -40px;
  z-index: -1;
}
.container-glass::after {
    height: 40px;
    width: 40px;
    bottom: -20px;
    right: -20px;
    z-index: 2;
}

.container-glass .img {
  width: 100%;
  border-radius: 10px;
}

.container-glass p {
    font-size: 1.01rem;
    color: var(--customBody);
    margin: 10px;
    text-align: justify;
}


.founder-guardian {
    background: #FEECC8;
    padding: 100px 0;
}
.container-glass b {
    font-size: var(--headingFontSize);
}
.founder-guardian .list-inline {
    padding-left: 0;
    list-style: none;
    margin-top: 20px;
    margin-bottom: 0;
}
.founder-guardian .list-inline  a {
    font-size: var(--firstFontSize);
    color: #658f28 !important;
}
/* Notification */
.notification-center {
    background: url("../images/notification.jpg");
    padding: 100px 0;
    background-size: 100% 100%;
    width: 100%;
}

.close {
  overflow: hidden;
  color: black;
  text-shadow: 0 1px 0 white;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.close span {
  display: inline-block;
  width: 1rem;
}
.close:not(:disabled) {
  cursor: pointer;
}
.close:hover, .close:focus {
  color: black;
  text-decoration: none;
  opacity: 0.75;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.notification {
    position: relative;
    padding: 20px;
    border: 0.0625rem solid transparent;
    border-radius: 0.25rem;
    font-size: 20px;
    line-height: 30px;
    background-color: #e9e9e9;
    border-color: #acacac;
	margin-top: 20px;
}
.heading-structure.notification-heading {
    margin-top: 50px;
}
.notification + .notification {
  margin-top: 1rem;
}
.notification-error {
  color: #3d1811;
  background-color: #ffa899;
  border-color: #ff401e;
}
.notification-warning {
  color: #3d3400;
  background-color: #ffe452;
  border-color: #d6b500;
}
.notification-info {
  color: #203138;
  background-color: #cdebf7;
  border-color: #64c0e5;
}
.notification-success {
  color: #0c310c;
  background-color: #74dd74;
  border-color: #2aac2a;
}

.notification-closable {
  padding-right: 3rem;
}
.notification-closable .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  color: inherit;
}


/* board of member */
    .team-member { 
    background:url(../images/member-background.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 100px 0;
}
.team-member .list-inline {
    padding-left: 0;
    list-style: none;
    margin-top: 20px;
    margin-bottom: 0;
}
.team-member .btn-primary {
    color: var(--bodyColor);
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    margin-top: 20px;
}
.team-member .card-body {
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Align items in a column */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    height: 100%; /* Ensure full height for centering */
}


.team-member .section-title {
    text-align: center;
    color: var(--primaryColor);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.team-member .card {
    background: rgb(101 143 40 / 36%);
    border-radius: 10px;
}

.team-member .image-flip:hover .backside,
.team-member .image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: 10px;
}

.team-member .image-flip:hover .frontside,
.team-member .image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.team-member .mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}

.team-member .frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
}

.team-member .backside {
    position: absolute;
    top: 0;
    left: 0;
    background:  rgb(101 143 40 / 36%);;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.team-member .frontside,
.team-member .backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

.team-member .frontside .card,
.team-member .backside .card {
    min-height: 312px;
}

.team-member .backside .card a {
    font-size: var(--firstFontSize);
    color: #823470!important;
}

.team-member .frontside .card .card-title, .backside .card .card-title {
    color: #823470 !important;
    font-size: 30px;
}

.team-member .frontside .card .card-body img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.team-member p.card-text {
    color: var(--HeadingColor);
    font-size: var(--firstFontSize);
}
.team-member .heading-structure {
    margin-bottom:30px;
}
  
 /* ===== Preloader Base ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px) saturate(160%);
  -webkit-backdrop-filter: blur(25px) saturate(160%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s ease-in-out, visibility 0.9s ease-in-out;
}

/* ===== Loader Container ===== */
.loader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Logo ===== */
.loader img {
  width: 230px;
  height: auto;
  opacity: 0;
  transform: scale(0.7) translateY(0);
  animation: logoBounceFade 2.8s cubic-bezier(0.6, 0.05, 0.2, 0.95) forwards;
}

/* ===== Keyframes ===== */
@keyframes logoBounceFade {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(0);
  }
  10% {
    opacity: 1;
    transform: scale(0.9) translateY(0);
  }
  25% {
    transform: scale(1.15) translateY(-8px);
  }
  45% {
    transform: scale(0.95) translateY(0);
  }
  60% {
    transform: scale(1.1) translateY(-6px);
  }
  75% {
    transform: scale(1) translateY(0);
  }
  85% {
    transform: scale(1.1) translateY(-7px);
    opacity: 1;
  }
  95% {
    transform: scale(1.25) translateY(-8px);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: scale(8) translateY(-10px);
  }
}

/* ===== Fade Out Entire Preloader (synced perfectly) ===== */
#preloader.vanish {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease-in-out, visibility 0.9s ease-in-out;
}


/* our catalog */
.catalog-banner p {
    color: var(--customBody);
    font-size: var(--headingFontSize);
    font-weight: var(--secondFontWeight);
}
.catalog-banner .heading-structure h2 {
    margin-bottom: 0px; 
}
.catalog-banner .heading-structure {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.catalog-banner {
    background: linear-gradient(rgb(255 255 255 / 92%), rgb(55 43 43 / 0%)), url(../images/greenFungiBanner.png);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}
.grid-product {
  display: flex;
  align-items: center;
  flex-wrap:wrap;
}
.product-item .product-item-content {
  display: block;
  position: relative;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.product-item {
    background: #f7ecda; 
    display: block;
    text-align: center;
    color: var(--customBody);
    padding: 20px;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 15px;
    box-shadow: 0 10px 40px -3px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    transform: scale(0.97, 0.97);
    transition: all 0.17s cubic-bezier(0.24, 0.71, 0.58, 0.57);
    height: 450px;
}

.product-item:hover {
  box-shadow: 0 0px 50px -10px rgba(0, 0, 0, 0.3);
  transform: scale(1, 1);
  cursor:pointer;
}
.product-item:hover .product-item-image {
  transition-delay: 0.2s;
  -ms-transform: scale(0.8) translateY(-15%);
  transform: scale(0.8) translateY(-15%);
}
.product-item .product-item-image {
  display: block;
  position: relative;
  margin-bottom: 10px;
  transform: translate3d(0, 0, 0);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.product-item .product-item-image img {
    /* border-radius: 100%; */
    position: relative;
    z-index: 3;
    max-width: 300px;
    max-height: 300px;
    height: 300px;
    width: 300px;
    object-fit: fill;
    margin: auto;
	border-radius:10px;
}
.product-item:hover .product-item-image-hover {
  transition-delay: 0.1s;
  -ms-transform: translate(-50%, -50%) scale(0.85);
  transform: translate(-50%, -50%) scale(0.85);
}
.product-item .product-item-image-hover {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #97e7a2;
    background: -moz-linear-gradient(135deg, #97e7a2 0%, #d8ff7e 100%);
    background: -webkit-linear-gradient(135deg, #97e7a2 0%, #d8ff7e 100%);
    background: linear-gradient(135deg, #97e7a2 0%, #658f28 100%);
    border-radius: 10px;
    -ms-transform: translate(-50%, -120%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    position: absolute;
    top: 65%;
    left: 50%;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    visibility: hidden;
}
.product-item:hover .product-item-image-hover {
  opacity: 1;
  visibility: visible;
}

.product-item:hover .product-item-price,
.product-item:hover .product-item-title {
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}
.product-item .product-item-price,
.product-item .product-item-title {
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.product-item .product-item-category {
  font-size: 0.875rem;
}
.product-item:hover .product-item-title {
  transition-delay: 0.4s;
}

.product-item .product-item-price,
.product-item .product-item-title {
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.product-item .product-item-title {
    font-size: var(--customFontSize);
    font-family: var(--secondFontFamily);
    font-weight: var(--firstFontWeight);
    color: var(--HeadingColor);
}
.product-item:hover .product-item-price {
  transition-delay: 0.5s;
}
.product-item:hover .product-item-price,
.product-item:hover .product-item-title {
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}
.product-item .product-item-price,
.product-item .product-item-title {
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.product-item .product-item-price {
  color:var(--paraColor);
  font-size: var(--firstFontSize);
  margin-top:10px;
}
.product-item:hover .button-pill {
  transition-delay: 0.6s;
}
.product-item:hover .button-pill {
  opacity: 1;
  -ms-transform: translateY(5px) translateX(-50%);
  transform: translateY(5px) translateX(-50%);
}
.product-item .button-pill {
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translateY(30px) translateX(-50%);
  transform: translateY(30px) translateX(-50%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}



.product-item .product-out-of-stock {
    position: absolute;
    top: 50%;          /* center vertically */
    left: 50%;         /* center horizontally */
    transform: translate(-50%, -50%); /* true center */
    padding: 8px 15px; /* space around text */
    background: rgba(0, 0, 0, 0.5); /* semi-transparent dark */
    color: #ffffff;    /* white text */
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 5px; /* rounded corners */
    z-index: 10;
    opacity: 0;        /* hide by default */
    transition: opacity 0.3s ease;
    text-align: center;
}

.product-item:hover .product-out-of-stock {
    opacity: 1;        /* show on hover */
}




.button-pill span {
    display: inline-block;
    position: relative;
    font-size: var(--firstFontSize);
    font-weight:var(--secondFontWeight);
    background: #97e7a2;
    background: -moz-linear-gradient(135deg, #97e7a2 0%, #d8ff7e 100%);
    background: -webkit-linear-gradient(135deg, #97e7a2 0%, #d8ff7e 100%);
    background: linear-gradient(135deg, #823470 0%, #648f28 100%);
    color: var(--bodyColor);
    border-radius: 0px 20px;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-left: 2.1rem;
    padding-right: 2.1rem;
    box-shadow: 0 14px 25px 0px rgba(75, 204, 140, 0.1);
    transition: all 0.37s ease;
}
.button-pill:hover span {
    display: inline-block;
    position: relative;
    font-size: var(--firstFontSize);
    font-weight: var(--secondFontWeight);
    background: var(--secondaryColor);
    background: -moz-linear-gradient(135deg, #5f5f5f 0%, #000 100%);
    background: -webkit-linear-gradient(135deg, #5f5f5f 0%, #000 100%);
    background: linear-gradient(135deg, #6fa040 0%, #823470 100%);
    color: var(--bodyColor);
    border-radius: 0px 20px;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-left: 2.1rem;
    padding-right: 2.1rem;
    box-shadow: 0 14px 25px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1200px) and (max-width: 1366px) {
  .button-pill {
    width: 100%;
  }
  .product-box {
    padding: 0 10px;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .product-item .product-item-title {
    font-size: 0.888rem;
  }
  .product-item .product-item-price {
    font-size: 0.788rem;
    padding: 7px 0 0;
  }
  .product-box {
    padding: 0 7px;
  }
}



/* ===============================
   TEXT SIZE FIX FOR ALL SCREENS
   (Prevents overflow, keeps design same)
================================ */

/* Large Desktops */
@media (min-width: 1367px) {
  .product-item .product-item-title {
    font-size: 1rem; /* slightly smaller for big screens */
  }
  .product-item .product-item-price {
    font-size: 0.90rem;
  }
}

/* Normal Desktops & Laptops */
@media (min-width: 1024px) and (max-width: 1366px) {
  .product-item .product-item-title {
    font-size: 0.95rem; /* reduced just enough to fit text */
  }
  .product-item .product-item-price {
    font-size: 0.9rem;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .product-item .product-item-title {
    font-size: 0.95rem; /* balanced for medium screens */
  }
  .product-item .product-item-price {
    font-size: 0.85rem;
  }
}

/* Mobiles */
@media (max-width: 767px) {
  .product-item .product-item-title {
    font-size: 0.9rem; /* slightly smaller title */
  }
  .product-item .product-item-price {
    font-size: 0.8rem; /* slightly smaller price */
  }
}

/* Extra Small Mobiles (e.g. 320px width phones) */
@media (max-width: 480px) {
  .product-item .product-item-title {
    font-size: 0.95rem; /* optimized for smallest devices */
  }
  .product-item .product-item-price {
    font-size: 0.85rem;
  }
}



/* wall hook and peg */
.single-product-screen {
  background-color: #FEECC8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* ✅ Desktop rectangle layout (slightly larger) */
.product-card {
  background: white;
  margin: 0 auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16),
              0 2px 10px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  border-radius: 10px;
  width: 96%;
  max-width: 1200px; /* ⬆️ slightly larger for rectangle */
  padding-bottom: 25px;
}
.product-card:hover {
  box-shadow: 0 8px 17px rgba(0, 0, 0, 0.2),
              0 6px 20px rgba(0, 0, 0, 0.19);
}

.product-card nav {
  color: var(--HeadingColor);
  padding: 20px;
  font-size: var(--firstFontSize);
  background: rgb(101 143 40 / 36%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 2px;
  flex-wrap: wrap;
}
.product-card nav a {
  color: var(--HeadingColor);
  font-size: var(--firstFontSize);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
  text-align: center;
}
.product-card nav i:hover {
  color: rgb(107, 54, 117);
  cursor: pointer;
}

/* ✅ Image section (top) with perfect square */
.product-card .product-photo {
  padding: 25px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1; /* forces square ratio on desktop */
  overflow: hidden;
}
.product-photo img {
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  max-width: 900px;
  height: 100%;
  object-fit: cover; /* ensures full square coverage */
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* ✅ Text section (below image) */
.product-card .product-description {
  padding: 30px 40px 20px 40px;
  text-align: left;
  word-wrap: break-word;
}
.product-card .product-description h6 {
  color: var(--primaryColor);
  padding: 10px 0;
  margin: 0;
  font-size: 28px;
  font-weight: var(--secondFontWeight);
}
.product-card .product-description h2 {
  font-size: 38px;
  margin-bottom: 15px;
  font-family: var(--firstFontFamily);
  font-weight: var(--firstFontWeight);
  color: var(--HeadingColor);
  line-height: 1.2;
}
.product-card .product-description h4 {
  margin: 0;
  color: var(--secondaryColor);
  text-transform: uppercase;
  font-weight: var(--secondFontWeight);
  font-size: var(--firstFontSize);
}
.product-description button {
  margin-top: 25px;
}
.product-card .row {
  align-items: center;
}

/* ✅ Hover image modal */
.hover-image {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hover-image img {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* ✅ Hover overlay text */
.product-photo {
  position: relative;
}
.product-photo::after {
  content: "Click Here For More";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  font-size: 14px;
}
.product-photo:hover::after {
  opacity: 1;
}

/* ✅ General fixes */
li.nav-item {
  margin-left: 5px;
}
.mission-we-are-working {
  background: #fff;
}

/* ---------------------------------------
   📱 RESPONSIVE BREAKPOINTS (mobile untouched)
--------------------------------------- */

/* Tablets & smaller laptops */
@media (max-width: 992px) {
  .product-card nav {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .product-photo {
    aspect-ratio: unset;
  }
  .product-photo img {
    max-width: 500px;
    height: auto;
  }
  .product-card .product-description {
    text-align: center;
  }
  .product-card .product-description h6 {
    font-size: 24px;
  }
  .product-card .product-description h2 {
    font-size: 30px;
  }
}

/* Medium screens (768px and below) */
@media (max-width: 768px) {
  .single-product-screen {
    flex-direction: column;
    padding: 20px 10px;
  }
  .product-card {
    width: 100%;
    margin: 0;
  }
  .product-card nav {
    flex-direction: column;
    padding: 15px;
    font-size: 22px;
    text-align: center;
  }

  .product-card .product-photo {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: unset;
  }
  .product-photo img {
    width: 90%;
    max-width: 320px;
    height: auto;
  }

  .product-card .product-description {
    padding: 15px;
    text-align: center;
  }
  .product-card .product-description h6 {
    font-size: clamp(18px, 4vw, 20px);
  }
  .product-card .product-description h2 {
    font-size: clamp(22px, 5vw, 26px);
    line-height: 1.3;
  }
  .product-card .product-description h4 {
    font-size: clamp(12px, 3vw, 14px);
  }

  .hover-image img {
    width: 220px;
    height: 220px;
  }
  .product-photo::after {
    font-size: 12px;
    padding: 4px 8px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .product-card nav {
    font-size: 18px;
    padding: 12px;
    gap: 5px;
  }
  .product-photo img {
    max-width: 250px;
    width: 85%;
  }
  .product-card .product-description {
    padding: 10px;
  }
  .product-card .product-description h6 {
    font-size: clamp(16px, 4vw, 18px);
  }
  .product-card .product-description h2 {
    font-size: clamp(18px, 6vw, 22px);
  }
  .product-card .product-description h4 {
    font-size: clamp(11px, 3.5vw, 13px);
  }
  .product-description button {
    font-size: 14px;
    padding: 6px 12px;
  }
  .hover-image img {
    width: 180px;
    height: 180px;
  }
}

/* Ultra-small phones (320px and below) */
@media (max-width: 360px) {
  .product-card nav {
    font-size: 16px;
  }
  .product-card .product-description h6 {
    font-size: 16px;
  }
  .product-card .product-description h2 {
    font-size: 18px;
  }
  .product-photo img {
    width: 90%;
    max-width: 200px;
  }
  .product-photo::after {
    font-size: 10px;
  }
  .hover-image img {
    width: 150px;
    height: 150px;
  }
}


/* Hide heart icon completely */
.product-card nav i.fa-heart,
.product-card nav i.ri-heart-fill,
.product-card nav i.ri-heart-line,
.product-card nav i.lucide-heart {
  display: none !important;
}


/* 🌿 === GreenFungi Popup & WhatsApp System === */

/* === Fullscreen Popup (Homepage Only) === */
.fullscreen-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.65);
  z-index: 6000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

.popup-inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(101,143,40,0.3);
  position: relative;
  animation: popupZoom 0.4s ease;
  border: 2px solid rgba(101,143,40,0.2);
}

.popup-inner h2 {
  color: #658F28;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.popup-inner p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1rem;
}

/* Primary CTA Button */
.popup-btn {
  background: #658F28;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(101,143,40,0.3);
}

.popup-btn:hover {
  background: #557821;
  box-shadow: 0 8px 25px rgba(101,143,40,0.4);
  transform: translateY(-2px);
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #658F28;
  transition: 0.3s ease;
}

.close-btn:hover {
  transform: scale(1.1);
}

/* === Floating WhatsApp Button === */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #658F28;
  color: white;
  font-size: 26px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5000;
  box-shadow: 0 8px 20px rgba(101,143,40,0.4);
  transition: all 0.3s ease;
  animation: pulseGlow 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #557821;
}

/* === Mini Chat Popup === */
.whatsapp-popup {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 5000;
  animation: slideUp 0.6s ease;
  font-family: 'Manrope', sans-serif;
}

.popup-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  padding: 20px;
  width: 320px;
  max-width: 90vw;
  border: 2px solid rgba(101,143,40,0.2);
  position: relative;
  transition: all 0.3s ease;
}

/* Header */
.popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.popup-logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #658F28;
}

.popup-header h3 {
  margin: 0;
  font-weight: 700;
  color: #658F28;
  font-size: 1rem;
}

.popup-header p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
}

/* Button inside mini popup */
.popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #658F28;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(101,143,40,0.3);
}

.popup-btn:hover {
  background: #557821;
  transform: translateY(-2px);
}

/* Close button */
.close-mini-btn {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #658F28;
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(101,143,40,0.4);
  transition: all 0.3s ease;
}

.close-mini-btn:hover {
  transform: scale(1.1);
  background: #557821;
}

/* === Animations === */
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

@keyframes popupZoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100px); opacity: 0; }
}

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 10px rgba(101,143,40,0.5); }
  50% { box-shadow: 0 0 20px rgba(101,143,40,0.7); }
}

/* === Responsive Design === */
@media (max-width: 480px) {
  .whatsapp-popup {
    bottom: 80px;
    right: 10px;
  }

  .popup-card {
    width: 92vw;
    padding: 16px;
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
