@import url('https://fonts.googleapis.com/css2?family=Anta&family=Assistant:wght@200..800&family=Oxygen:wght@300;400;700&display=swap');


:root {
    --black: rgb(0, 0, 0);
    --darkblue: #110326;
    --blue-500: #312244;
    --white: #FFFFFF;
    --blue-var1: #2BAED8;
    --blue-var2: #1B1B51;
    --blue-var3: #2472E7;
    --orange: #F07C41;
    --secondary: #6914F4;
    --secondary-1: #6D17EF;
    --pink: #F04141;
    --yellow: #F0BF41;
    --darkyellow: #F0B441;
    --purple: #361B51;
    --purple1: #66478F;
    --purple2: #44305F;
    --purple3: #9251F4;
    --purple4: #C661F8;
    --purple5: #B253E3;
    --gradient1: linear-gradient(to right, #6D17EF, #E6744E);
    --gradient2: linear-gradient(to right, #2BAED8 0%, #F11CF6 100%);
    --gradient3: linear-gradient(to right, #F07C41 0%, #6D17EF 100%);
    --leftMargin: 40px;
    --rightMargin: 40px;
    --section-gap: 120px;
    --margin-top: 80px;
    --h1: 32px;
    --h2: 28px;
    --h3: 24px;
    --h4: 20px;
    --h5: 16px;
    --h6: 12px;
    --p: 14px;
}

html,
body {
    margin: 0;
    padding: 0;
    position: relative;
    font-family: "Assistant", sans-serif;
    background-color: var(--darkblue);
    color: var(--white);
    font-weight: 500;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 1800px) and (max-width:2000px) {
    :root {
        --h1: 33px;
        --h2: 29px;
        --h3: 25px;
        --h4: 21px;
        --h5: 17px;
        --h6: 13px;
        --p: 15px;
    }
}

@media (min-width: 2001px) {
    :root {
        --h1: 34px;
        --h2: 30px;
        --h3: 26px;
        --h4: 22px;
        --h5: 18px;
        --h6: 14px;
        --p: 16px;
    }
}

h1,
.h1 {
    font-size: var(--h1);
}

h2,
.h2 {
    font-size: var(--h2);
}

h3,
.h3 {
    font-size: var(--h3);
}

h4,
.h4 {
    font-size: var(--h4);
}

h5,
.h5 {
    font-size: var(--h5);
}

h6,
.h6 {
    font-size: var(--h6);
}

p,
.p {
    font-size: var(--p);
    margin-bottom: 0px;
}

.mt-12 {
    margin-top: 12px;
}

.logo {
    height: 40px;
}

#header.nav-wrapper {
    top: 0;
    z-index: 9999;
}

#header.nav-wrapper>div {
    flex-wrap: inherit;
    padding-top: 15px;
    padding-bottom: 15px;
    background: #21172F;

}

.navbar .navbar-nav .nav-link {
    color: #908b97;
    font-weight: 400;
    font-size: var(--h5);
    font-family: "Anta", sans-serif;
}

.navbar-toggler {
    background-color: transparent !important;
    border: none;
    box-shadow: none !important;
    cursor: pointer;
    display: flex;
    --bs-navbar-toggler-padding-x: 0px;
}

.nav-wrapper {
    background: #21172F;
}

.nav-wrapper.wrapped {
    background: #21172F;
    padding-bottom: 1.5rem !important;
}

.navbar-toggler .line {
    fill: none;
    stroke: var(--white);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.navbar-toggler .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.navbar-toggler .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.navbar-toggler.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.navbar .nav-link.active {
    color: var(--white) !important;
    position: relative;
}

.navbar .nav-link.active::before {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background: var(--gradient3);
    transition: 0.5s transform ease;
    transform: scale3d(1, 1, 1);
    transform-origin: 100% 50%;
    border-radius: 4px;
}



.navbar .navbar-nav .nav-link:hover {
    color: var(--white);
}

.nav-item a:hover::before {
    transform: scale3d(1, 1, 1);
    background: var(--gradient3);
}

.menu a {
    text-decoration: none;
    display: block;
    position: relative;
    padding: 4px 0;
}

.menu a::before {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background: var(--white);
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
}

.menu-1 a:before {
    /* background: var(--gradient3); */
    transform-origin: 100% 50%;
    z-index: 999999;

}

.menu-1 a:hover::before {
    transform-origin: 0 50%;
    border-radius: 4px;
}

a {
    text-decoration: none;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}



::-webkit-scrollbar {
    width: 8px;
    height: 61px;
}

::-webkit-scrollbar-thumb {
    border-radius: 24px;
    background: #512D86;
    /* Background of the track (scrollbar container) */
}

.grid-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 40px;
    row-gap: 100px;
    justify-content: center;
    /* Horizontally centers the grid content */
    align-items: center;
    /* Vertically centers the grid items */
}

/* Centering the content inside each grid item */
.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Horizontally centers the content */
    justify-content: center;
    /* Vertically centers the content */
    gap: 16px;
    width: 184px;
    height: 190px;
    border-radius: 8px;
    text-align: center;
    /* Ensures text inside is centered */
}

.grid-item div {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 44px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 80px;
}

.grid-item:hover div {
    background: linear-gradient(278.42deg, #E6744E -39.16%, #6D17EF 79.58%);
}

.grid-item:hover img {
    width: 80px;
    height: 80px;
    transition: 0.5s;
}




.grid-item h5 {
    font-family: 'Oxygen';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

/* footer */
footer {
    background: url("/assets/images/footer-bg.png") no-repeat bottom center;
    background-size: calc(100% + 200px) calc(100% + 15px);
    font-size: 18px;
    padding-top: 110px;
    padding-bottom: 80px;
    margin-top: 120px;
    position: relative;
    z-index: 1;
    background-position-y: 0px;
}

footer .footer-logo {
    width: 192.58px;
    height: 40px;
}

.footer-links ul li {
    list-style-type: none;
}

.footer-links ul li a {
    text-decoration: none !important;
    transition: var(--transition);
    font-family: 'Anta';
    font-weight: 400;
    font-size: 18px;
    color: #908b97;
}

.footer-text {
    font-family: 'Anta';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    opacity: 0.8;

}

.footer-links ul li a:hover {
    color: white !important;
}

.copyright {
    background-color: #1B1B1B;
    padding-block: 10px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.514);
    font-size: var(--p);
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-carousel button.owl-dot {
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    font-size: 6px !important;
    width: 14px;
    height: 14px;
    background: #392e4a;
    border-radius: 20px;
    margin: 5px;
    transition: 0.5s ease-in-out;
}

.owl-carousel button.owl-dot:hover {
    background-color: var(--orange);
}

.owl-carousel button.owl-dot.active {
    background-color: var(--orange);
}


.dropdown-toggle::after{
content: none;
}

.btn-style-1 {
    height: 48px;
    padding: 10px 16px 10px 16px;
    gap: 16px;
    border-radius: 4px;
    background: linear-gradient(90deg, #F07C41 0.59%, #6D17EF 100.59%);
    border: none;
    transition: all ease 1s;
    color: white;
}

.btn-style-1:hover {
        transition: all ease 1s;
    background: linear-gradient(270deg, #F07C41 0%, #6D17EF 100%);
}
.schedule-btn {
    color: white;
    font-size: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 16px;
    isolation: isolate;
    width: 243px;
    height: 40px;
    background: linear-gradient(90deg, #F07C41 0.59%, #6D17EF 100.59%);
    border-radius: 4px;
}

.schedule-btn:hover {
    background: linear-gradient(270deg, #F07C41 0%, #6D17EF 100%);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px rgb(73, 56, 94) inset !important;
    caret-color: #fff;
}
@media (max-width: 700px) {
    :root {
        --leftMargin: 10px;
        --rightMargin: 10px;
        --margin-top: 30px
    }

    .grid-row {
        row-gap: 50px;
    }
}

@media (min-width: 1500px) {
    :root {
        --leftMargin: calc(40px * 4);
        --rightMargin: calc(40px * 4);
    }
}

@media (min-width: 2000px) {
    :root {
        --leftMargin: calc(40px * 8);
        --rightMargin: calc(40px * 8);
    }
}

@media (min-width: 2500px) {
    :root {
        --leftMargin: calc(40px * 12);
        --rightMargin: calc(40px * 12);
    }
}

.custom-inner-container {
    padding-left: 80px;
    padding-right: 80px;
}

@media (min-width: 2200px) {
    .custom-inner-container {
        padding-left: 15vw;
        padding-right: 15vw;
    }
}

@media (max-width: 1800px) {
    .logo {
        height: 40px;
    }
}

@media (max-width: 1000px) {
    .custom-inner-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 550px) {
    .custom-inner-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    footer,
    .navbar {
        zoom: 0.8;
    }
}

/* ::-webkit-scrollbar {
    width: 10px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background-color: #f2f2f200;
} */

/* tooltip color */
.custom-tooltip .tooltip-inner {
    background-color: rgb(19, 4, 39);
    max-width: 27vw;
    min-width: 300px;

}

.custom-tooltip .tooltip-arrow {
    --bs-tooltip-bg: rgb(19, 4, 39);
}
/* custom select */
.custom-select,
.custom-select1 {
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    color: #fff;
    border-radius: 4px;
    width: 48.5%;
    padding: 8px;
    font-size: var(--p);
    border: 1px solid rgb(87, 75, 98);
    min-width: 164px;
    fill: white;
    background-image: url('data:image/svg+xml,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" ><path d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>');
    background-repeat: no-repeat;

}

.custom-select:focus,
.custom-select1 {
    color: #fff !important;
    box-shadow: none !important;
    background-color: #453856 !important;
    border: 1px solid #66478F !important;

}

.custom-select option,
.custom-select1 option {
    background-color: #4F3870;;
    color: #fff;
    border: 1px solid #66478F !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 8px;
    padding: 6px;

}



.custom-select option:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.nice-select:after {
    border: none;
}

.nice-select:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.nice-select .list {
    width: 100%;
    background-color: #4F3870;;
    border: 1px solid #333;
    font-size: var(--h5);
    font-weight: 400;
    overflow-y: auto;

}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: rgb(135 64 242 / 84%);
    color: #fff;
}

.nice-select .option.selected {
    font-weight: 600 !important;
    /* color: var(--orange) !important; */
}

.nice-select {
    font-weight: 500;
    border: none;
}
.nice-select .option {
    padding: 2px 8px;
}


/*=============================== home.css ======================================*/

.header-container {
    width: 100%;
    height: 800px;
    margin-top: 104px;
    background: #21172F;
    overflow: hidden;
    /* Ensures content stays within the container */
    position: relative;
}

.gradient-1 {
    position: absolute;
    left: 0;
    width: 100%;
    height: 152px;
    background: linear-gradient(180.42deg, rgba(0, 0, 0, 0) 0.1%, rgba(103, 7, 226, 0.24) 99.37%);
    transform: rotate(-180deg);
}

.gradient-2 {
    position: absolute;
    width: 100%;
    height: 152px;
    left: 0px;
    bottom: 0px;
    background: linear-gradient(180.42deg, rgba(0, 0, 0, 0) 0.1%, rgba(103, 7, 226, 0.24) 99.37%);

}

.navbar {
    width: 100%;
    height: 104px;
    left: 0px;
    top: 0px;
    background: #21172F;

}



.header-right-content {
    max-width: 600px;
    width: 100%;
    gap: 40px;
    display: flex;
}

.header-left-content {
    padding: 0px;
    max-width: 980px;
    width: 100%;
    height: 800px;
}

.gradient-heading {
    font-family: 'Anta';
    font-style: normal;
    font-weight: 400;
    font-size: 64px;
    line-height: 64px;
    background: linear-gradient(90.62deg, #F07C41 20.81%, #6D17EF 114.52%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

}

.gradient-heading-2 {

/* Heading/medium */
font-family: 'Anta';
font-style: normal;
font-weight: 400;
font-size: 56px;
line-height: 64px;
/* identical to box height, or 114% */
text-align: center;
/* Gradient Heading */
background: linear-gradient(90.62deg, #F07C41 20.81%, #6D17EF 114.52%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;


}

.header-right-content-1 {
    padding: 0px;
    width: 280px;
    /* height: 1055px; */
    /* margin-top: -255px; */
    animation: scrollUp 35s linear infinite alternate;
    /* Scroll upward */
}

#packages,
#aboutus,
#portfolio,#faq,#lastdiv{
    padding-top: 120px;
}

.header-right-content img {
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 40px;
    min-height: 360px;
    width: 280px;
    max-height: 360px;
}

.header-right-content-2 {
    padding: 0px;
    width: 280px;
    /* height: 960px; */
    /* margin-top: -160px; */
    animation: scrollDown 35s linear infinite alternate;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0%);
        /* Start below */
    }

    100% {
        transform: translateY(-50%);
        /* End above */
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
        /* Start below */
    }

    100% {
        transform: translateY(0%);
        /* End above */
    }
}

.nav-link:hover {
    color: var(--white);
}

.menu1 a {
    text-decoration: none;
    display: block;
    position: relative;
    padding: 4px 0;
}

.menu1 a::before {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background: var(--white);
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
}

.menu1 .nav-link.active {
    color: var(--white) !important;
    position: relative;
}

.menu1 .nav-link.active::before {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background: var(--gradient3);
    transition: 0.5s transform ease;
    transform: scale3d(1, 1, 1);
    transform-origin: 100% 50%;
    border-radius: 4px;
}

.filter-tabs {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 40px;
    margin-top: 64px;
}

.filter-tabs a {
    font-family: 'Anta';
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    min-width: max-content;
}

.filter-tabs a.nav-link.active {
    color: #F07C41 !important;
}

.filter-tabs .nav-link.active::before {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background: #F07C41;
    transition: 0.5s transform ease;
    transform: scale3d(1, 1, 1);
    transform-origin: 100% 50%;
    border-radius: 4px;
}

.filter-tabs .nav-link path {
    fill: #908b97;
}

.filter-tabs .nav-link:hover path {
    fill: white;
}

.filter-tabs .nav-link.active path {
    fill: #F07C41;
}

.package-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
    isolation: isolate;
    max-width: 1200px;
    width: 100%;
    height: 352px;
    background: #2E184E;
    border-radius: 16px;
    margin-top: 40px;
}

.package-card .card-img {
    max-width: 320px;
    width: 100%;
    object-fit: cover;
    height: 320px;
    border-radius: 8px;
}

.package-card .card-title {
    line-height: 32px;
    font-size: 24px;
    font-weight: 700;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.faq-section .accordion-button::after {
    transition: all 0.5s;
}

.accordion-row {
    scroll-behavior: smooth;
    column-count: 1;
    column-gap: 20px;
}

.faq-section .accordion .accordion-item {
    display: inline-block;
    width: 100%;
    /* margin-bottom: 2rem; */
    background: transparent;
    border-radius: 8px;
    color: var(--white);
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.137);
    line-height: 32px;
}

.faq-section .accordion .accordion-header,
.faq-section .accordion .accordion-button {
    font-weight: 700px;
    height: 84px;
    font-size: 18px;
    background: transparent;
    color: var(--white);

}

.faq-section .accordion .accordion-header:hover {
    background: #6533A6;
    border-radius: 8px;
}

.faq-section .accordion-button:not(.collapsed),
.faq-section .accordion-header:not(.collapsed) {
    color: var(--white);
    background: transparent;
    box-shadow: none;
}

.faq-section .accordion-button .collapsed,
.faq-section .accordion-button:not(.collapsed) {
    color: var(--white);
    background: #6533A6;
    box-shadow: none;
    border-radius: 8px 8px 0 0;
}

.title-desc {
    font-size: var(--h3);
}

.faq-section .accordion-body {
    background: #6533A6;
    border-radius: 0 0 8px 8px;
}

.faq-section .accordion p {
    font-weight: 300;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}


.owl-carousel3 img {
    border-radius: 32px;
}

/* eligibilityModal */
.modal .modal-content {
    background-color: #271938;
    border: 1px solid rgb(102, 71, 143);
    border-radius: 8px;
}

.modal .cancel-btn {
    width: 104px;
    height: 40px;
    padding: 0px 16px 0px 16px;
    gap: 8px;
    border-radius: 24px;
    color: #fff;
    background-color: #FFFFFF33;

}

.modal .apply-btn {
    width: 110 px;
    height: 40px;
    padding: 0px 16px 0px 16px;
    gap: 8px;
    border-radius: 24px;
    background: linear-gradient(90deg, #F07C41 0.59%, #6D17EF 100.59%);
    border: none;
    color: #fff;
}

.modal .apply-btn:hover {
    border: 1px solid;
    background: rgb(69, 56, 86);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    outline-offset: 15px;
    outline-color: rgba(255, 255, 255, 0);
    text-shadow: 1px 1px 2px #427388;
}

.modal .toggle-items {
    height: 40px;
    padding: 4px 16px;
    font-size: var(--p);
    font-weight: 600;
    background-color: #FFFFFF33;
    max-width: fit-content;
    border-radius: 24px;
    cursor: pointer;
    line-height: 24px;
    display: flex;
    align-items: center;
}

.modal .toggle-items:hover {
    background-color: #fff;
    color: var(--orange);
}

.modal .toggle-items.active {
    background-color: var(--orange);
    color: white;
}

#communityMembersModal .options-container {
    max-height: 509px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.recommendedForm .form-label {
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 992px) {
    .accordion-row {
        column-count: 1;
        column-gap: 20px;
    }
}

@media (max-width: 1400px) {
    .header-right-content {
        display: none;
    }
}

@media (max-width: 767px) {
    /* .header-left-content {
        padding-top: 100px;
        height: 600px;
    } */
    .header-container {
        margin-top: 64px;
    }
    .owl-carousel3 img {
        border-radius: 2px;
    }

    .package-card {
        height: 100%;
    }

    .package-card .card-img {
        max-width: 100%;
    }

    .filter-tabs {
        width: 100%;
        display: flex;
        flex-direction: row;

    }

    .gradient-heading {
        font-size: 44px;
        text-align: center;
    }

    .gradient-heading-2 {
        font-size: 33px;
    }

    .title-desc {
        font-size: var(--h4);
        text-align: center;
    }

    .schedule-btn {
        margin-right: auto;
        margin-left: auto;
        zoom: 0.8;
    }

    .package-card .card-title {
        font-size: 20px;
        text-align: center;
    }

    /* .header-container {
        height: 700px;
    } */
    #packages,
    #aboutus,
    #portfolio,#faq,#lastdiv{
        padding-top: 80px;
    }
}


/* recommended package model */
#recomPackageModal .modal-body .option {
    padding: 8px 16px;
    background-color: rgb(60, 48, 76);
    border-radius: 24px;
    cursor: pointer;
}

#recomPackageModal .modal-body .option:hover,
#recomPackageModal .modal-body .option.active {
    background-color: rgb(105, 28, 244);
}

.error-msg {
    color: var(--pink);
}

#recomPackageModal2 #myTab .nav-item .nav-link {
    color: rgb(147, 140, 156);
    border: none;
    background-color: transparent !important;
}

#recomPackageModal2 #myTab .nav-item .nav-link:hover {
    color: #fff;
    border: none;
}

#recomPackageModal2 #myTab .nav-item .nav-link:hover svg path {
    fill: #fff;
}

#recomPackageModal2 #myTab .nav-item .nav-link.active {
    color: #D9B124;
    border-bottom: 2px solid #D9B124;
}

#recomPackageModal2 #myTab .nav-item .nav-link.active svg path {
    fill: #D9B124;
}

.dry-background,
.other-packages-body .card {
    background-color: rgb(70, 53, 96);
    padding: 16px;
    border-radius: 8px;
}

.other-packages-body .card {
    padding: 8px;
    max-width: 17rem;
}

.other-packages-body .card-body {
    padding: 16px 0px 0px 0px;
}

.other-packages-body {
    max-height: 510px;
    overflow: auto;
}

.other-packages-body .para {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    max-height: calc(1.2em * 4);
    line-height: 1.2em;
}

.dry-background .card {
    background-color: transparent;
    border: none;
}

.dry-background img {
    object-fit: cover;
}

#recomPackageModal2 .body-content,
#packageDetailModal1 .body-content,
#packageDetailModal2 .body-content {
    max-height: 455px;
    overflow: auto;
    padding: 0 16px;
    overflow-x: hidden;
}

#recomPackageModal2 .modal-header,
#recomPackageModal2 .modal-footer {
    padding: 24px;
}

#recomPackageModal2 .modal-footer,
#packageDetailModal2 .modal-footer {
    background-color: rgb(60, 48, 76);
    padding-top: 12px;
    padding-bottom: 13px;
}


#recomPackageModal2 .table-responsive th,
#recomPackageModal2 .table-responsive td,
#packageDetailModal1 .table-responsive th,
#packageDetailModal1 .table-responsive td,
#packageDetailModal2 .table-responsive th,
#packageDetailModal2 .table-responsive td {
    background-color: transparent;
    color: white;
    border: none;
}

#recomPackageModal2 .table-responsive::-webkit-scrollbar,
#packageDetailModal2 .table-responsive::-webkit-scrollbar {
    height: 12px;
}


#recomPackageModal2 .table-responsive::-webkit-scrollbar-thumb,
#packageDetailModal2 .table-responsive::-webkit-scrollbar-thumb {
    background: rgb(106, 79, 146);
    border-radius: 6px;
}

#recomPackageModal2 .border-line::before,
#packageDetailModal1 .border-line::before,
#packageDetailModal2 .border-line::before {
    content: '';
    border-bottom: 1px solid rgb(107, 93, 128);
    display: block;
}

.light-dark {
    color: rgb(157, 151, 165);
}

#recomPackageModal2 .other-packages-body {
    padding: 22px;
    padding-top: 0px;
}

@media (max-width: 400px) {

    #recomPackageModal2 .modal-header,
    #recomPackageModal2 .modal-footer {
        padding: 8px;
    }

}