

/* 👉 Core CSS  */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body{
    font-family: "Poppins", sans-serif !important;
}
img{
    width: 100%;
}
li{
    list-style: none !important;
}
a{
    text-decoration: none !important;
}
ul{
    padding-left: 0 !important;
}

/* 👉 Variables  */

:root {
    /*#EC1C24*/
    --primary: #001544;
    --purple: #4d4089;
    --white: #ffffff;
    --black: #000000
}

/* 👉 Global CSS  */


.sub-heading {
    color: var(--black);
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
    margin: 10px 0 0 0;
}
.mid-heading {
    color: var(--black);
    font-size: 24px;
    font-weight: 800;
    line-height: 50px;
    margin: 10px 0 0 0;
}
.sub-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}
.mini-text {
    color: var(--black);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1;
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    font-style: italic;
}
.mini-text:before {
    display: inline-flex;
    content: "";
    flex-grow: 1;
    width: 20px;
    height: 2.5px;
    background-color: var(--primary);
    margin-right: 10px;
}
/*.sub-heading {*/
/*    font-size: 18px;*/
/*    font-weight: 500;*/
/*}*/

.paragraph, .paragraph a {
    color: var(--black);
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}
.underline {
    width: 100px;
    height: 2px;
    margin: 10px 0;
    background-color: var(--black);
}
.section-head {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.mid-mg{
    margin-top: 50px;
}
.small-mg{
    margin-top: 30px;
}
.min-mg{
    margin-top: 20px;
}
.tiny-mg{
    margin-top: 20px;
}

.mg-bt{
    margin-bottom: 20px;
}
.breadcrumb-section {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    gap: 5px;
}
.breadcrumb-section p{
    margin: 0;
}
.hidden{
    display: none;
}
.book-now-btn a, .submit-btn, .inquiry-btn {
    font-size: 15px;
    font-weight: 500;
    background-color: var(--purple);
    padding: 10px 25px 8px 25px;
    border-radius: 30px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: .3s ease-in-out;
    border: solid 1px var(--purple);
}
.book-now-btn a img{
    width: 15px;
}
.book-now-btn a:hover, .submit-btn:hover, .inquiry-btn:hover {
    transform: translateY(-8px);
    background-color: var(--black);
    border: solid 1px var(--white);
}
.whatsapp-btn {
    font-size: 24px;
    background-color: #128c7e;
    color: #fff;
    border-radius: 100px;
    padding: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
}


/*====================================================*/






.primary-btn{
    font-weight: 400;
    color: var(--white);
    background-color: var(--primary);
    border: solid 1px var(--primary);
    border-radius: 100px;
    font-size: 16px;
    padding: 10px 30px;
    transition: .3s ease-in-out;
}
.primary-btn:hover{
    color: var(--primary);
    background-color: var(--white);
    border: solid 1px var(--white);
    transform: translateY(-8px); 
}
.secondary-btn{
    font-weight: 400;
    color: var(--primary);
    /* background-color: var(--white); */
    border: solid 1px var(--primary);
    border-radius: 100px;
    font-size: 16px;
    padding: 10px 30px;
    transition: .3s ease-in-out;
}
.secondary-btn:hover{
    color: var(--white);
    background-color: var(--primary);
    border: solid 1px var(--primary);
    transform: translateY(-8px); 
}
.bounce-btn{
    display: inline-block;
    margin: 0 auto;
    font-weight: 500;
    color: var(--white);
    background-color: var(--primary);
    border: solid 1px var(--primary);
    border-radius: 100px;
    font-size: 18px;
    padding: 10px 30px;
    transition: .3s ease-in-out;
}
.bounce-btn:hover{
    animation: bounce 1s infinite;
}
@keyframes bounce {
	0% {
		transform: scale(1.0);
	}
	50% {
		transform: scale(1.1);
	}
    100% {
		transform: scale(1.0);
	}
}

body{

}
ul{
    margin: 0 !important;
    padding: 0 !important;
}

/* 👉 HEADER SECTION  */

.header-block {
    width: 100%;
    height: 90px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    width: 120px;
    margin-top: 60px;
    position: relative;
    background-color: #fff;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 100%;
    padding: 2px;
}
.logo img {
    width: 100%;
}
.menu {
    display: flex;
    gap: 30px;
}
.menu li a{
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black);
}
.menu li a:hover {
    color: var(--purple);
}
.header-contact{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}
.header-call{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-call img {
    width: 60px;
}
.header-call a {
    font-size: 15px;
    font-weight: 500;
    color: #4d4089;
}
.header-call span {
    font-size: 12px;
    color: #333;
    display: block;
}
.menu-toggle{
    display: none;
}
.menu-close {
    display: none;
}



/*👉 GENERAL SECTION BODY */

.feature-section, .packages-section, .about-section, .gallery-section, .info-fact-section, .food-section, .event-section, .contact-section, .testimonial-section{
    padding: 70px 0;
    position: relative;
}
.page-banner{
    padding: 70px 0 50px 0;
}


/* 👉 HERO SECTION  */

.banner-section{
    height: 500px;
    width: 100%;
    background-size: cover;
    position: relative;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 1)));
}
.heroSwiper.swiper {
    width: 100%;
    height: 500px;
    position: relative;
    }
.heroSwiper .swiper-slide {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
    background: transparent;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.banner-content{
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.banner-heading {
    color: #FFFFFF;
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 60px;
    text-shadow: 2px 2px #000000;
    margin-top: 70px;
}
.banner-description {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    text-shadow: 1px 1px #000000;
}


.hero-image{
    display: flex;
    align-items: center;
    justify-content: end;
    height: 550px;
    position: relative;
}
.hero-image img{
    width: 250px;
    z-index: 1;
}
.backdrop-circle {
    background-color: #34cc19;
    width: 280px;
    height: 280px;
    position: absolute;
    right: 0px;
    bottom: 80px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    /*top: 50%; */
    /*left: 50%; */
    /*transform: translate(-50%, -50%); */
    background-image: linear-gradient(to right, red, yellow);
    border-radius: 100%;
}
.backdrop-box{
    background-color: #ffffff;
    width: 230px;
    height: 70px;
    position: absolute;
    bottom: 20px;
    right: 40px;
    z-index: 9;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}




/*👉 FEATURE SECTION */

.feature-item-image {
    margin-top: -250px;
    border-radius: 15px;
    overflow: hidden;
}
.feature-item-box {
    -ms-flex-preferred-size: calc(33.33333% - 30px);
    flex-basis: calc(33.33333% - 30px);
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s ease-in-out;
}
.feature-item-box-bg {
    overflow: hidden;
    position: relative;
    padding: 50px 25px 25px 25px;
}
.feature-item-box .sub-heading {
    overflow: hidden;
    color: var(--purple);
    z-index: 2;
    position: relative;
}
.feature-item-box .paragraph {
    z-index: 2;
    position: relative;
}
.feature-item-box .underline{
    overflow: hidden;
    z-index: 2;
    position: relative;
    background-color: var(--black);
}
.feature-item-box-bg:hover,
.feature-item-box-bg:hover .sub-text,
.feature-item-box-bg:hover .paragraph,
.feature-item-box-bg:hover p{
    text-decoration: none;
    color: var(--white);
    position: relative;
    z-index: 2;
}
.feature-item-box-bg:hover .underline{
    background-color: var(--white);
}
.feature-item-box-bg:hover .feature-item-box-overlays {
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
}
.feature-item-box-overlays {
    height: 128px;
    width: 128px;
    background-color: #f9b234;
    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;
    border-radius: 50%;
    transition: .5s ease-in-out;
}


/*👉 PACKAGE */

.packages-section .section-head{
    align-items: end;
}
.package-card {
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.package-thumbnail{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.package-thumbnail img{
    height: 200px;
    object-fit: cover;
}
.package-content{
    padding: 25px 25px 25px 25px;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.package-content .sub-heading {
    font-weight: 600;
    color: var(--purple);
}
.button-group{
    display: flex;
    align-items: center;
    gap: 20px;
}
.package-price {
    font-size: 12px;
    margin-bottom: 0;
    font-weight: 300;
    color: #fff;
    background-color: var(--purple);
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 6px 10px 6px 15px;
    border: solid 1px #fff;
    border-radius: 20px 0 0 0;
}


/*👉 ABOUT SECTION */

.about-image {
	display: inline-block;
	padding: 25px;
	border-width: 20px;
	border-style: solid;
	border-color: #2F2D2D #434040 #4F4C4C #434040;
	background: #f5f5f5;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#E5E4DF), to(#CDCDC6));
	background-image: -webkit-linear-gradient(#E5E4DF, #CDCDC6);
	background-image: -moz-linear-gradient(#E5E4DF, #CDCDC6);
	background-image: -o-linear-gradient(#E5E4DF, #CDCDC6);
	background-image: linear-gradient(#E5E4DF, #CDCDC6);
	box-shadow: inset 0 2px 5px rgba(0,0,0,.6),0 5px 2px rgba(0,0,0,.1), 0 10px 20px rgba(0,0,0,.8);
	position: relative;
	overflow: hidden;
}
.about-image::before {
	content: "";
	position: absolute;
	top: -175px;
	right: -20%;
	width: 400px;
	height: 400px;
	transform: rotateZ(-40deg);
	-webkit-transform: rotateZ(-40deg);
	-moz-transform: rotateZ(-40deg);
	-o-transform: rotateZ(-40deg);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255,255,255,.4)), to(rgba(255,255,255,0)));
	background-image: -webkit-linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));
	background-image: -moz-linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));
	background-image: -o-linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));
	background-image: linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,0));
}
.about-image img {
	border-width: 2px;
	border-style: solid;
	border-color: #BBBAB4 #C7C7BF #E5E4DF #C7C7BF;
	box-shadow:  0 -1px 1px rgba(0,0,0,.1), 0 1px 1px 1px rgba(255,255,255,.7);
}
.about-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 3px 0;
    font-size: 15px;
}
.about-content li img{
    width: 20px;
}

/*👉 GALLERY SECTION*/

.gallery-section .section-head{
    align-items: end;
}
.lightboxpreview {
    transition: all .3s linear;
    padding-top:60%;
    cursor:pointer;
    background-size:cover;
}
.lightbox-content {
    max-height:75svh;
    height:75svh;
}
.lightbox-close { 
    cursor:pointer;
    margin-left: auto;
    position:absolute;
    right:-30px;
    top:-30px;
    color:white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.modalscale {
    transform:scale(0);
    opacity:0;
}
.lightbox-container, .lightbox-btn, .lightbox-image-wrapper, .lightbox-enabled{
    transition:all .4s ease-in-out;
}
.lightbox_img_wrap {
    padding-top:65%;
    position:relative;
    overflow:hidden;
    margin-bottom: 20px;
}
.lightbox-enabled:hover {
    transform:scale(1.1)
}
.lightbox-enabled {
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    object-fit:cover;
    cursor:pointer;
}
.lightbox-container {
    width:100svw;
    height:100svh;
    position:fixed;
    top:0;
    left:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:rgba(0,0,0,.6);
    z-index:9999;
    opacity:0;
    pointer-events:none;
}
.lightbox-container.active {
    opacity:1;
    pointer-events:all;
}
.lightbox-image-wrapper {
    display:flex;
    transform:scale(0);
    align-items:center;
    justify-content:center;
    max-width:90vw;
    max-height:90vh;
    position:relative;
}
.lightbox-container.active .lightbox-image-wrapper {
    transform:scale(1);
}
.lightbox-btn, #close {
    color:white;
    z-index:9999999;
    cursor:pointer; 
    position:absolute;
    font-size:50px;
}
.left {
    left:50px;
}
.right {
    right:50px;
}
#close {
    top:50px;
    right:50px;
}
.lightbox-image {
    width:100%;
    max-height:95vh;
    object-fit:cover;
}

@keyframes slideleft {
  33% {transform:translateX(-300px);
  opacity:0;
  }
  66% {transform:translateX(300px);
  opacity:0;
  }
}
.slideleft {
     animation-name: slideleft;
    animation-duration: .5s; 
    animation-timing-function: ease; 
}
@keyframes slideright {
  33% {transform:translateX(300px);
  opacity:0;}
  66% {transform:translateX(-300px);
  opacity:0;}
}
.slideright{
    animation-name: slideright;
    animation-duration: .5s; 
    animation-timing-function: ease; 
}


/*👉 INFO FACT */

.info-fact-section .mini-text, .info-fact-section .sub-heading{
    color: var(--white);
}
.info-fact-section .mini-text:before{
    background-color: var(--white);
}
.info-list {
    width: 65%;
}
.info-list .sub-text, .info-list .paragraph {
    color: var(--white);
}
.fact-item {
    border: solid 1px #fff;
    border-radius: 5px;
    padding: 15px;
    margin: 10px 0;
    border-left: solid 10px #4d4089;
    transition: .3s ease-in-out;
}
.fact-item .underline{
    background-color: var(--white);
}
.fact-item .paragraph{
    margin-bottom: 0;
}
.fact-item:hover{
    background-color: var(--purple);
    border: solid 1px #fff;
}

/*👉 FOOD SECTION */

.food-box{
    background-color: #fff;
    height: 230px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.food-box img{
    width: 100%;
    transition: .3s ease-in-out;
}
.food-box:hover img{
    transform: scale(1.5);
    transform: rotate(45deg);
}
.food-box:hover .sub-heading{
    color: var(--purple);
}
.food-slide .sub-text{
    text-align: center;
}


/*👉 EVENT SECTION */

.event-card {
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    position: relative;
    padding: 20px;
    height: 100%;
}
.event-card .paragraph{
    margin: 0;
}
.meta-box {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-start;
}
.meta-box h6{
    font-size: 12px;
    margin: 0;
}

/*👉 TESTIMONIAL SECTION */


.testimonial-card {
    margin-top: 30px;
    padding: 40px 30px 30px 30px;
    background-color: #E7E7E7;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    position: relative;
}
.quote {
    position: absolute;
    top: -30px;
    width: 60px;
}
.testimonial-user {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.testimonial-user i {
    width: 35px;
    height: 35px;
    background-color: #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.testimonial-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-user .sub-text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}
.testimonial-user .paragraph {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
}

/* 👉  CONTACT SECTION  */

.contact-form{
    display:flex; 
    flex-direction:column; 
    gap:15px;
}
.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form select{
    padding:10px; 
    border:1px solid #ccc;
    height: 40px;
    border-radius: 5px;
    font-size: 14px;
}
.contact-form textarea{
    padding:10px; 
    border:1px solid #ccc;
    height: 120px;
    border-radius: 5px;
    font-size: 14px;
}

#inquiryModal.modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center;
}
#inquiryModal .modal-content {
    background: #fff; padding: 20px; width: 90%; max-width: 400px; border-radius: 8px;
    position: relative;
}
#inquiryModal .close-btn {
    position: absolute; top: 10px; right: 15px; cursor: pointer; font-size: 20px;
}

/* 👉  FOOTER SECTION */

.footer-section{
    padding: 50px 0 30px 0;
}
.social-list {
    display: flex;
    gap: 10px;
    align-items: center;
}
.social-list a {
    font-size: 24px;
    color: #333;
}
.footer-menu li a {
    color: var(--black);
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
}
.footer-bottom{
    background-color: var(--purple);
    height: 60px;
}
.footer-bottom .container{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright{
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}
.copyright a{
    color: var(--white);
}
.legal-menus{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.legal-menus li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
}


/* 👉  TRANSITION */

.page-transition {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:#111;
  z-index:9999;
  transform: translateY(100%);
  transition: transform 0.6s ease-in-out;
}
.page-transition.active {
  transform: translateY(0);
}

/* 👉  PAGE LOADER */

#page-loader {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:#0b3d2e; /* jungle green */
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  z-index:99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  color:#fff;
  font-family:'Poppins', sans-serif;
}

/* Boat */
.boat-loader {
  position: relative;
  width: 120px;
  height: 100px;
}

.boat {
  width: 60px;
  height: 20px;
  background: #ffcc66;
  border-radius: 0 0 30px 30px;
  position: absolute;
  top: 40px;
  left: 30px;
  animation: float 2s ease-in-out infinite;
}

.boat::after {
  content:"";
  position:absolute;
  top:-40px;
  left:15px;
  width:5px;
  height:40px;
  background:#fff;
}

.boat::before {
  content:"";
  position:absolute;
  top:-40px;
  left:20px;
  width:25px;
  height:25px;
  background:#cc3333;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* Water Waves */
.water {
  width:100%;
  height:20px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.2) 0 10px,
    transparent 10px 20px
  );
  position:absolute;
  bottom:0;
  animation: wave 1s linear infinite;
  border-radius:50%;
}

.loading-text {
  margin-top:25px;
  font-size:18px;
  letter-spacing:1px;
  animation: blink 1.5s infinite;
}

/* Animations */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-40px); }
}

@keyframes blink {
  0%,100% { opacity:1; }
  50% { opacity:0.5; }
}

/* Hide Loader */
#page-loader.hidden {
  opacity:0;
  visibility:hidden;
}


/*====================================================*/

/* 👉  RESPONSIVE */

/*====================================================*/

@media (max-width: 768px) {

.min-mg {
    margin-top: 10px !important;
}  
.mid-mg {
    margin-top: 20px !important;
}
.feature-section, .packages-section, .about-section, .gallery-section, .info-fact-section, .food-section, .event-section, .contact-section, .testimonial-section {
    padding: 40px 0 !important;
}
.header-block {
    height: 75px;
}
.site-nav {
    position: fixed;
    top: 0;
    right: -250px;
    height: 100%;
    width: 250px;
    background: #fff;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.menu {
    flex-direction: column;
}
.menu li a {
    font-size: 16px;
}
.menu-toggle {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: navajowhite;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.menu-close {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    margin-left: auto;
}
.header-contact{
    display: none;
}
.site-nav.active {
    right: 0;
}
.logo {
    width: 45px;
    margin-top: 0;
}
.banner-heading{
    font-size: 30px !important;
    line-height: 35px !important;
    margin-top: 0 !important;
}   
.banner-section, .heroSwiper.swiper, .banner-content, .heroSwiper .swiper-slide {
    height: 240px !important;
}
.sub-heading {
    font-size: 25px;
    line-height: 30px;
} 
.feature-item-box {
    margin-bottom: 10px;
}
.feature-item-image {
    margin-top: 0 !important;
}
.package-card {
    margin-bottom: 10px !important;
    height: auto !important;
}
.about-image{
    margin-bottom: 20px;
}
.event-card {
    height: auto !important;
    margin-bottom: 10px !important;
}
.footer-bottom {
    height: auto !important; 
}
.footer-bottom .container {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    justify-content: center !important;
    height: auto !important;
}
.package-image{
    margin-top: 20px;
}
.whatsapp-btn {
    font-size: 32px;
    width: 48px;
    height: 48px;
}
}

