.hero {
	background-image: url(/src/images/image-water.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 100vh;
	z-index: -1;
	padding: 50px;
	opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.hero.visible {
    opacity: 1;
    transform: translateY(0);
}
@media only screen and (max-width: 550px) {
	.hero {
		padding: 25px;
	}
}
.hero .heading {
	list-style: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: auto;
	max-width: 500px;
	height: 100vh;
	gap: 10px;
	margin-top: -100px;
	z-index: 5;
}
@media only screen and (max-width: 550px) {
	.hero .heading {
		margin-top: -50px;
	}
}
/* Default styles */
.blur-container {
	padding: 20px;
	border-radius: 20px;
    transition: backdrop-filter 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* Apply blur only to the first two <li> */
.blur-container.blurred {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.2);
}
.hero .heading h2 {
	font-size: 2rem;
	font-weight: bold;
}
.hero .heading a {
    list-style: none;
/*    background-color: #efe;*/
	background-color: rgba(128, 159, 255, 1);
    padding: 10px 15px;
    border-radius: 10px;
	text-decoration: none;
    color: #fff;
	font-size: 1.25rem;
	display: flex;
	text-align: center;
	justify-content: center;
	max-width: 200px;
	margin: auto;
	font-weight: bold;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.hero .heading a:hover {
	cursor: pointer;
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 1);
	transform: translate(-2px, -2px);
}




/*-------------- treatments --------------*/
.treatments {
    padding: 50px;
    text-align: center;
    background-color: #fff;
	
}

.treatments h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.treatment {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
	box-shadow: 0 3px 15px 0px rgba(0, 0, 0, 0.2);
}
.treatment.visible {
    opacity: 1;
    transform: translateY(0);
}

.treatment .img-container {
	position: relative;
}
.treatment img {
    width: 100%;
    height: auto;
    border-radius: 10px;
	box-shadow: 0 3px 15px 0px rgba(0, 0, 0, 0.2);
}
.treatment .img-container a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background-color: rgba(128, 159, 255, 1);
    padding: 5px 10px;
    border-radius: 7px;
    position: absolute;
    bottom: -10px;
    right: 30px;
    z-index: 5;
    white-space: nowrap;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.treatment .img-container a:hover {
    cursor: pointer;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 1);
    transform: translateY(-2px);
}
.treatment h3 {
    margin: 15px 0 10px;
    font-size: 1.5rem;
}
.treatment p {
    font-size: 1rem;
    color: #555;
}
.treatment:hover {
    transform: translateY(-5px);
}
.see-more {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 20px;
    background-color: rgba(128, 159, 255, 1);
    color: #fff !important;
	font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 10px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.see-more:hover {
    cursor: pointer;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}



/*--------------- gallery -------------*/
.gallery {
    padding: 50px;
    text-align: center;
/*    background-color: #fff;*/
	background-color: rgba(128, 159, 255, 0.5);
}
.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusts to screen */
    gap: 15px;
    justify-content: center;
}
.gallery-grid figure {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
	box-shadow: 0 3px 15px 0px rgba(0, 0, 0, 0.2);
}
.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery-grid img.visible {
    opacity: 1;
    transform: translateY(0);
}
.gallery-grid figure:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}




/*---------------- qualifications ----------------*/
.qualifications {
    padding: 50px;
    border-bottom: solid 1px #777;
    overflow-x: auto;
    white-space: nowrap;
}
.qualifications ul {
    display: flex;
    flex-direction: row;
	justify-content: center;
    list-style: none;
    gap: 25px;
    min-width: max-content;
}
.qualifications li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qualifications img {
    width: 30px;
    height: auto;
    display: block;
}

/* Optional: Make scrollbar hidden */
.qualifications::-webkit-scrollbar {
    display: none;
}
/*------------ about us section -----------*/
.about {
/*	background-color: #fff;*/
	padding: 50px;
	display: flex;
	flex-wrap: wrap; /* Allow items to wrap */
    justify-content: center; 
	gap: 50px;
	z-index: 0;
	position: relative;
/*    overflow: hidden;*/
	z-index: -5;
}
@media only screen and (max-width: 800px) {
	
}
.about figure {
	flex: 1 1 300px;
	z-index: 1;
}
.about figure h2 {
	margin-bottom: 20px;
}



.background-figure-1 {
	position: absolute;
	height: 75px;
	width: 150%;
	background-color: rgba(128, 159, 255, 1);
	z-index: -1;
	transform: rotate(20deg);
}
.background-figure-2 {
	position: absolute;
	height: 75px;
	width: 150%;
	background-color: rgba(128, 159, 255, 1);
	z-index: -1;
	transform: rotate(-10deg);
	margin-top: 150px;
}
@media only screen and (max-width: 750px) {
	.background-figure-2 {
		margin-top: 400px;
	}
}
@media only screen and (max-width: 450px) {
	.background-figure-2 {
		margin-top: 500px;
	}
}




/*-------------- loaction ---------------*/
.location {
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
	
}
.location h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
}
.location iframe {
    height: 300px;
/*    width: 500px;*/
	max-width: 500px;
    border: none;
    border-radius: 10px;
    flex-shrink: 0;
	box-shadow: 0 3px 15px 0px rgba(0, 0, 0, 0.2);
}
.location-story {
    max-width: 500px;
    line-height: 2;
	background-color: rgba(128, 159, 255, 0.4);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 3px 15px 0px rgba(0, 0, 0, 0.2);
}
