:root {
    --primary: #F0472A;
    --body-text-color: #48484A;
    --secondary: #48484A;
    --body-text-light-color: #777777;
    --font-family-gotham: 'Gotham';
    --font-family-gotham-book: 'Gotham Book';
    --blue-cyan: #12F4B7;
    --star-color: #FFCC00;
}
body {
    margin: 0;
    font-family: var(--font-family-gotham-book);
    color: var(--body-text-color);
    /* font-size:18px; */
    font-size:14px;
}
a{
    text-decoration: none;
    color: var(--body-text-color);
}
h1 {
    line-height: normal;
    letter-spacing: -0.2px;
    font-family: var(--font-family-gotham);
    font-size: 42px;
}
h2 {
    line-height: normal;
    letter-spacing: -0.2px;
    font-family: var(--font-family-gotham);
    font-size: 42px;
}
h6 {
    line-height: normal;
    font-family: var(--font-family-gotham);
    font-size: 26px;
    color: var(--body-text-color);
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.btn-primary-shadow{
    box-shadow: 0px 25px 45px 0px rgb(255 170 29 / 8%);
}
.btn{
    padding: 13px 24px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    -webkit-transition: 0.5s; 
    -moz-transition: 0.5s; 
    -o-transition: 0.5s; 
    transition: 0.5s;
    background-color: transparent;
}
.btn.btn-primary{
    color: #FFFFFF;
    border: 3px solid var(--primary);
    background: var(--primary);
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 100px;
    font-family: var(--font-family-gotham);
    line-height: normal;
    box-shadow: 0px 3px 11px 3px #0000002A;
}
.btn.btn-primary:hover{
    background: transparent;
    color: var(--primary);
    -webkit-transition: 0.5s; 
    -moz-transition: 0.5s; 
    -o-transition: 0.5s; 
    transition: 0.5s;
}
.btn.btn-secondary{
    border: none;
    color: var(--body-text-color);
}
.btn.btn-secondary:hover{
    background: linear-gradient(90deg, #12F4B7 0%, #0DD6C0 50%, #05A9EA 100%);
    color: var(--body-text-color);
}
/*Header CSS*/
.site-header nav.navbar button.navbar-toggler {
    padding: 0;
    border: none;
    outline: none !important;
}
.site-header nav.navbar button.navbar-toggler:focus{
    box-shadow: none
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
    background-image: none
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    content: "\00d7";
    font-size: 30px;
}

.site-header {
    position: fixed;
    width: 100%;
    -webkit-transition: 0.5s; 
    -moz-transition: 0.5s; 
    -o-transition: 0.5s; 
    transition: 0.5s;
    top: 0px;
    z-index: 999;
    box-shadow: 5px 2px 20px 5px #00000018;
    background-color: #ffffff;
}
.site-header.sticky{
    background-color: #fff;
    -webkit-box-shadow: 0 8px 16px rgba(10, 10, 10, 0.05);
    box-shadow: 0 8px 16px rgba(10, 10, 10, 0.05);
}

.site-header .navbar-brand img {
    height: 37px;
    -webkit-transition: 0.5s; 
    -moz-transition: 0.5s; 
    -o-transition: 0.5s; 
    transition: 0.5s;
}
.site-header.sticky .navbar-brand img {
    height: 30px;
}
.site-header .menuitems {
    margin-left: 50px;
}
.site-header .menuitems li a {
    text-decoration: none;
    margin-right: 16px;
    color: var(--body-text-color);
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0em;
    -webkit-transition: 0.5s; 
    -moz-transition: 0.5s; 
    -o-transition: 0.5s; 
    transition: 0.5s;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}
.site-header .menuitems:last-child a{
    margin-right: 0px;
}
.site-header .login-link li.header-btn a {
    margin: 0;
    padding: 15px 22px 15px 22px;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    color: #fff;
    border-radius: 10px 10px 10px 10px;
}
.site-header .login-link li.header-btn a:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}
.site-header nav.navbar{
    padding: 0;
}
#header.site-header .menuitems li > a {
    padding: 31.5px 0 31.5px 0;
    -webkit-transition: 0.5s; 
    -moz-transition: 0.5s; 
    -o-transition: 0.5s; 
    transition: 0.5s;
    color: var(--body-text-light-color);
    letter-spacing: 0.3px;
}
#header.site-header .menuitems li > a.nav-link.active,
#header.site-header .menuitems li > a.nav-link:hover,
.site-header .login-link .nav-item a.nav-link.acive,
.site-header .login-link .nav-item a.nav-link:hover {
    color: var(--primary);
}
.site-header.sticky nav.navbar{
    padding: 0;
    -webkit-transition: 0.5s; 
    -moz-transition: 0.5s; 
    -o-transition: 0.5s; 
    transition: 0.5s;
}
#header.site-header.sticky .menuitems li > a{
    padding: 20px 0 20px 0;
}
.site-header .login-link .nav-item a.nav-link {
    font-size: 15px;
    -webkit-transition: 0.5s; 
    -moz-transition: 0.5s; 
    -o-transition: 0.5s; 
    transition: 0.5s;
    color: var(--body-text-light-color);
    line-height: normal;
    letter-spacing: 0.3px;
}
.site-header .login-link .nav-item a.nav-link.header-btn {
    font-size: 15px;
    letter-spacing: 0.3px;
    border: 3px solid var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
}
.site-header .login-link .nav-item a.nav-link.header-btn:hover {
    background-color: var(--primary);
    color: #fff;
}
.site-header .login-link ul.navbar-nav {
    align-items: center;
    column-gap: 15px;
}

/*Footer CSS*/
footer.footer {
    box-shadow: 5px 2px 20px 5px #00000018;
    padding-top: 55px;
    padding-bottom: 30px;
    position: relative;
    z-index: 999;
    background-color: #fff;

}
footer.footer .footer-header-title{
    color: var(--primary);
    font-family: var(--font-family-gotham);
    line-height: 35px;
    letter-spacing: 0.12px;
    text-transform: uppercase;
    font-size: 22px;
}
footer.footer ul li a{
    font-size: 16px;
    line-height: 1.7em;
    letter-spacing: 0.12px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
footer.footer ul li a:hover{
    color: var(--primary);
}
footer.footer .copyright-text {
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.12px;
    margin-top: 30px;
}

/*Home Page CSS*/
.banner-section{
    padding-top: 150px;
    text-align: center;
    padding-bottom: 70px;
    background: linear-gradient(180deg, rgba(131, 224, 238, 0.0001) 24.68%, rgba(101, 205, 226, 0.551355) 75.64%, #4CBDD8 100%);
}
.banner-section h1 {
    margin-bottom: 26px;
}
.banner-section p {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 30px;
}
.banner-section img{
    width: 100%;
}
.banner-section .banner-btn {
    margin-top: 50px;
}
.banner-boxes-section {
    background: #F6F6F6;
    padding-top: 70px;
    padding-bottom: 70px;
}
.banner-boxes-section .banner-box {
    text-align: center;
    padding: 0 32px;
}
.banner-boxes-section .banner-box .icon {
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100px;
    margin: 0px auto 20px auto;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.banner-boxes-section .banner-box .icon img {
    width: 50px;
}
.banner-boxes-section .banner-box p.banner-box-description {
    font-size: 18px;
    line-height: normal;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 0;
}
.banner-boxes-section .banner-box h6{
    margin-bottom: 10px;
    text-transform: uppercase;
}
.banner-boxes-section .banner-box:hover .icon {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 8px 16px rgba(10, 10, 10, 0.05);
    box-shadow: 0 8px 16px rgba(10, 10, 10, 0.05);
}
.testimonial-section {
    padding-top: 55px;
    padding-bottom: 50px;
}
.testimonial-section .testimonial-item {
    background-color: #fff;
}
.testimonial-section .testimonial-item .star-icons {
    margin-bottom: 20px;
    color: var(--star-color);
}
.testimonial-section .testimonial-item p.testimonial-text {
    font-size: 32px;
    line-height: normal;
    letter-spacing: 0.24px;
    font-family: var(--font-family-gotham);
}
.testimonial-section .testimonial-item h5 {
    font-size: 20px;
    line-height: normal;
    font-family: var(--font-family-gotham);
    margin-top: 25px;
    margin-bottom: 0;
}
.testimonial-section .testimonial-item span {
    font-size: 16px;
    font-style: italic;
    font-family: var(--font-family-gotham);
}
.testimonial-section .testimonial-carousel .owl-dots,
.community-section .community-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
    margin-top: 20px;
}
.testimonial-section .testimonial-carousel .owl-dots button.owl-dot,
.community-section .community-carousel .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border: 2px solid var(--primary);
    -webkit-transition: 0.5s; 
    -moz-transition: 0.5s; 
    -o-transition: 0.5s; 
    transition: 0.5s;
    border-radius: 100px;
}
.testimonial-section .testimonial-carousel .owl-dots button.owl-dot:hover,
.community-section .community-carousel .owl-dots button.owl-dot:hover {
    background-color: var(--primary);
}
.testimonial-section .testimonial-carousel .owl-dots button.owl-dot.active,
.community-section .community-carousel .owl-dots button.owl-dot.active {
    width: 40px;
    background-color: var(--primary);
}
.insider-travel-hub-section {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 55px;
}
.insider-travel-hub-section img {
    margin-bottom: 40px;
    width: 100%;
}
.insider-travel-hub-section .description{
    font-size: 25px;
    line-height: normal;
    margin-top: 30px;
    margin-bottom: 50px;
}
.insider-travel-hub-section .insider-travel-hub-box .insider-travel-hub-box-title {
    text-transform: uppercase;
    margin-bottom: 10px;
}
.insider-travel-hub-section .insider-travel-hub-box p.insider-travel-hub-box-description {
    font-size: 20px;
    line-height: 1.4em;
}
.featured-section {
    background-color: var(--secondary);
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}
.featured-section h6 {
    color: #fff;
    font-family: var(--font-family-gotham-book);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.community-section {
    background-color: #F6F6F6;
    padding-top: 60px;
    padding-bottom: 60px;
}
.community-section p.description {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4em;
    margin-bottom: 60px;
    margin-top: 20px;
}
.community-section .community-testimonials {
    text-align: center;
}
.community-section .community-testimonials img {
    width: 220px !important;
    border-radius: 100%;
    margin: 0px auto 20px auto;
}
.community-section .community-testimonials p {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6em;
}
.community-section .community-testimonials p:last-child{
    margin-bottom: 0px;
}
.community-section .community-testimonials p.community-testimonials-name {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-family-gotham);
}
.community-section .community-content {
    height: 100%;
}
.community-section .community-content ul {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 20px;
}
.community-section .community-content ul li {
    position: relative;
    padding-left: 45px;
    font-size: 20px;
}
.community-section .community-content ul li:before {
    content: '';
    position: absolute;
    width: 26px;
    height: 23px;
    top: 8px;
    left: 0;
    background-image: url(../images/checkmark.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.insiders-section {
    background: linear-gradient(180deg, #0A98BA 0%, #4CBDD8 100%);
    padding-top: 60px;
    padding-bottom: 80px;
}
.insiders-section h2 {
    color: #fff;
    margin-bottom: 30px;
}
.insiders-section p.description.text-center {
    font-size: 24px;
    line-height: 1.4em;
    margin-bottom: 30px;
    color: #fff;
}


/*Pricing Page CSS*/
.pricing-banner-section {
    padding-top: 195px;
    text-align: center;
    padding-bottom: 120px;
    background-color: #F8FAFB;
    overflow: hidden;
    position: relative;
    margin-top: 0;
}
.pricing-banner-section img.banner-img {
    position: absolute;
    top: 20px;
    right: 0;
    width: auto;
    height: calc(100% - 20px);
}
.pricing-banner-section p {
    font-size: 22px;
    line-height: normal;
    margin-bottom: 10px;
}
.pricing-banner-section span {
    color: #48484A7F;
    font-size: 18px;
}
.pricing-section {
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
}
.pricing-section .pricing-card {
    background: #D8D8D83F;
    height: 100%;
    position: relative;
}
.pricing-section .pricing-card .popular-label {
    background: #75D26D;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.09px;
    color: #fff;
    text-align: center;
    padding: 6px 0;
    position: absolute;
    top: -33px;
    width: 100%;
}
.pricing-section .pricing-card .pricing-plan-title {
    background: #4CBDD8;
    padding: 30px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    line-height: 40px;
    font-family: var(--font-family-gotham);
    -webkit-transition: 0.5s; 
    -moz-transition: 0.5s; 
    -o-transition: 0.5s; 
    transition: 0.5s;
    position: relative;
    z-index: 2;
}
.pricing-section .pricing-card label.select-plan,
.pricing-section .pricing-card a.select-plan {
    position: absolute;
    bottom: -70px;
    border: none;
    padding: 13px 20px 13px 20px;
    line-height: normal;
    border-radius: 100px;
    left: 0;
    right: 0;
    margin: 0px auto;
    width: fit-content;
    font-size: 15px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    text-transform: uppercase;
    background-color: #f5f5f5;
    transition: 0.5s;
    text-decoration: none;
    color: inherit;
}
.pricing-section .pricing-card .price {
    font-size: 40px;
    line-height: 55px;
    letter-spacing: 0.24px;
    font-family: var(--font-family-gotham);
    text-align: center;
    padding: 50px 10px 10px 10px;
}
.pricing-section .pricing-card p {
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0px;
    text-align: center;
    padding: 20px 20px;
    margin: 0;
}
.pricing-section .pricing-card label.select-plan:hover,
.pricing-section .pricing-card a.select-plan:hover,
.pricing-section .pricing-card.active label.select-plan,
.pricing-section .pricing-card.active a.select-plan{
    border: none;
    background-color: var(--primary);
    color: #fff;
}
.pricing-section .pricing-card.active .pricing-plan-title{
    background: linear-gradient(180deg, #0B98BA 25.3%, #4CBDD8 100%);
}
.pricing-section .pricing-card .plan-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.pricing-section .pricing-card .select-plan {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}
.pricing-section .pricing-card .custom-radio {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(2deg, #7d7d7d 0%, #131313 100%);
    display: inline-block;
    position: relative;
}
.pricing-section .pricing-card .plan-radio + .custom-radio::after {
    content: "";
    width: 14px;
    height: 14px;
    background: linear-gradient(0deg, #cccccc 0%, #ffffff 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}
.pricing-section .pricing-card .pricing-header {
    position: relative;
}
.pricing-section .pricing-card.active .pricing-header span.arrow {
    background: #4CBDD8;
    width: 25px;
    height: 25px;
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    margin: 00px auto;
    transform: rotate(45deg);
    display: block;
}
.plan-include-section {
    padding-top: 30px;
    padding-bottom: 30px;
}
.plan-include-section .plan-include-lists {
    margin-top: 30px;
}
.plan-include-section .plan-include-lists ul li {
    display: flex;
    column-gap: 15px;
}
.plan-include-section .plan-include-lists ul .paln-list-title {
    width: -moz-calc(100% - 257px);
    width: -webkit-calc(100% - 257px);
    width: -o-calc(100% - 257px);
    width: calc(100% - 257px);
    font-size: 20px;
    line-height: 26px;
    padding-bottom: 10px;
    padding-top: 10px;
}
.plan-include-section .plan-include-lists ul li .icon {
    width: 257px;
    text-align: center;
    background: #D8D8D83F;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plan-include-section .plan-include-lists ul li .icon img{
    width: 24px;
}
.faqs-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.faqs-section h2 {
    margin-bottom: 30px;
}
.faqs-section .faqs-list {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 22px;
}
.faqs-section .faqs-list .faqs-question {
    font-family: var(--font-family-gotham);
    font-weight: 500;
}
.answer-label {
    font-weight: 600;  
}

/* Static pages styles — ensure page title is not hidden behind fixed header */
.static-page-section {
    min-height: 60vh;
    padding-top: 180px !important; /* offset for fixed header */
    padding-bottom: 60px;
}

.page-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.content-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-wrapper h1 { color: #1a1a1a; font-size: 2rem; font-weight: 700; margin-top: 2rem; margin-bottom: 1rem; }
.content-wrapper h2 { color: #333; font-size: 1.75rem; font-weight: 600; margin-top: 1.75rem; margin-bottom: 0.875rem; }
.content-wrapper h3 { color: #444; font-size: 1.5rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.content-wrapper p { color: #555; font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.content-wrapper ul, .content-wrapper ol { color: #555; font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; padding-left: 2rem; }
.content-wrapper li { margin-bottom: 0.5rem; }
.content-wrapper a { color: var(--primary); text-decoration: none; }
.content-wrapper a:hover { color: #d13920; text-decoration: underline; }
.content-wrapper strong { font-weight: 600; color: #333; }

@media (max-width: 768px) {
    .static-page-section { padding-top: 100px; }
    .page-title { font-size: 2rem; }
    .content-wrapper { padding: 2rem 1.5rem; }
    .content-wrapper h1 { font-size: 1.75rem; }
    .content-wrapper h2 { font-size: 1.5rem; }
    .content-wrapper h3 { font-size: 1.25rem; }
}

/* About page styles */
.aboutus-page .about-l-area h3 { font-size: 36px; font-family: var(--font-family-gotham); color: #f04826; margin-bottom: 30px; }
.aboutus-page .about-l-area h3 span { color: #404041; }
.aboutus-page .about-l-area p { font-size: 16px; margin-bottom: 20px; }
.aboutus-page p.about-big-font { font-size: 20px; }
.about-team-list ul { margin: 0; padding: 0; list-style: none; }
.about-team-list ul li { background: none; padding: 0; padding-bottom: 30px; }
.about-team-list ul li:last-child { margin-bottom: 0; }
.about-team-img { position: relative; margin-bottom: 15px; }
.about-team-img img { display: block; width: 100%; }
.team-name { position: absolute; bottom: 0; left: 0; background: #ea5333; padding: 0 13px; height: 39px; line-height: 39px; display: inline-block; text-transform: uppercase; color: #fff; font-size: 20px; font-family: var(--font-family-gotham); }
.about-team-desc h4 { font-size: 16px; font-family: var(--font-family-gotham); margin-bottom: 5px; }
.about-team-desc p { font-size: 14px; margin-bottom: 0; }
.about-r-area { text-align: center; padding-top: 70px; }
.about-r-area h3 { color: #f04826; text-transform: uppercase; font-family: var(--font-family-gotham); font-size: 32px; padding: 0 80px; }
.about-r-area h3:after { content: ''; background: #9e9fa3; width: 100px; height: 2px; display: block; margin: 25px auto; }
ul.about-r-list { margin: 0; margin-bottom: 50px; padding: 0; list-style: none; }
ul.about-r-list li { padding: 0; background: none; padding: 0 90px; font-size: 14px; }
ul.about-r-list li h4 { font-size: 16px; font-family: var(--font-family-gotham); color: #f04826; margin-bottom: 5px; }

@media (max-width: 768px) {
    .about-r-area h3 { padding: 0 20px; font-size: 24px; }
    ul.about-r-list li { padding: 0 20px; }
    .about-l-area h3 { font-size: 28px; }
}