.td_filter_category a.active {
    background-color: var(--accent-color);
    color: #fff;
}

.tg-hero-area {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
}

.tg-hero-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 8, 20, 0) 0%, rgba(5, 8, 20, 0) 40%, rgba(5, 8, 20, 0.65) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-family: var(--tg-ff-rage);
    font-size: clamp(38px, 6vw, 58px);
    color: #f6a23c;
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    position: relative;
    font-style: normal;
}

.hero-swash {
    display: block;
    width: clamp(120px, 28vw, 200px);
    height: clamp(18px, 5vw, 30px);
    margin: 6px auto 26px;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='30' viewBox='0 0 200 30'%3E%3Cpath d='M4 26C23 11 52 2 80 6c28 4 46 23 74 22 19-1 34-12 46-20' fill='none' stroke='%23f6a23c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M144 5c5 4 10 9 16 12' fill='none' stroke='%23f6a23c' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hero-title {
    font-family: "Outfit", var(--tg-ff-outfit), sans-serif;
    font-weight: 500;
    font-size: clamp(52px, 9vw, 110px);
    line-height: 1.08;
    color: rgba(255, 255, 255, 0.96);
    text-transform: none;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    text-shadow: 0 30px 50px rgba(0, 0, 0, 0.45);
}

.hero-description {
    font-size: clamp(18px, 2.4vw, 22px);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 6px;
    font-weight: 500;
}

.hero-subtext {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .hero-content {
        padding: 0 20px;
    }

    .tg-hero-area {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

.hero-title {
    white-space: normal;
}

@media (min-width: 992px) {
    .hero-content {
        max-width: 860px;
    }

    .hero-title {
        white-space: nowrap;
    }
}

.tg-call-btn {
    background: #f99914;
    color: var(--tg-common-white);
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    box-shadow: 0 10px 25px rgba(247, 74, 31, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    gap: 14px;
}

.tg-call-btn:hover {
    color: var(--tg-common-white);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(247, 74, 31, 0.4);
    background: #ff612f;
}

.tg-call-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.tg-call-icon svg {
    color: var(--tg-common-white);
}

.tg-call-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.tg-call-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.tg-call-number {
    font-size: 14px;
    font-weight: 700;
}

.tgmobile__menu .social-links ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    padding: 30px 20px 40px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #f99914;
    color: var(--tg-common-white);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(249, 153, 20, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.social-card:hover {
    background: #ffab24;
    color: var(--tg-common-white);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(249, 153, 20, 0.32);
}

.social-card-icon {
    font-size: 32px;
    line-height: 1;
}

.social-card-label {
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .tgmobile__menu .social-links ul {
        padding: 24px 15px 32px;
        gap: 14px;
    }

    .social-card {
        padding: 24px 18px;
        border-radius: 12px;
    }
}

.social-card-block {
    width: 100%;
    min-height: 160px;
}

.social-card-block .social-card-icon {
    font-size: 36px;
}

.social-card-block .social-card-label {
    font-size: 18px;
}
.tg-book-form-area {
    position: relative;
    background: #c8c8c849;
    overflow: hidden;
}

.tg-book-form-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://atwtravels.com/wp-content/uploads/2019/11/World-Map.png") no-repeat center/cover;
    opacity: 0.9;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.tg-book-form-area .container {
    position: relative;
    z-index: 1;
}

.book-contact-card {
    background: transparent;
    border-radius: 20px 0 0 20px;
    padding: 36px 28px;
    box-shadow: none;
    backdrop-filter: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-contact-title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--tg-common-black);
}

.book-contact-subtitle {
    color: rgba(2, 6, 21, 0.65);
    margin-bottom: 0;
}

.book-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.book-contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--tg-common-black);
    box-shadow: 0 12px 24px rgba(12, 33, 81, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.book-contact-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(12, 33, 81, 0.1);
    color: var(--tg-theme-primary);
}

.book-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(86, 12, 227, 0.08);
    color: var(--tg-theme-primary);
    font-size: 18px;
}

.book-contact-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(2, 6, 21, 0.6);
}

.book-contact-value {
    display: block;
    font-weight: 600;
    color: var(--tg-common-black);
}

.book-form-wrapper {
    background: transparent;
    border-radius: 0 20px 20px 0;
    padding: 40px;
    box-shadow: none;
    border-left: none;
}

.book-form-title {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 600;
    margin-bottom: 35px;
    color: var(--tg-common-black);
}

.book-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    color: rgba(2, 6, 21, 0.6);
}

.book-form-label span {
    color: var(--tg-theme-secondary);
}

.book-form-input,
.book-form-select,
.book-form-textarea {
    width: 100%;
    border: 1px solid rgba(2, 6, 21, 0.08);
    border-radius: 12px;
    background: #f6f8ff;
    height: 40px;
    padding: 0 10px;
    font-size: 15px;
    color: var(--tg-grey-1);
    transition: border 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.book-form-textarea {
    height: auto;
    padding: 14px 18px;
    resize: vertical;
}

.book-form-input:focus,
.book-form-select:focus,
.book-form-textarea:focus {
    outline: none;
    border-color: rgba(86, 12, 227, 0.35);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(86, 12, 227, 0.12);
}

.book-form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23253045' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 14px) center;
}

.book-form-submit {
    width: 100%;
    margin-top: 6px;
}

@media (max-width: 991px) {
    .book-contact-card {
        border-radius: 20px 20px 0 0;
    }

    .book-form-wrapper {
        border-radius: 0 0 20px 20px;
        padding: 32px 20px;
    }
}

@media (max-width: 575px) {
    .book-contact-card {
        padding: 28px 18px;
    }

    .book-form-wrapper {
        padding: 28px 18px;
    }
}
.tg-social-links-area {
    background: #fff9f0;
}

.tg-social-links-title {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 36px);
    text-transform: capitalize;
}

.social-card-block {
    width: 100%;
    min-height: 160px;
}

.social-card-block .social-card-icon {
    font-size: 36px;
}

.social-card-block .social-card-label {
    font-size: 18px;
}
.write_review_box_reting_icon li i.active {
    color: #ecc800 !important;
}

.instructors_details_skil_bar_bg,
.instructors_details_skil_bar_over {
    animation: none !important;
}

.td_testimonial_with_shape {
    background-image: url(../img/home_4/testimonial_bg.html);
}

.qs-h1-testimonial_dots .td_pagination.td_style_1 li.slick-active button {
    transform: scale(1.34);
    background-color: var(--white-color);
}

.qs-instructor-card_h1 .qs-instructor-card_h1_img {
    width: 100%;
    height: 392px;
}

.td_about.td_style_1 .td_circle_text span {
    animation: rotate-anim 40s linear infinite;
}

.qs-custom-min-width-1 {
    width: 684px;
}


/* bordered team section */


/* bordered team section end*/

.td_card.td_style_5 .td_card_thumb .add_to_wishlist.active .td_cart_wishlist_icon,
.td_card.td_style_3 .add_to_wishlist.active .td_cart_wishlist_icon {
    background-color: #fff;
}

.td_card.td_style_5 .td_card_thumb .add_to_wishlist.active .td_cart_wishlist_icon svg,
.td_card.td_style_3 .add_to_wishlist.active .td_cart_wishlist_icon svg {
    stroke: none;
    fill: currentColor;
    color: #fd4746;
    transition: all linear 0.5s;
}

.td_team.td_style_3 .td_team_thumb.qs-shaped-border {
    border-radius: 37% 63% 42% 58% / 57% 33% 67% 43%;
    border: 3px dashed #a089fe;
}

.td_team.td_style_3 .td_team_thumb.qs-shaped-border .qs-team-thumb-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 37% 63% 42% 58% / 57% 33% 67% 43%;
    border: 5px solid transparent;
    overflow: hidden;
}

.td_card.td_style_3 .td_card_thumb {
    width: 100%;
    aspect-ratio: 410/276;
}

.td_card.td_style_3 .td_card_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*currency and language*/

.top_bar-curr-lang-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top_bar-curr-lang-wrapper .curr-wrapper,
.top_bar-curr-lang-wrapper .lang-wrapper {
    display: flex;
    align-items: center;
}

.top_bar-curr-lang-wrapper .separator {
    color: white;
}

.top_bar-curr-lang-wrapper_s3 .separator {
    color: #000;
}

.curr-wrapper .curr-select,
.lang-wrapper .lang-select {
    background: none;
    color: white;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-overflow: "";
    cursor: pointer;
    font-size: 14px;
    padding: 0 10px;
}

.top_bar-curr-lang-wrapper_s3 .curr-wrapper .curr-select,
.top_bar-curr-lang-wrapper_s3 .lang-wrapper .lang-select {
    color: #000;
}

.curr-wrapper .curr-select:focus,
.lang-wrapper .lang-select:focus {
    outline: none;
    border: none;
}

.td_nav_list_wrap .top_bar-curr-lang-wrapper {
    display: none;
}

.td_nav_list_wrap.td_active .top_bar-curr-lang-wrapper {
    display: flex;
    padding: 12px;
}

.td_nav_list_wrap .curr-wrapper .curr-select,
.td_nav_list_wrap .lang-wrapper .lang-select {
    appearance: none;
    color: #000;
}

.td_nav_list_wrap .top_bar-curr-lang-wrapper .separator {
    color: #000;
}

.td_nav_list_wrap .top_bar-curr-lang-wrapper_s3 .curr-wrapper .curr-select,
.td_nav_list_wrap .top_bar-curr-lang-wrapper_s3 .lang-wrapper .lang-select {
    color: #fff;
}

.td_nav_list_wrap .top_bar-curr-lang-wrapper_s3 .separator {
    color: #fff;
}

.td_hero_icon_btns {
    display: flex;
    gap: 27px;
}

.td_iconbox.td_style_2 .td_iconbox_subtitle span {
    background-color: transparent;
    color: var(--accent-color);
}

.td_iconbox.td_style_2 .td_iconbox_subtitle span {
    background-color: transparent;
    color: var(--accent-color);
}

.td_iconbox.td_style_2:hover .td_iconbox_subtitle span {
    background-color: transparent;
    color: #fff;
}

.td_post.td_style_1 .td_post_label {
    background: #ffffff54;
}

.td_card.td_style_3 .td_card_category {
    box-shadow: none;
}

.td_heading_bg.td_heading_bg_forth {
    background-color: #150005 !important;
}

.td_team.td_style_1.td_style-home-four .td_team_info {
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}

.td_team.td_style_1.td_style-home-four:hover .td_team_info {
    animation: none;
}

.td_team.td_style_1.td_style-home-four:hover .td_team_info {
    background: #890c25;
}

.td_team.td_style_1.td_style-home-four:hover .td_team_info .td_team_member_title {
    color: #fff;
}

.td_team.td_style_1.td_style-home-four:hover .td_team_info .td_team_member_designation {
    color: #fff;
}

.td_blog_details_head .td_blog_details_img_main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.td_blog_details_head .td_blog_details_img_wrapper {
    width: 100%;
    aspect-ratio: 890 / 570;
}

div.edc-searchbar-clickaway {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: transparent;
}

div.edc-searchbar-clickaway.active {
    display: block;
}

div.edc-searchbar-clickaway {
    display: none;
}

.td_tab_links.td_style_2 li a {
    font-size: 18px;
}

.home-three-auth-btn-group .td_btn.td_style_1.td_type_1 {
    box-shadow: none;
    border: 1px solid var(--accent-color);
}

.home-three-auth-btn-group .td_btn.td_style_1.td_type_1.td_with_shadow::after {
    display: none;
}

.home-three-auth-btn-group .td_btn.td_style_1.td_with_shadow::after {
    display: none;
}

.home-three-auth-btn-group .td_btn.td_style_1 .td_btn_in {
    padding: 10px 25px;
}

.td_course_details .td_tab_links.td_style_2.td_type_2 {
    overflow-x: auto;
}

#edc-pd-btns-contain {
    scroll-snap-type: x mandatory;
}

.scroll-section {
    scroll-snap-align: start;
}

.edc-pd-tab-btns-wrapper .edc-pd-tab-btn-prev,
.edc-pd-tab-btns-wrapper .edc-pd-tab-btn-next {
    background: #000;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5555px;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.edc-pd-tab-btns-wrapper .edc-pd-tab-btn-prev {
    left: -7px;
}

.edc-pd-tab-btns-wrapper .edc-pd-tab-btn-next {
    right: -7px;
}

.edc-pd-tab-btns-wrapper .edc-pd-tab-btn-prev svg,
.edc-pd-tab-btns-wrapper .edc-pd-tab-btn-next svg {
    width: 16px;
    height: 16px;
}

.td_team.td_style_1:hover .td_team_info {
    animation: none;
    box-shadow: 0px 4px 0px 0px #D2C9FE;
}

.td_post.td_style_1 .td_post_info {
    border: 1px solid #E6E0FF;
    padding: 20px 30px 30px;
}

.comment-list .comment-meta+p {
    color: var(--body-color)
}

.td_page_heading .breadcrumb-item {
    font-weight: 400;
}

.td_faq_1_img {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.td_faq_2_img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.curr-wrapper .curr-select option,
.lang-wrapper .lang-select option {
    color: var(--heading-color);
}

.td_sign_thumb {
    padding-left: 0;
    padding-right: 44px;
}

.contact_modal .modal-body .form-control,
.td_form_field {
    box-shadow: none;
    border: 1px solid #E6E0FF;
    padding: 14px 18px;
}

.contact_modal .modal-body .form-control:focus,
.td_form_field:focus {
    border: 1px solid #6440fb;
}

.td_form_card.td_style_1 .td_form_card_bottom {
    flex-direction: column;
}

.edc-auth-btn {
    width: 100%;
}

.edc-line-sperator {
    width: 137px;
    height: 1px;
    background: #E6E0FF;
}

.td_card.td_style_7 .td_card_video_block img {
    width: 100%;
}

.td_page_heading {
    min-height: 451px;
}

.td_card.td_style_5 .td_card_review .td_heading_color,
.td_card.td_style_3 .td_card_review .td_heading_color {
    color: var(--body-color) !important;
    opacity: 100;
}

.td_card.td_style_5 .td_card_meta li span,
.td_card.td_style_3 .td_card_meta li span {
    color: var(--body-color) !important;
    opacity: 100;
}

.td_card.td_style_3 .td_card_subtitle.td_heading_color {
    color: var(--body-color) !important;
    opacity: 100;
}

.td_team.td_style_1 .td_team_member_designation.td_heading_color {
    color: var(--body-color) !important;
    opacity: 100;
}

.td_style_1.td_type_1 .td_testimonial_meta_right .td_heading_color {
    color: var(--body-color) !important;
    opacity: 100;
}

.td_post.td_style_1.td_type_1 .td_post_subtitle.td_heading_color {
    color: var(--body-color) !important;
    opacity: 100;
}

.td_post.td_style_1 .td_post_subtitle.td_heading_color {
    color: var(--body-color) !important;
    opacity: 100;
}

.contact_modal.contact_modal_page .modal-content {
    background: #f9f9fa;
}

.contact_modal .modal-content {
    background: #f9f9fa;
}

.contact_modal_form_inner .form-control {
    border-radius: 30px !important;
}

.contact_modal_form_inner textarea.form-control {
    border-radius: 20px !important;
}

.fm-pd {
    padding: 0 18px 0 18px !important;
    background-position: calc(100% - 20px) calc(1em - 6px), calc(100% + -15px) calc(1em - 6px) !important;
}

.tg-tour-about-review-form .textarea {
    line-height: 1.6;
    padding-top: 10px;
}

.tg-banner-4-spacing {
    background-size: cover;
}

.tg-team-details-thumb {
    background: #f1f1f1;
    padding: 30px;
    padding-bottom: 0;
    border-radius: 30px;
}

.tg-book-form-area {
    position: relative;
    background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
    overflow: hidden;
}

.tg-book-form-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://atwtravels.com/wp-content/uploads/2019/11/World-Map.png") no-repeat center/cover;
    
    pointer-events: none;
}

.tg-book-form-area .container {
    position: relative;
    z-index: 1;
}

.book-contact-card {
    background: transparent;
    border-radius: 20px 0 0 20px;
    padding: 36px 28px;
    box-shadow: none;
    backdrop-filter: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-form-wrapper {
    background: transparent;
    border-radius: 0 20px 20px 0;
    padding: 40px;
    box-shadow: none;
    border-left: none;
}

@media (max-width: 991px) {
    .book-contact-card {
        border-radius: 20px 20px 0 0;
    }

    .book-form-wrapper {
        border-radius: 0 0 20px 20px;
        padding: 32px 20px;
    }
}

@media (max-width: 575px) {
    .book-contact-card {
        padding: 28px 18px;
    }

    .book-form-wrapper {
        padding: 28px 18px;
    }
}

/* responsive */

@media screen and (min-width: 992px) {
    .td_height_100 {
        height: 100px;
    }
}

@media screen and (min-width: 1200px) {
    .td_site_header.td_style_1.td_type_3 .td_nav_list_wrap_in {
        display: flex;
        align-items: center;
        gap: 100px;
    }

    .td_site_header.td_style_1 .td_main_header_in,
    .td_theme_2 .td_site_header.td_style_1 .td_top_header_in {
        flex-wrap: nowrap;
    }
}

@media (max-width: 1536px) {}

@media (max-width: 1280px) {}

@media (max-width: 1170px) {}

@media (max-width: 1024px) {
    .td_theme_3 .td_site_header.td_style_1 .td_main_header_right {
        padding-right: 30px;
    }

    .td_sign_thumb {
        padding-right: 0px;
    }
}

@media (max-width: 768px) {
    .td_theme_3 .td_site_header.td_style_1 .td_main_header_right {
        padding-right: 20px;
    }

    .td_tab_links.td_style_2.td_type_2 a {
        padding: 8px 24px;
    }

    .td_course_details .td_tab_links.td_style_2.td_type_2 {
        margin-bottom: 20px;
    }

    .td_tab_links.td_style_2.td_type_2 {
        gap: 0;
    }

    .td_sign_thumb {
        display: none;
    }
}

@media (max-width: 640px) {
    .td_type_3 .top_bar-curr-lang-wrapper {
        display: none;
    }

    .td_btns_group {
        gap: 30px 20px;
    }

    .td_site_header.td_style_1.td_type_2 .td_wishlist_btn {
        display: none;
    }

    .td_hero_icon_btns {
        display: flex;
        gap: 10px;
    }

    .td_faq_1 .td_faq_1_right {
        margin-top: 0;
    }

    .instructors {
        padding: 50px 0;
    }

    .edc-line-sperator {
        display: none;
    }

    .td_form_card.td_style_1 {
        padding: 20px 20px;
    }

    .td_fs_20.td_fs_sm_16 {
        font-size: 16px;
    }

    .td_course_details .audio-item {
        display: block;
    }
}

.tg-emi-carousel-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: var(--tg-common-black);
    margin-bottom: 10px;
}

.tg-emi-carousel-subtitle {
    color: rgba(2, 6, 21, 0.65);
    max-width: 560px;
    margin: 0 auto;
}

.tg-emi-carousel {
    position: relative;
    padding-bottom: 50px;
}

.emi-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(49, 24, 7, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.emi-card-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.emi-card-body {
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.emi-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #7f4b1f;
}

.emi-card-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    color: rgba(2, 6, 21, 0.75);
    font-size: 14px;
    line-height: 1.5;
}

.emi-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(127, 75, 31, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.emi-card-benefits li {
    display: flex;
    align-items: flex-start;
}

.emi-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #7f4b1f;
    color: #ffffff;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.emi-cta:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 24px rgba(127, 75, 31, 0.25);
    background: #a8652e;
}

.tg-emi-gallery-area {
    background: #fffdf8;
}

.tg-emi-gallery-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: var(--tg-common-black);
    margin-bottom: 10px;
}

.tg-emi-gallery-subtitle {
    color: rgba(2, 6, 21, 0.65);
    max-width: 560px;
    margin: 0 auto;
}

.tg-emi-gallery {
    position: relative;
}

.tg-emi-carousel {
    overflow: hidden;
}

.tg-emi-gallery .swiper-slide {
    height: auto;
}

.emi-gallery-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 18px 35px rgba(49, 24, 7, 0.12);
    background: #ffffff;
}

.emi-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tg-emi-gallery-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
}

.emi-gallery-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(127, 75, 31, 0.12);
    color: #7f4b1f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.emi-gallery-button:hover {
    background: #7f4b1f;
    color: #ffffff;
}

@media (max-width: 767px) {
    .tg-emi-gallery-nav {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .tg-call-btn {
        padding: 8px 12px;
        gap: 8px;
    }

    .tg-call-text {
        font-size: 10px;
        line-height: 1.2;
    }
}

.tg-testimonial-area {
    background: #fffdf8;
    overflow: hidden;
}

.gth_testimonial_heading {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    color: var(--tg-common-black);
    margin-bottom: 0;
}

.st-testimonial-slider {
    position: relative;
    padding-bottom: 40px;
    overflow: hidden;
}

.st-testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(8, 29, 64, 0.12);
    border-radius: 14px;
    padding: 28px 30px 32px;
    box-shadow: 0 18px 35px rgba(49, 24, 7, 0.06);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.st-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.st-testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f99914;
}

.gth_testimonial_personName {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--tg-common-black);
}

.star {
    color: #f99914;
    font-size: 16px;
}

.star i {
    margin-right: 4px;
}

.st-quote-icon {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 38px;
    color: #1266f1;
    font-weight: 700;
}

.st-testimonial-text {
    color: rgba(2, 6, 21, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    overflow: hidden;
}

.st-testimonial-dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.st-testimonial-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(18, 102, 241, 0.2);
    opacity: 1;
    transition: background 0.3s ease, transform 0.3s ease;
}

.st-testimonial-dots .swiper-pagination-bullet-active {
    background: #1266f1;
    transform: scale(1.2);
}

@media (max-width: 575px) {
    .st-testimonial-card {
        padding: 24px 22px 28px;
    }

    .st-testimonial-author img {
        width: 52px;
        height: 52px;
    }

    .st-quote-icon {
        font-size: 32px;
    }
}

.tg-highlights-area {
    background: #ffffff;
}

.highlight-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(18, 49, 99, 0.08);
    padding: 48px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(18, 49, 99, 0.12);
}

.highlight-icon img {
    width: 94px;
    height: 94px;
    object-fit: contain;
}

.highlight-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: "Playfair Display", serif;
    color: var(--tg-common-black);
}

.highlight-title-top {
    font-size: 30px;
    font-weight: 700;
}

.highlight-title-bottom {
    font-size: 30px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .highlight-title-top,
    .highlight-title-bottom {
        font-size: 26px;
    }
}
