/** {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/*
body {
	font-family: "Poppins", sans-serif;
	background: linear-gradient(45deg, #000428, #004e92);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	color: #fff;
}
*/
.card-pack {
	position: relative;
	width: 340px;
	height: 480px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	transition: transform 0.5s ease;
}
.card-pack-family {
	position: relative;
	width: 100%;
	height: 480px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	transition: transform 0.5s ease;
}
.card-pack:hover {
	transform: translateY(-10px);
}
.card-pack-family:hover {
	transform: translateY(-10px);
}

.card-pack-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/footer-holiday.jpg");
	background-size: cover;
	background-position: center;
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
	z-index: 1;
}
.card-pack-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/footer-holiday.jpg");
	background-size: cover;
	background-position: center;
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
	z-index: 1;
}
.card-pack{
	background-image: url("../img/Gangaramaya.jpg");
    background-attachment: scroll;
    background-position: center top;
}
.card-pack-family{
	background-image: url("../img/sri-lanka-kandy-family-tours.avif");
	background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}
.beach-lovers{
	background-image: url("../img/beach-love.avif");
	background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}
.card-pack:hover .card-pack-image {
	transform: translateY(-100px);
}
.card-pack-family:hover .card-pack-image {
	transform: translateY(-100px);
}


.card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 140px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	z-index: 2;
	transition: height 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}


.card-pack:hover .card-overlay {
	height: 280px;
}

.card-header-pack {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 24px;
	z-index: 3;
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}
.card-pack-family:hover .card-overlay {
	height: 280px;
}
.card-pack:hover .card-header {
	transform: translateY(-100px);
}
.card-pack-family:hover .card-header {
	transform: translateY(-100px);
}

.card-tag {
	display: inline-block;
	background: #ff3e6c;
	color: white;
	font-size: 0.7rem;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 15px;
	margin-bottom: 10px;
	transform: translateY(40px);
	opacity: 0;
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1),
		opacity 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-pack:hover .card-tag {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.1s;
}
.card-pack-family:hover .card-tag {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.1s;
}

.card-title {
	font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 1px;
	text-transform: capitalize;
}

.card-subtitle {
	font-size: 14px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.card-description{
	color: #FFFFFF;
	font-size: 14px;
}
.card-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	z-index: 3;
	transform: translateY(100%);
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-pack:hover .card-content {
	transform: translateY(0);
}
.card-pack-family:hover .card-content {
	transform: translateY(0);
}

.card-description {
	font-size: 14px;
/*<!--	line-height: 1px;
-->*/	margin-bottom: 25px;
	opacity: 0;
	transform: translateY(20px);
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1),
		opacity 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}
.detail-item{
	background: #126d82;
	padding: 10px;
    border-radius: 27px;
    color: #fff;
    border: solid;
}
.card-pack:hover .card-description {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.25s;
}
.card-pack-family:hover .card-description {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.25s;
}

.card-details {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(20px);
	transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1),
		opacity 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-pack:hover .card-details {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.35s;
}
.card-pack-family:hover .card-details {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.35s;
}

.detail-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.detail-value {
	font-size: 1.25rem;
	font-weight: 700;
}

.detail-label {
	font-size: 9px;
    text-transform: uppercase;
    color: #fff;
}

.card-button {
	width: 100%;
	padding: 12px 0;
	background: transparent;
	border: 2px solid white;
	color: white;
	font-size: 14px;
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
}

.card-pack:hover .card-button {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.45s;
}
.card-pack-family:hover .card-button {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.45s;
}

.card-button:hover {
	background: #00000078;
    color: #ffffff;
    transform: translateY(-3px);
    letter-spacing: 1px;
}

.card-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.shape {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

.shape-1 {
	width: 300px;
	height: 300px;
	top: -150px;
	left: -100px;
}

.shape-2 {
	width: 200px;
	height: 200px;
	bottom: -70px;
	right: -70px;
}

.shape-3 {
	width: 120px;
	height: 120px;
	bottom: 150px;
	left: -30px;
}

/* Animation for the shapes */
@-webkit-keyframes float {
	0% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(5deg);
	}
	100% {
		transform: translateY(0px) rotate(0deg);
	}
}
@keyframes float {
	0% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(5deg);
	}
	100% {
		transform: translateY(0px) rotate(0deg);
	}
}

.shape-1 {
	-webkit-animation: float 15s ease-in-out infinite;
	        animation: float 15s ease-in-out infinite;
}

.shape-2 {
	animation: float 18s ease-in-out infinite reverse;
}

.shape-3 {
	-webkit-animation: float 20s ease-in-out infinite;
	        animation: float 20s ease-in-out infinite;
}
.beach-lovers {
	position: relative;
	width: 100%;
	height: 480px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	transition: transform 0.5s ease;
}
.beach-lovers:hover {
	transform: translateY(-10px);
}
.beach-lovers{
	background-image: url("../img/sri-lanka-beach.avif");
	background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}
.beach-lovers:hover .card-pack-image {
	transform: translateY(-100px);
}.beach-lovers:hover .card-overlay {
	height: 280px;
}.beach-lovers:hover .card-header {
	transform: translateY(-100px);
}.beach-lovers:hover .card-tag {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.1s;
}
.beach-lovers:hover .card-content {
	transform: translateY(0);
}
.beach-lovers:hover .card-description {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.25s;
}
.beach-lovers:hover .card-details {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.35s;
}
.beach-lovers:hover .card-button {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.45s;
}


.cultural_and_heritage_tours {
	position: relative;
	width: 100%;
	height: 480px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	transition: transform 0.5s ease;
}
.cultural_and_heritage_tours:hover {
	transform: translateY(-10px);
}
.cultural_and_heritage_tours{
	background-image: url("../img/cultural_and_heri_age_tours.avif");
	background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}
.cultural_and_heritage_tours:hover .card-pack-image {
	transform: translateY(-100px);
}.cultural_and_heritage_tours:hover .card-overlay {
	height: 280px;
}.cultural_and_heritage_tours:hover .card-header {
	transform: translateY(-100px);
}.cultural_and_heritage_tours:hover .card-tag {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.1s;
}
.cultural_and_heritage_tours:hover .card-content {
	transform: translateY(0);
}
.cultural_and_heritage_tours:hover .card-description {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.25s;
}
.cultural_and_heritage_tours:hover .card-details {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.35s;
}
.cultural_and_heritage_tours:hover .card-button {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.45s;
}

.wild_life_tours {
	position: relative;
	width: 100%;
	height: 480px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	transition: transform 0.5s ease;
}
.wild_life_tours:hover {
	transform: translateY(-10px);
}
.wild_life_tours{
	background-image: url("../img/sri_lanka_wild_life.avif");
	background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}
.wild_life_tours:hover .card-pack-image {
	transform: translateY(-100px);
}.wild_life_tours:hover .card-overlay {
	height: 280px;
}.wild_life_tours:hover .card-header {
	transform: translateY(-100px);
}.wild_life_tours:hover .card-tag {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.1s;
}
.wild_life_tours:hover .card-content {
	transform: translateY(0);
}
.wild_life_tours:hover .card-description {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.25s;
}
.wild_life_tours:hover .card-details {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.35s;
}
.wild_life_tours:hover .card-button {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.45s;
}


.honeymoon {
	position: relative;
	width: 100%;
	height: 480px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	transition: transform 0.5s ease;
}
.honeymoon:hover {
	transform: translateY(-10px);
}
.honeymoon{
	background-image: url("../img/sri-lanka-honeymoon-package.avif");
	background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}
.honeymoon:hover .card-pack-image {
	transform: translateY(-100px);
}.honeymoon:hover .card-overlay {
	height: 280px;
}.honeymoon:hover .card-header {
	transform: translateY(-100px);
}.honeymoon:hover .card-tag {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.1s;
}
.honeymoon:hover .card-content {
	transform: translateY(0);
}
.honeymoon:hover .card-description {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.25s;
}
.honeymoon:hover .card-details {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.35s;
}
.honeymoon:hover .card-button {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.45s;
}
