.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.ps-3 {
    padding-left: 1rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 8px;
    color: #6c757d;
}

.breadcrumb a {
    color: #0d6efd;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Bootstrap-like gutters baseline */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

/* Apply gutters to direct children */
.row>* {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(0.5 * var(--bs-gutter-x));
    padding-left: calc(0.5 * var(--bs-gutter-x));
    margin-top: var(--bs-gutter-y);
}

/* Utilities used in your snippet */
.mt-0 {
    margin-top: 0 !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

/* col-6 used in your snippet */
.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.gy-3 {
    --bs-gutter-y: 1rem;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.gx-3 {
    --bs-gutter-x: 1rem;
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.gy-2 {
    --bs-gutter-y: .5rem;
}

.g-3 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.card-img-top {
    width: 100%;
    height: auto;
    display: block;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem;
}

.accordion {
    --bs-accordion-border-color: rgba(0, 0, 0, 0.125);
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 0.375rem;
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item {
    background-color: #fff;
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item:first-of-type {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:last-of-type {
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    border-bottom-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item+.accordion-item {
    border-top: 0;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: 1rem;
    color: inherit;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    cursor: pointer;
}


.accordion-button:focus {
    outline: 0;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

/* Bootstrap chevron icon using inline SVG (no external asset) */
.accordion-button::after {
    content: "";
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    transform: rotate(-180deg);
    /* open state */
}

/* collapsed state */
.accordion-button.collapsed::after {
    transform: rotate(0deg);
}

/* body */
.accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.collapse {
    height: 0;
    overflow: hidden;
    transition: height 0.25s ease;
}

.collapse.show {
    height: auto;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.25s ease;
}

@media (min-width: 768px) {
    .mt-md-0 {
        margin-top: 0 !important;
    }

    .ps-md-0 {
        padding-left: 0 !important;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .gy-md-0 {
        --bs-gutter-y: 0;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }
}

@media (min-width: 992px) {
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .gy-lg-4 {
        --bs-gutter-y: 1.5rem;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }
}

@media (min-width: 1400px) {
    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .gy-xxl-0 {
        --bs-gutter-y: 0;
    }
}

a {
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto
}

body {
    line-height: 1.2;
}

p {
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 1rem;
}

button {
    font-family: inherit;
}

.hero-wrapper {
    height: calc(100vh - 84px);
    margin-top: -40px;
    position: relative
}

.bread-nav {
    position: relative;
}

.guide-map {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    object-position: right -130px bottom -50px;
    z-index: -10
}

.hero-content {
    position: absolute;
    left: 0;
    top: 8%;
    z-index: 10
}

.heading_wrapper {
    max-width: 55%;
}

.heading_wrapper img {
    margin: 0 0 0 0.5rem;
    max-width: 40px;
}

.heading_wrapper img {
    transition: transform 0.4s ease;
}

h1 {
    font-size: 40px;
    font-weight: 800;
    color: #0f6464;
    display: inline;
}

.hero-sub-text {
    max-width: 600px;
    margin: 0 0 10px;
    font-size: 18px
}

.book-now-btn {
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    background-color: #27BDBE;
    border-radius: 12px;
    padding: 16px 20px
}


/* for btn */
.fold-button {
    display: block;
    width: fit-content;
}

.sub-text {
    color: #FFFFFF;
}

.yellow-text {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.new_top picture img {
    border-radius: 16px;
}

.green_text {
    font-weight: 700;
    color: #0F6464;
    max-width: 420px;
    margin: 2rem 0 0 auto;
}

.new_top {
    display: flex;
    align-items: center;
    justify-content: unset;
    align-items: stretch;
    max-width: 50%;
    margin-top: 2rem;
}

.gray_section {
    border-radius: 16px;
    padding: 2rem;
    background-image: url("../../images/sri-lanka-holiday/new-top-symbol.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-color: #D5CB2C;
}

.sub_text {
    font-size: 34px;
    font-weight: bold;
    color: #0f6464;
}

.sub_text span {
    color: #27bdbe;
}

.rate_row {
    display: flex;
    align-items: center;
    justify-content: unset;
    gap: 1.5rem;
    margin-top: 2rem;
}

.rate_wrapper {
    margin-top: 1.5rem;
}

.lable {
    font-weight: bold;
}

.rate {
    font-size: 24px;
    font-weight: bold;
}

.rate sub {
    font-size: 16px;
    bottom: -0.05em;
}

.more_deals {
    background-color: #ffffff;
    padding: 14px 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: unset;
    gap: 0.5rem;
    font-weight: bold;
    color: #000000;
    border: 1px solid #d5cb2c;
}

.quote_btn {
    background: #27bdbe;
    border-radius: 6px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: unset;
    gap: 1rem;
    font-weight: bold;
    color: #ffffff;
    width: fit-content;
}

.b-wrapper {
    border: solid #d9d9d9;
    border-width: 1px 0;
}

.featured-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 25px 0;
    background-color: #fff;
    overflow-x: auto;
    overflow-y: hidden;
}

.featured-text {
    font-size: 20px;
    font-weight: 700;
    color: #828282;
}

main section {
    margin-top: 4rem;
}

main section:first-child {
    margin-top: 7rem;
}

h2 {
    font-size: 34px;
    font-weight: bold;
    color: #0f6464;
}

.whyus_section h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.3;
}

.option_item img,
.option_item span {
    display: block;
}

.option_item span {
    font-weight: bold;
    margin-top: 0.8rem;
}

.option_item p {
    margin-top: 0.5rem;
}

.travel_item {
    position: relative;
}

.travel_item img {
    transition: transform 300ms ease;
}

.travel_item .img_wrapper {
    border-radius: 6px;
}

.travel_item .img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel_item img:hover {
    transform: scale(1.1);
}

.travel_title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    padding: 0.5rem;
    border-radius: 6px;
    background-color: rgba(39, 189, 190, 0.3);
    backdrop-filter: blur(4px);
    margin-bottom: 0;
    white-space: nowrap;
}

.img_wrapper {
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

.package_cards {
    display: flex;
    justify-content: unset;
    gap: 1rem;
    flex-wrap: wrap;
}

.package_cards>* {
    flex: 1 1 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    position: relative;
}

.card_header {
    min-height: 81px;
}

.package_cards hr {
    opacity: 1;
    color: #d9d9d9;
}

.package_title {
    font-size: 22px;
    color: #000000;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.package_highlight {
    font-size: 15px;
    font-weight: bold;
    color: #828282;
}

.package_highlight span {
    color: #f89420;
}

.p_card_img {
    border-radius: 6px 6px 0 0;
    width: 100%;
    object-fit: cover;
}

.p_card_content {
    background-color: #f5f5f5;
    padding: 0.8rem;
    border-radius: 0 0 6px 6px;
}

.p_card_content p {
    font-size: 14px;
    margin-bottom: 0;
}

.clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* show only 2 lines initially */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.toggle-text {
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    color: #27bdbe;
    font-weight: bold;
    text-decoration: underline;
}

.p_card_title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.price_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.price_type {
    display: flex;
    align-items: center;
    justify-content: unset;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: bold;
}

.package_price {
    display: flex;
    align-items: center;
    justify-content: unset;
    gap: 0.5rem;
}

.price_lable {
    font-size: 14px;
}

.price_box {
    display: flex;
    flex-direction: column;
    row-gap: .1rem;
}

.strike_price {
    font-size: 14px;
    color: #828282;
}

.strike_price s {
    color: inherit;
}

.save {
    font-size: 14px;
    font-weight: bold;
    color: #f89420;
}

.price {
    font-size: 20px;
    font-weight: bold;
}

.list-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.list-modal hr {
    margin: .5rem 0;
}

.list-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
}

.modal_title {
    font-size: 16px;
    font-weight: bold;
}

.list-modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

.tick_list,
.modal_tick_list {
    margin: 0;
    padding: 0;
}

.tick_list li,
.modal_tick_list li {
    list-style-type: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: unset;
    gap: 0.2rem;
    margin-bottom: .5rem;
}

.tick_list li span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tick_list li::before,
.modal_tick_list li::before {
    content: "";
    display: block;
    width: 12px;
    height: 15px;
    background-image: url("https://dcsb59fztkcs1.cloudfront.net/arabiersLk/dubai-holiday/tick.png");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

.view_more_btn {
    font-size: 14px;
    color: #27bdbe;
    font-weight: bold;
    text-decoration: underline;
}

.btn_wrapper {
    margin-top: .5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.p_card_whatsapp {
    background-color: #25D366;
    padding: 10px 10px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.view_deal {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: #ffffff;
    padding: 10px 10px;
    background-color: #27bdbe;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.p_card_whatsapp::before {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    background-image: url('https://dcsb59fztkcs1.cloudfront.net/arabiersLk/dubai-holiday/whatsapp.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.p_card_whatsapp:hover {
    box-shadow: 0 0 15px 5px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
}

.view_deal:hover {
    box-shadow: 0 0 15px 5px rgba(39, 189, 190, 0.6);
    transform: translateY(-2px);
}

.number {
    background-color: #f5f5f5;
    border-radius: 6px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
}

.hor_striped_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.hor_striped_table th,
.hor_striped_table td {
    border-bottom: 8px solid #ffffff;
    border-left: none;
    border-right: none;
    padding: 8px 12px;
    font-size: 14px;
}

.hor_striped_table.rates th,
.hor_striped_table.rates td {
    width: 10%;
}

.hor_striped_table tr:last-child td {
    border-bottom: 0;
}

.hor_striped_table thead th {
    background-color: #8ad4df;
    font-weight: 600;
}

.hor_striped_table tbody td {
    background-color: #f5f5f5;
    max-width: 280px;
    line-height: 130%
}

.hor_striped_table tbody td a {
    font-size: 18px;
    color: #27bdbe;
    font-weight: bold;
}

.hor_striped_table tbody td ul {
    margin: 0;
    padding-left: 1.2rem;
    list-style-type: disc;
}

.hor_striped_table tbody td ul li {
    margin-bottom: .3rem;
	list-style-type: disc;
}

.table_wrapper {
    overflow-x: auto;
    padding-bottom: 1rem;
}

.table_wrapper::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.table_wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.table_wrapper::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 10px;
}

.hor_striped_table {
    min-width: 965px;
}

.custom_table {
    margin-top: 2rem;
}

.custom_table .custom_table_title {
    font-weight: 600;
}

.custom_table .custom_table_title::after {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    background-image: url("https://dcsb59fztkcs1.cloudfront.net/arabiersLk/dubai-holiday/table-arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 0.2rem;
}

.custom_table ul {
    margin: 0;
}

.custom_table ul li {
    margin-bottom: 0.3rem;
}

.custom_table ul li::marker {
    font-size: 14px;
}

.custom_table .row {
    border-bottom: 1px solid #d9d9d9;
    padding: 1.5rem 0;
}

.custom_table .row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.custom_table .row:first-child {
    padding-top: 0;
}

.banner-2k26 {
    margin: 4rem 0 5rem;
    display: flex;
}

.banner-2k26> :first-child {
    flex: 4;
}

.banner-2k26> :last-child {
    flex: 2;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-content {
    background: #27BDBE;
    padding: 3rem;
    background-image: url('../../images/sri-lanka-holiday/banner-bg.png');
    background-repeat: no-repeat;
    background-size: 70% 100%;
    background-position: right;
}

.banner-title {
    font-size: 42px;
    font-weight: bold;
    line-height: 120%;
    color: #0F6464;
    margin: 0;
    max-width: 550px;
}

.banner-btn {
    margin-top: 1.8rem;
    background-color: #0F6464;
    padding: 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.banner-btn span {
    font-size: 16px;
    font-weight: bold;
    color: #D5CB2C;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.banner-btn img {
    width: 33px;
    height: auto;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.sub-cards .card {
    border: none;
}

.sub-cards .card-img-top {
    border-radius: 12px;
}

.sub-cards .card-body {
    padding: 1rem 0 0;
}

.sub-cards .card-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.sub-cards .card-text {
    margin-bottom: 5px;
    color: #000;
}

.gray-list {
    margin: 15px 0 0;
    padding-left: 20px;
}

.gray-list li {
    color: #828282;
    margin-bottom: 10px;
	list-style-type: disc;
}

.sub-cards .card-content {
    max-height: 150px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease-in-out;
}

.sub-cards .card-content.expanded {
    max-height: 1000px;
}

.sub-cards .fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, white);
    transition: opacity 0.5s ease-in-out;
}

.sub-cards .card-content.expanded .fade-overlay {
    opacity: 0;
    height: 0;
}

.sub-cards .see-more-btn {
    background-color: #27bdbe;
    border: none;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    padding: 5px 8px;
    display: inline;
    max-width: fit-content;
    border-radius: 32px;
    transition: background-color 500ms;
}

.sub-cards .see-more-btn:hover {
    background-color: #d5cc2e;
}

.best-time-section p {
    max-width: 890px;
    margin: 20px auto 0;
}

.bast-time-map {
    max-width: 745px;
    display: block;
    margin: auto;
    width: 100%;
    margin-top: 3rem;
}

.team_section {
    margin-top: 6rem;
}

figure {
    margin: 0;
}

figure img {
    display: block;
}

.office_card {
    border-radius: 6px;
    display: flex;
    align-items: unset;
    justify-content: unset;
}

.oc_content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.oc_right {
    background-color: #d9d9d9;
    border-radius: 0 6px 6px 0;
    padding: 0.5rem;
    display: flex;
    align-items: unset;
    justify-content: space-evenly;
    flex-direction: column;
    flex: auto;
}

.oc_right .location {
    text-align: center;
    font-size: 12px;
}

.ratings {
    font-size: 24px;
    font-weight: bold;
}

.raview_label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.reviews_count {
    font-size: 12px;
    font-weight: 600;
    color: #828282;
    margin-bottom: 0.2rem;
}

.office_location {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.srilanka-office {
    width: 148px;
    height: 141px;
    object-fit: cover;
    border-radius: 6px 0 0 6px;
}

/* faq */
.accordion {
    max-width: 80%;
    margin: 2rem auto 0;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 6px !important;
    border: 1px solid #d9d9d9 !important;
}

.accordion-button {
    border-radius: 6px !important;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f5f5f5;
    box-shadow: none;
    color: #000000;
    border-radius: 6px 6px 0 0 !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("https://dcsb59fztkcs1.cloudfront.net/arabiersLk/dubai-holiday/minus.png");
    background-size: contain;
    background-position: center;
}

.accordion-button::after {
    width: 15px;
    height: 15px;
    background-image: url("https://dcsb59fztkcs1.cloudfront.net/arabiersLk/dubai-holiday/plus.png");
    background-size: contain;
}

.accordion-body {
    background-color: #f5f5f5;
    border-radius: 0 0 6px 6px !important;
    padding-top: 0;
}

.accordion-body h4 {
    font-size: 16px;
    font-weight: bold;
}

.accordion-body ul {
    padding-left: 1.3rem;
}

.accordion-body ul li {
    font-size: 14px;
    margin-bottom: .5rem;
}


@media (hover: hover) {
    .banner-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(15, 100, 100, 0.35);
    }

    .banner-btn:hover::before {
        transform: translateX(100%);
    }

    .banner-btn:hover span {
        transform: translateX(2px);
    }

    .banner-btn:hover img {
        transform: translateX(6px);
    }
}

@media screen and (max-width: 1400px) {
    .guide-map {
        object-position: right -130px bottom 35px;
    }
}

@media screen and (max-width: 1200px) {
    .hero-wrapper {
        height: auto;
        margin-top: 0
    }

    .top-fluid {
        padding: 0
    }

    .top-fluid .row:first-child {
        margin: 0
    }

    .top-fluid .row:first-child .col-md-10 {
        padding: 0
    }

    .hero-content {
        padding: 0 .75rem;
        position: unset
    }

    .heading_wrapper {
        max-width: 100%;
    }

    .new_top {
        max-width: 100%;
    }

    .banner-content {
        padding: 2rem;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-title br {
        display: none;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    .hero-sub-text {
        max-width: 100%;
    }

    .gray_section {
        width: 100%;
    }

    .guide-map {
        width: auto;
        object-position: center;
        display: block;
        margin: -10rem auto 0;
    }
}

@media screen and (max-width: 1140px) {
    .banner-content {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    .heading_wrapper {
        position: relative;
        margin-top: 0;
    }

    .heading_wrapper img {
        margin: 0;
        max-width: 28px;
    }

    .new_top {
        flex-direction: column;
    }

    .gray_section {
        background-size: contain;
        padding: 1rem;
        border-radius: 0;
    }

    .new_top img {
        border-radius: 16px 16px 10px 10px;
    }

    .rate_wrapper {
        text-align: center;
        margin-top: 0.8rem;
    }

    h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .sub_text {
        font-size: 22px;
        font-weight: bold;
        text-align: center;
    }

    .sub_text span {
        display: inline-block;
    }

    .rate_row {
        margin-top: 1rem;
        justify-content: space-between;
        flex-direction: column;
        row-gap: 1rem;
    }

    .lable,
    .rate sub {
        font-size: 14px;
    }

    .rate {
        font-size: 20px;
    }

    main section {
        margin-top: 2.5rem;
    }

    main section:first-child {
        margin-top: 2.5rem;
    }

    .team_section {
        margin-top: 3rem;
    }

    .whyus_section h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    h2 {
        font-size: 22px;
        margin-bottom: 1rem;
    }

    .option_item img {
        transform: scale(0.9);
        transform-origin: left;
        height: 54px;
    }

    .option_item span {
        font-size: 14px;
        margin-top: 0.3rem;
    }

    .travel_title {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .package_cards {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .package_cards>* {
        flex: unset;
        max-width: unset;
        flex-shrink: 0;
        max-width: 80%;
    }

    .card_header {
        min-height: 76px;
    }

    .p_card_title {
        font-size: 16px;
    }

    .price_type,
    .price_lable,
    .tick_list li,
    .best_time_text {
        font-size: 12px;
    }

    .price {
        font-size: 14px;
    }

    .more img {
        max-width: 40px;
    }

    .package_cards hr {
        margin: 0.6rem 0;
    }

    .p_card_content {
        min-height: auto;
    }

    .package_card img {
        width: 100%;
    }

    .package_title {
        font-size: 20px;
    }

    .package_highlight {
        font-size: 16px;
    }

    .hor_striped_table tbody td a {
        font-size: 16px;
    }

    .custom_table {
        margin-top: 1rem;
    }

    .custom_table .row {
        padding: 1rem 0;
    }

    .custom_table .row:last-child {
        border-bottom: 0;
    }

    .office_card {
        margin: 0 auto;
        justify-content: center;
    }

    .oc_right {
        padding: 0.5rem 1rem;
    }

    .accordion {
        max-width: 100%;
    }

    .accordion-button {
        gap: 1rem;
        align-items: flex-start;
    }

    .guide-map {
        height: auto;
        margin-top: -15rem;
        object-position: center
    }

    .banner-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 948px) {
    .banner-txt {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .main-heading {
        font-size: 28px;
        line-height: 40px;
    }

    .featured-text {
        flex-shrink: 0;
    }

    .accordion-button {
        font-size: 16px;
    }

    .accordion-body h4,
    .accordion-body {
        font-size: 14px;
    }

    .banner-2k26 {
        flex-direction: column;
    }

    .banner-title {
        font-size: 34px;
    }

    .custom_table ul {
        padding-left: 1.5rem;
    }
}

@media (min-width: 992px) {
    .heading_wrapper:hover img {
        transform: translate(10px, -10px) rotate(5deg);
        /* move up-right and slightly rotate */
    }
}

@media screen and (min-width: 768px) {
    .p_card_img {
        transition: transform 300ms ease;
    }

    .btn-link img:hover,
    .p_card:hover .p_card_img {
        transform: scale(1.1);
    }

    .p_card_img_wrapper {
        overflow: hidden;
        border-radius: 6px 6px 0 0;
    }
}

.srilanka-office {
    width: 148px;
    height: 141px;
    object-fit: cover;
    border-radius: 6px 0 0 6px;
}