@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@300..900&display=swap');


:root {
    --primary: #ffbb00;
    --primary-dark: #dba105;
    --primary-light: #fff6db;
    --color-black: #000;
    --color-white: #fff;
    --light-gray: #c6c6c6;
    --text-gray: #828282;
    --bg-light: #f7f7f7;
    --bg-orange: #dd6f21;
    --gray: #e0e0e0;
    --font-main: "Poppins", sans-serif;
    --font-sub: "Inter", sans-serif;
    --font-fancy: "Sansita Swashed", system-ui;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body,
p,
span,
li,
td,
th {
    font-family: var(--font-sub);
    font-weight: 400;
    color: var(--color-black);


}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    font-weight: 600;

}

button,
a {
    font-family: var(--font-main);
    font-weight: 500;
}

body {
    line-height: 1.7 !important;
}

.nav-tog-btn{
    border: 0 !important;
    width: 40px !important;
    height: 40px !important;
    background-color: var(--primary) !important;
    color: var(--color-white) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px !important;
    font-size: 16px;
    font-size: 21px !important;
}

.section-padding {
    padding: 50px 0;
}


.header .navbar {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
}

/* .header {
    height: 130px;
    background-color: #fff;
} */
.nav-container{
    padding:10px 60px !important;
}
.nav-container .container-fluid{
    padding: 0 !important;
}
.logo-nav img {
    width: 150px;
    /* margin-bottom: 2px; */
}

.logo-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-nav small {
    font-size: 8px;
    font-family: var(--font-sub);
    font-weight: 300;
    color: var(--bg-light);
}

.menu-navbar ul li a {
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
}

.menu-navbar ul li {
    margin: 0 23px !important;
}

.menu-navbar ul li a:hover {
    color: var(--primary);
}

.menu-navbar a.top-nav-btn {
    font-size: 16px;
    padding: 7px 20px;
    border-radius: 40px;
    background-color: var(--primary);
    color: var(--color-white);
    text-decoration: none;
    border: 1px solid var(--primary);
    transition: 0.5s;
}

.menu-navbar a.top-nav-btn:hover {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.baner-main-img {
    width: 100%;
    background-color: var(--primary);
    /* height: calc(100vh - 130px); */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.baner-caption-card {
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px;
}

.baner-caption-card h1 {
    font-size: 70px;
    color: var(--color-white);
    line-height: 80px;
    font-weight: 500;
    text-align: center;

}

.baner-caption-card p {
    font-size: 19px;
    text-align: center;
    color: var(--light-gray);
}

.baner-caption-card h3 {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    font-family: var(--font-sub);
    text-align: center;
}

.home-about-section {
    background-color: var(--bg-light);
}

.home-about-left {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-about-left img {
    width: 60%;
    height: 100%;
    object-fit: cover;
    border-radius: 600px;
    border: 10px solid var(--color-white);
}

.home-about-left .home-aout-secondry-img {
    width: 40%;
    height: 100%;
    padding-left: 20px;
}

.home-about-left .home-aout-secondry-img img {
    height: 50%;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 600px;
    border: 10px solid var(--color-white);
}

.home-about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 40px;
    padding-right: 0;
}

.home-about-right h3 {
    font-size: 24px;
    color: var(--primary);
    font-family: var(--font-fancy);
    margin: 0;
}

.home-about-right h2 {
    font-size: 40px;
    margin: 12px 0;
}

.home-about-right p {
    font-size: 16px;
    font-weight: 400;
}

.home-about-right a {
    width: fit-content;
    padding: 7px 15px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    transition: 0.5s;
}

.home-about-right a:hover {
    border-radius: 40px;
    background-color: var(--primary);
    color: var(--color-white);
}

.section-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-title h6 {
    font-size: 20px;
    font-family: var(--font-fancy);
    color: var(--primary);
}

.section-title h3 {
    font-size: 30px;
    text-align: center;

}

.package-widget-container {
    padding: 20px;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
}

.package-widget-container .package-widget-img {
    height: 280px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.package-widget-container .package-widget-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-widget-container:hover .package-widget-img img {
    transform: scale(1.1);
    transition: 0.5s;

}

.package-widget-container .package-widget-info {
    padding: 10px 0;
}

.package-widget-container .package-widget-info h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 600 !important;


}

.package-widget-container .package-widget-info h4 a {
    font-size: inherit;
    color: var(--color-black);
    text-decoration: none;
    line-height: 30px !important;
    font-weight: inherit !important;
    transition: 0.5s;
}

.package-widget-container .package-widget-info h4 a:hover {
    color: var(--primary);
}

.package-widget-container .package-widget-info p {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--text-gray);
    margin: 10px 0;
}

.package-widget-container .package-widget-info p i {
    margin-top: 5px;
}

.package-widget-container .package-details {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
    border-top: 1px solid var(--light-gray);
}

.package-widget-container .package-details .package-details-left span {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.package-widget-container .package-details .package-details-left h6 {
    font-size: 25px;
    color: var(--primary);
    margin: 1px 0;
}

.package-widget-container .package-details a {
    width: fit-content;
    padding: 7px 15px;
    border: 1px solid var(--primary);
    color: var(--color-white);
    background-color: var(--primary);
    text-decoration: none;
    transition: 0.5s;
    border-radius: 5px;
}

.package-widget-container .package-details a:hover {
    border-radius: 40px;
}

.package-badge {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}

.package-badge span {
    background-color: var(--bg-orange);
    color: var(--color-white);
    padding: 4px 15px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
}

.package-badge span i {
    margin-right: 3px;
}

.package-badge span:last-child {
    background-color: var(--bg-light);
    color: var(--primary);
}

a.view-more-btn {
    width: fit-content;
    padding: 7px 15px;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    background-color: transparent;
    text-decoration: none;
    transition: 0.5s;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
}

a.view-more-btn:hover {
    border-radius: 40px;
    background-color: var(--primary-dark);
    color: var(--color-white);
}


#videoWrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
}

#videoWrapper .baner-video {

    width: 100%;
    height: 100%;
    object-fit: cover;


    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    box-shadow: none;
}

#videoWrapper .video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: #000;
    background: linear-gradient(0deg, rgb(0 0 0 / 42%) 0%, rgb(0 0 0 / 32%) 100%);
}

.why-kerala-left {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -200px;
    position: relative;
    z-index: 2;
}

.why-kerala-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 15px solid var(--color-white);
}

.why-kerala-right h3 {
    font-size: 24px;
    color: var(--primary);
    font-family: var(--font-fancy);
    margin: 0;
}

.why-kerala-right h4 {
    font-size: 18px;
    color: var(--color-black);
    margin: 0;
    margin-top: 10px;
}

.why-kerala-right h2 {
    font-size: 40px;
    margin: 12px 0;
}

.why-kerala-right p {
    font-size: 16px;
    font-weight: 400;
}

.why-kerala-right a {
    width: fit-content;
    padding: 7px 15px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    transition: 0.5s;
}

.why-kerala-right a:hover {
    border-radius: 40px;
    background-color: var(--primary);
    color: var(--color-white);
}

.gallery-container ul {
    justify-content: center;
}

.gallery-container ul,
.gallery-container ul li,
.gallery-container ul li button {
    border: 0 !important;
}

.gallery-container ul li button {
    width: 150px;
    border: 1px solid var(--primary) !important;
    color: var(--primary);
    border-radius: 0 !important;
    font-weight: 500;
}

.gallery-container ul li button.active {
    background-color: var(--primary) !important;
    color: var(--color-white) !important;
}

.gallery-container ul li button:hover {
    background-color: var(--primary-dark) !important;
    color: var(--color-white) !important;
}

.gallery-bx,
.gallery-bx a {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-bx a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-bx a:hover {
    cursor: zoom-in;
}

.gallery-bx a:hover img {
    transform: scale(1.2);
    transition: 0.10s;
    rotate: 5deg;
}

.gallery-video-box {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-video-box iframe,
.gallery-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.faq-box .accordion-item {
    overflow: hidden;
    border: none;
    margin-bottom: 10px;
    background-color: var(--color-white);
    border-radius: 10px !important;
}

.faq-box .accordion-button {
    font-size: 18px;
    box-shadow: none !important;
    background-color: var(--color-white) !important;
    height: 60px;
}

.faq-box .accordion-button:not(.collapsed) {

    font-weight: 600;
    color: var(--primary-dark);
}

.faq-body p {
    font-size: 15px;
    color: var(--color-black);
    margin: 0;
    line-height: 27px;
}

.faq-body ul {
    border: 0;
    width: 100%;
}

.faq-body ul li {
    font-size: 15px;
    line-height: 25px;
    color: var(--color-black);
    margin-bottom: 10px;
}

.faq-body ul li strong {
    margin-right: 5px;
}

.faq-section {
    background-color: var(--bg-light);
}

.faq-left {
    background-color: var(--primary);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: auto;
    position: relative;
    border: 12px solid var(--color-white);
    margin-top: 50px;
}

.faq-left img {
    width: 510px;
    position: absolute;
    bottom: 0;
}

.contact-home-form h3,
.contact-home-right h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.home-contact-field input {
    height: 55px;
    font-family: var(--font-sub);
    font-size: 15px;
    border: 0;
    border: 1px solid var(--text-gray);
    border-radius: 10px;
    font-weight: 500;
}

.home-contact-field input:focus,
.home-contact-field textarea:focus {
    border: 1px dashed var(--primary);
}

.home-contact-field textarea {
    height: 155px;
    font-family: var(--font-sub);
    font-size: 15px;
    border: 0;
    border: 1px solid var(--text-gray);
    border-radius: 10px;
    font-weight: 500;
}

.contact-btn {
    width: 150px;
    padding: 7px 15px;
    border: 1px solid var(--primary-dark);
    color: var(--color-white);
    background-color: var(--primary-dark);
    text-decoration: none;
    transition: 0.5s;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;

}

.contact-btn:hover {
    border-radius: 40px;
    background-color: var(--primary-dark);
    color: var(--color-white);
}


.contact_details_wrapper {
    padding-top: 14px;
}

.contact_detais_item {
    padding: 25px 0;
    border-bottom: 1px solid var(--text-gray);
}

.contact_detais_item h4 {
    font-size: 15px;
    color: #8f8f8f;
    font-weight: 500;
    padding-bottom: 8px;
}

.contact_detais_item h3 a,
.contact_detais_item h3 {
    font-size: 18px;
    text-decoration: none;
    color: var(--color-black);
    margin: 0;
}

.contact_map_area iframe {
    width: 100%;
    height: 200px;
}

.contact_detais_item h3 a span {
    color: var(--primary);
    margin-right: 10px;
    font-size: 19px;
}

.footer {
    padding-top: 50px;
    background-color: var(--bg-light);
}
.footer-logo-widget{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 120px;

}
.footer-logo-widget img{
    width: 220px;
}
.footer-logo-widget small{
   font-family: var(--font-sub);
    font-weight: 300;
    color: var(--color-black);
    font-size: 12px;
    margin-left: 7px;
}
.footer-logo-widget p{
    margin: 5px 0;
    font-size: 15px;
    margin-top: 10px;
    
}
.footer-logo-widget p a{
    color: var(--primary);
}
.footer-widget {
    padding: 10px;
    padding-left: 15px;
}
.footer-widget h3{
    font-size: 24px;
    color: var(--color-black);
}
.footer-widget ul{
    padding: 0;
    margin: 0;
    margin-top: 30px;
    list-style: none;
    padding-left: 25px;
}
.footer-widget ul li{
    margin: 20px 0;
}
.footer-widget ul li a{
    text-decoration: none;
    color: var(--color-black);
    font-size: 15px;
    transition: 0.5s;
}
.footer-widget ul li a i{
    margin-right: 10px;
}
.footer-widget ul li a:hover{
    color: var(--primary);
    margin-left: 4px;
}
.footer-widget ul li p{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.footer-widget ul li p i{
    min-width: 35px;
    height: 35px;
    /* background-color: var(--color-black); */
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.footer-contact ul{
    padding-left: 0;
}
.footer-follow{
    padding: 15px 0;
}
.footer-follow h4{
    font-weight: 600;
    color: var(--color-black);
    font-size: 19px;
}
.footer-follow  ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.footer-follow  ul li a{
    width: 40px;
    height: 40px;
    background-color: var(--color-black);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 10px;
    transition: 0.5s;

}
.footer-follow  ul li a:hover{
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--color-white);
    margin-top: 0;
}
.copyright{
    padding-top: 25px;
    margin-top: 40px;
    border-top: 1px solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}
.copyright p{
    font-size: 15px;
    
}

/* Pages */


.page-main-baner {
    height: 60vh;
    /* background-color: var(--bg-light-blue); */
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 40px;
}

.page-main-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-main-top h2 {
    color: var(--color-white);
    font-size: 36px;
    text-transform: uppercase;
    margin: 0;
}
.page-main-top p{
    font-size: 16px;
    text-align: center;
    color: var(--color-white);
    margin: 0;
}
.bradcrump-cs ol{
    margin: 0;
}
.bradcrump-cs ol li a,.bradcrump-cs ol li{
    color: var(--bg-light);
    text-decoration: none;

}
.breadcrumb-item+.breadcrumb-item::before{
    color: var(--bg-light) !important;
}

/* ABOUT US */

.about-us-left{
    height: 500px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.about-us-left img{
    width: 70%;
    height: 100%;
    object-fit: cover;
}
.about-us-left img.about-center-img{
    position: absolute;
    right: 0;
    width: 300px;
    height: 300px;
    border: 10px solid var(--color-white);
}
.about-us-right{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    flex-direction: column;
}
.about-us-right h2{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}
.about-us-right h6{
    font-size: 20px;
    margin-top: 10px;
}
.about-us-right p{
        font-size: 16px;
    font-weight: 400;
    margin: 0;
}
.about-us-mision-right{
    justify-content: flex-end;
    height: 400px;
}
.about-us-mision-right img.about-center-img{
    position: absolute;
    left: 0;
    right: unset;
    width: 300px;
    height: 300px;
    border: 10px solid var(--color-white);
}
.testimonial-section{
    background-color: var(--primary-light);
}
.testimonial-container{
    padding: 25px;
    background-color: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 15px;
}
.testimonial-container ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.testimonial-container ul li{
    font-size: 20px;
    color: var(--bg-orange);
}
.testimonial-container p{
    margin: 15px 0;
     font-size: 16px;
    font-weight: 400;
}
.testimonial-bottom{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.testimonial-bottom img{
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border-top-left-radius: 0;
    object-fit: cover;
}
.testimonial-bottom h6{
    font-size: 17px;
    font-weight: 600;
}
.testimonial-carousel .item{
    padding: 2px;
}




.carousel-btns .owl-nav {
    width: 100%;
    position: absolute;
    top: 38%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.carousel-btns .owl-nav button {
    width: 45px;
    height: 45px;
    font-size: 35px !important;
    background-color: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 50%;
}


.carousel-btns .owl-nav button.owl-next {
    margin-right: -25px;
}
.carousel-btns .owl-nav button.owl-prev {
    margin-left: -25px;
}


.whatspp-chat-fixed {
    position: fixed;
    bottom: 6%;
    right: 30px;
    display: flex;
    justify-content:center;
    align-items: center;
    width: fit-content;
    border-radius: 40px;
    border: 3px solid #fff;
    text-decoration: none;
    color: #fff;
   z-index: 5000;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    background-color: #25D366;
    transition: 0.5s;
    padding: 4px 12px;
    height: 43px;
}
.whatspp-chat-fixed i{
    font-size: 20px;
}

.whatspp-chat-fixed:hover {
    border-color: #25D366;
    color: #25D366;
    background-color: #fff;
}

/* WHY KERALA */


.why-kerala-main-right h3 {
    font-size: 24px;
    color: var(--primary);
    font-family: var(--font-fancy);
    margin: 0;
}

.why-kerala-main-right h2 {
    font-size: 40px;
    margin: 12px 0;
}

.why-kerala-main-right p {
    font-size: 16px;
    font-weight: 400;
}

.why-kerala-main {
    background-color: var(--primary);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: auto;
    position: relative;
    border: 12px solid var(--color-white);
    margin-top: 80px;
  
}

.why-kerala-main img {
    width: 450px;
    position: absolute;
    bottom: 0;
}

.kerala-core-widget{
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}
.kerala-core-widget img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kerala-core-overlay{
        position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: #000;
    background: linear-gradient(0deg, rgb(0 0 0 / 42%) 0%, rgb(0 0 0 / 32%) 100%);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.kerala-core-overlay h3{
    font-size: 24px;
    color: var(--color-white);
}
.kerala-core-overlay p{
    margin: 0;
     font-size: 16px;
    font-weight: 400;
    color: var(--bg-light);
}

.kerala-core-widget:hover img{
    transform: scale(1.1);
    rotate: 2deg;
    transition: 0.5s;
}
.kerala-core-widget:hover .kerala-core-overlay{
   background: #000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.603) 0%, rgba(0, 0, 0, 0.532) 100%);
}

.kerala-core-widget-two{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 25px;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: 15px;
}
.kerala-core-widget-two .kerala-core-widget-two-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.kerala-core-widget-two .kerala-core-widget-two-icon img{
    width: 60px;
}
.kerala-core-widget-two h3{
     font-size: 24px;
}
.kerala-core-widget-two p{
     margin: 0;
     font-size: 16px;
    font-weight: 400;
}
.why-kerala-season-title h4{
    font-size: 20px;
    margin: 0;
    color: var(--primary);
}
.why-kerala-season-title p{
    max-width: 60%;
     margin: 0;
     font-size: 16px;
    font-weight: 400;
    margin-top: 5px;
}
.why-kerala-info-section{
    background-color: var(--bg-light);
}
.why-kerala-short-info{
    font-size: 16px;
    text-align: center;
}
.why-kerala-short-info-widget{
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 15px;
    height: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}
.why-kerala-short-info-widget .why-kerala-short-info-icon{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    margin-bottom: 15px;
    font-size: 30px;
    color: var(--color-white);

}
.why-kerala-short-info-widget h4{
    font-size: 20px;
    margin: 0;
    margin-bottom: 10px;
    color: var(--primary-dark);
}
.why-kerala-short-info-widget p{
      margin: 0;
     font-size: 16px;
    font-weight: 400;
}
.why-kerala-advance-left{
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.why-kerala-advance-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-kerala-advance-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    height: 100%;
}
.why-kerala-advance-right h3{
        font-size: 24px;
    color: var(--primary);
    font-family: var(--font-fancy);
    margin: 0;
}
.why-kerala-advance-right p{
        font-size: 16px;
    font-weight: 400;
}
.package-gallery-view{
       border-radius: 15px;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.package-gallery-view-img{
    width: 100%;
    height: 450px;
  
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.package-gallery-view-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.gallery-carousel .item{
    padding: 2px;
}
.package-details-info{
   padding-top: 30px;
}
.package-details-info h2{
    font-size: 30px;
}
.package-details-info h3{
    margin: 15px 0;
    font-size: 24px;
    color: var(--primary);
}
.package-details-info h3 span{
    font-size: 18px;
}
.package-details-info ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}
.package-details-info ul li{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}
.package-details-info ul li i{
    color: var(--primary);
}
.package-details-info p{
      font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    margin-top: 15px;
    margin-bottom: 0;
}
.package-enquiry-container{
    padding-left: 20px;
    position: relative;
    height: 100%;

}
.package-enquiry-box{
    padding: 20px;
    border-radius: 10px;
   background: linear-gradient(125deg, rgba(99, 171, 69, 0.1) 0%, rgba(251, 176, 59, 0.1) 100%);
   /*position: sticky;*/
   /*top: 10px;*/
   /*left: 0;*/
}
.package-enquiry-box h6{
    font-size: 18px;
    line-height: 25px;
}
.package-enquiry-field label{
    font-size: 14px;
    font-weight: 600;
}
.package-enquiry-field{
    padding: 5px 0;
}
.package-enquiry-field input{
    height: 50px;
    border-radius: 2px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray) !important;
}
.package-enquiry-field input::placeholder,.package-enquiry-field textarea::placeholder{
    color: var(--text-gray) !important;
}
.package-enquiry-field textarea{
     height: 150px;
    border-radius: 2px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray) !important;
}
.package-enquiry-sub-btn{
    width: 100%;
    height: 50px;
    background-color: var(--primary);
    border: 0;
    color: var(--color-white);
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.package-enquiry-sub-btn:hover{
    border-radius: 40px;
}
.package-details-main-info h3{
    font-size: 24px;
    margin-bottom: 12px;
}
.package-details-main-info ul.inc-exc-ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.package-details-main-info ul.inc-exc-ul li{
    margin: 12px 0;
    font-size: 16px;
    color: var(--text-gray);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
.package-details-main-info ul.inc-exc-ul li i.fa-check{
    color: var(--primary);
}
.package-details-main-info ul.inc-exc-ul li i.fa-xmark{
    color: var(--bg-orange);
}
.package-details-main-info p{
    color: var(--text-gray);
      font-size: 16px;
    font-weight: 400;
}

.package-details-main-info {
    margin-bottom: 10px;
    margin-top: 10px;
}

.package-details-main-info .accordion-item{
    border: 0 !important;
    border-bottom: 1px solid #cccccc8d !important;
}
.package-details-main-info .accordion-body{
   background-color: var(--bg-light);
}
.package-details-main-info .accordion-button{
    font-size: 18px;
    font-weight: 600;
}
.package-details-main-info .accordion-button span{
 min-width: 100px;
 height: 40px;
 background-color: var(--primary);
 margin-right: 15px;
 display: flex;
 justify-content: center;
 align-items: center;
 color: var(--color-white);
 border-radius: 5px;
 font-weight: 600;
}
.package-details-main-info .accordion-button:not(.collapsed){
    background-color: var(--primary-light);
    color: var(--primary);
}
.package-details-main-info .accordion-body p{
    color: var(--color-black);
}
.package-details-main-info .accordion-body ul li{
    color: var(--color-black);
}
.package-details-main-info iframe{
    width: 100%;
    height: 400px;
    border-radius: 5px;
}
.gal-height{
   height: 610px;
}
.gal-height a{
    height: 100%;
}


.contact-us-box{
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 15px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    background-color: var(--primary-light);

  }

  
.contact-us-box h3{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #E5D8CB;
    line-height: 28px;
}
.contact-address{
    padding: 0;
    margin: 0;
    list-style: none;
}
.contact-address  li{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
    color: var(--color-black);
    text-align: left;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
   
}
.contact-address li .contact-ad-icon{
    min-width: 50px;
    min-height: 50px;
    border: 1px solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--primary);
    font-size: 20px;

}
.contact-form{
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact-form p{
    margin: 0;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 14px;
}
.contact-form-box label{
    font-size: 14px;
    font-weight: 600;
   
}
.contact-form-box input{
    border: 1px solid #aeaeae;
    border-radius: 4px;
    height: 45px;
    font-size: 14px;
    font-weight: 500;
}
.contact-form-box input:focus,.contact-form-box textarea:focus{
    border: 1px dashed var(--primary);
}
.contact-form-box textarea{
    height: 190px;
    border: 1px solid #aeaeae;
    font-weight: 500;
    font-size: 14px;

}

.contact-btn{
    width: 185px;
    height: 48px;
    background-color: var(--primary);
    color: var(--color-white);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--primary);
    transition: 0.5s;
    margin: auto;
}
.contact-btn:hover{
    border-radius: 40px;
}
.contact-main-map{
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-main-map iframe{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.contact-a{
    text-decoration: none;
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight:400;
}
.contact-form h3{
        font-size: 24px;
    color: var(--primary);
    font-family: var(--font-fancy);
    margin: 0;
    margin-bottom: 15px;
}

.side-contact-form{
    width: 0;
    height: fit-content;
    background-color:var(--color-white);
    padding: 20px;
    margin-right: -500rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.sidebar-enquiry{
    position: fixed;
    right: 0;
    top: 17%;
    z-index: 5510;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sidebarContactSlide{
    width: 500px;
    transition: 0.5s;
    margin-right: 0;
}
.side-contact{
      width: 150px;
    height: 40px;
    background-color: var(--primary);
    border: 0;
    color: var(--color-white);
    display: flex
;
    justify-content: center;
    align-items: center;
    rotate: 90deg;
    position: absolute;
    left: -94px;

}
.side-contact-top{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.side-close-btn{
    width: 45px;
    height: 45px;
    border: 0;
    background-color: var(--primary);
    color: var(--color-white);
    border-radius: 50%;
}
.side-close-btn:hover{
    background-color: var(--primary-dark);
}

.sidebar-contact-btn{
    width: 100%;
    height: 50px;
    background-color: var(--primary);
    border: 0;
    color: var(--color-white);
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.sidebar-contact-btn:hover{
    border-radius: 40px;
}

.html-overlay{
    background-color: #00000079;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 5000;
    display: none;
}
.overlay-pos{
    position: relative;
}
.custom-pack-modal{
    z-index: 200000  !important;
    background-color: #000000aa;
}

.btn-close-pop{
     width: 45px;
    height: 45px;
    border: 0;
    background-color: var(--primary);
    color: var(--color-white);
    border-radius: 50%;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-bottom: 10px;
}
.btn-close-pop:hover{
    background-color: var(--primary-dark);
}
.custom-pack-modal-content .modal-header-cs{
    padding: 15px;
}
.custom-pack-modal-content .modal-header-cs img{
    width: 200px;
    margin: 10px auto;
    display: flex;

}
.custom-pack-modal-content .modal-header-cs h3{
    font-size: 24px;
    text-align: center;
    margin: 10px 0;
}
.custom-pack-modal-content form{
    padding: 25px;
}
.coustom-pack-pop-form label{
    font-size: 15px;
    color: var(--color-black);
    font-weight: 500;
}
.coustom-pack-pop-form input{
    border: 1px solid #aeaeae;
    border-radius: 4px;
    height: 50px;
    font-size: 14px;
    font-weight: 500;
}
.coustom-pack-pop-form input:focus,.coustom-pack-pop-form textarea:focus{
    border: 1px dashed var(--primary);
}

.custom-pack-sub-btn{
    width: 250px;
    height: 50px;
    background-color: var(--primary);
    border: 0;
    color: var(--color-white);
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    margin: 10px auto;
}
.custom-pack-sub-btn:hover{
    border-radius: 40px;
}




.policy-accordion .accordion-item{
    border: 0 !important;
    border-bottom: 1px solid #cccccc8d !important;
}
.policy-accordion .accordion-body{
   background-color: var(--bg-light);
}
.policy-accordion .accordion-button{
    font-size: 18px;
    font-weight: 600;
}
.policy-accordion .accordion-button span{
 min-width: 50px;
 height: 50px;
 background-color: var(--primary);
 margin-right: 15px;
 display: flex;
 justify-content: center;
 align-items: center;
 color: var(--color-white);
 border-radius: 5px;
 font-weight: 600;
 border-radius: 50%;
}
.policy-accordion .accordion-button:not(.collapsed){
    background-color: var(--primary-light);
    color: var(--primary);
}
.policy-accordion .accordion-body p{
    color: var(--color-black);
}
.policy-accordion .accordion-body ul li{
    color: var(--color-black);
}

.policy-accordion ul{
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 45px;
}
.policy-accordion ul li{
    margin: 8px 0;
    font-size: 16px;
    color: var(--text-gray);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    position: relative;
}
.policy-accordion ul li::before{
    width: 10px;
    height: 10px;
    content: '';
    position: absolute;
    top: 7px;
    left: -20px;
    background-color: var(--primary-dark);
    border-radius: 50%;
}
.package-accordion-list ul {
    list-style:none;
}
.package-accordion-list ul li{
    position:relative;
    margin: 15px 0;
}

.package-accordion-list ul li::before{
        content: '';
    width: 10px;
    height: 10px;
    background-color: var(--primary-dark);
    position: absolute;
    top: 7px;
    left: -18px;
    rotate: 50deg;
}
.package-activity-accordion{
    background-color:#fff;
    padding:12px;
    border-radius:10px;
    border:1px solid #ccc;
}
.package-activity-accordion input{
    width:21px;
    height:21px;
    border-radius:5px;
    border:1px solid #222;
    margin-right:5px;
}
.package-activity-accordion img{
    width:100%;
    height:200px;
    border-radius:5px;
    object-fit:cover;
}

.package-activity-desc{
        color: var(--color-black);
    font-size: 17px;
    font-weight: 400;
    margin-top:5px;
}
.package-activities-title{
       font-size: 18px;
    color: var(--primary);
    font-weight: 600;
}






























