/* *  {
            font-family:  'Calibri Regular', Arial, sans-serif;
        } */
       
        .container_TM {
            /* background: white; */
            /* border-radius: 20px; */
            /* max-width: 1400px; */
            width: 100%;
            overflow: hidden;
            /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
            animation: slideUp 0.8s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-wrapper_TM {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
            padding-left: 15px;
            padding-top: 30px;
            background: #E5E4F7;
            background: linear-gradient(309deg, rgba(229, 228, 247, 1) 0%, rgba(255, 254, 253, 1) 50%, rgba(254, 249, 235, 1) 100%);
        }

        .left-section_TM {
            padding: 10px 0px 10px 41px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logo-section_TM {
            margin-bottom: 40px;
        }

        .shield-logo_TM {
            width: 120px;
            height: 140px;
            /* border: 3px solid #9b4d96; */
            border-radius: 0 0 60px 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
        }



        .logo-text_TM {
            text-align: center;
        }

        .cub-text_TM {
            font-size: 13px;
            color: #9b4d96;
            font-weight: 600;
        }

        .desire-text_TM {
            font-size: 20px;
            color: #9b4d96;
            font-weight: 700;
            line-height: 1;
        }

        .tagline-small_TM {
            font-size: 9px;
            color: #9b4d96;
            margin-top: 2px;
        }

        .handshake-icon_TM {
            font-size: 28px;
            margin-top: 5px;
        }

        .header-text_TM {
            font-size: 11px;
            color: #2c3e7f;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .header-text_TM .highlight_TM {
            color: #e91e8c;
        }

        h1 {
            font-size: 34px;
            color: #2c3e7f;
            line-height: 140%;
            margin-bottom: 30px;
            font-weight: 700;
        }

        h1 .underline_TM {
            position: relative;
            display: inline-block;
        }

        h1 .underline_TM::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 12px;
            background-image: url('/ta-in/assets/other-pages/cub-desire/images/underline.svg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: bottom left;
            animation: expandWidth 1s ease-out 0.5s both;
        }

        @keyframes expandWidth {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        #rotating-text {
            position: relative;
            min-height: 180px;
            overflow: hidden;
        }

        #rotating-text .text-wrapper_TM {
            position: relative;
            display: block;
        }

        #rotating-text .text-item_TM {
            display: block;
            animation: slideDown 0.5s ease-in-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .description_TM {
            font-size: 13px;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .cta-button_TM {
            /* background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%); */
            background: #ECBE50;
            border: none;
            padding: 10px 15px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            color: #2c3e7f;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 17px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            align-self: flex-start;
        }

        .cta-button_TM:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
        }

        .play-icon_TM {
            width: 0;
            height: 0;
            border-left: 12px solid #2c3e7f;
            border-top: 8px solid transparent;
            border-bottom: 5px solid transparent;
        }

        .right-section_TM {
            /* background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%); */
            display: flex;
            align-items: flex-end;
            justify-content: center;
            /* padding: 40px; */
            position: relative;
            overflow: hidden;
        }

        .traveler-image_TM {
            max-width: 100%;
            height: auto;
            position: relative;
            z-index: 2;
            animation: float 3s ease-in-out infinite;
            transition: opacity 0.5s ease-in-out;
        }

        #rotating-image {
            opacity: 1;
        }

        #rotating-image.fade-out_TM {
            opacity: 0;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .plane-icon_TM {
            position: absolute;
            font-size: 28px;
            animation: fly 8s linear infinite;
        }

        .plane-1_TM {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .plane-2_TM {
            top: 30%;
            right: 15%;
            animation-delay: 2s;
            transform: rotate(45deg);
        }

        .plane-3_TM {
            top: 50%;
            right: 5%;
            animation-delay: 4s;
        }

        @keyframes fly {
            0% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translate(100px, -100px) rotate(15deg);
                opacity: 0;
            }
        }

        .plus-icon_TM {
            position: absolute;
            bottom: 40px;
            right: 40px;
            font-size: 34px;
            color: #e91e8c;
            font-weight: 300;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.6;
            }

            50% {
                transform: scale(1.1);
                opacity: 1;
            }
        }

        .savings-section_TM {
            background: linear-gradient(135deg, #f0f4ff 0%, #e8efff 100%);

            padding: 20px 60px;
            text-align: center;
            background: #E9E8F8;
            background: linear-gradient(219deg, rgba(233, 232, 248, 1) 0%, rgba(255, 254, 253, 1) 50%, rgba(254, 249, 235, 1) 100%);
        }

        .savings-title_TM {
            font-size: 34px;
            color: #2c3e7f;
            font-weight: 700;
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
        }

        .big-dreams_TM::after,
        .steps-title_TM .underline-text_TM::after,
        .calculator-title_TM .highlight_TM::after,
        .faq-title_TM .highlight_TM::after,
        .features-title_TM::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 12px;
            background-image: url('/ta-in/assets/other-pages/cub-desire/images/underline.svg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: bottom left;
            /* animation: expandWidth 1s ease-out 0.5s both; */
        }

        .categories-carousel-wrapper_TM {
            position: relative;
            width: 100%;
        }

        .categories-grid_TM {
            display: flex;
            flex-direction: row;
            gap: 30px;
            /* max-width: 1200px; */
            margin: 0 auto;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        /* Slick Carousel Styles - Mobile Only */
        @media (max-width: 968px) {
            .categories-slick_TM.slick-slider {
                margin-bottom: 40px;
            }

            .categories-slick_TM .slick-list {
                padding: 0 20px !important;
            }

            .categories-slick_TM .slick-slide {
                padding: 0 10px;
            }

            .categories-slick_TM .slick-arrow {
                position: absolute;
                display: none !important;
                top: 50%;
                transform: translateY(-50%);
                z-index: 2;
                width: 45px;
                height: 45px;
                background: #ECBE50;
                border: none;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
                color: #2c3e7f;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            }

            .categories-slick_TM .slick-arrow:hover {
              
                background: #FFC700;
                transform: translateY(-50%) scale(1.1);
                box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            }

            .categories-slick_TM .slick-arrow:active {
                transform: translateY(-50%) scale(0.95);
            }

            .categories-slick_TM .slick-prev {
                left: -10px;
            }

            .categories-slick_TM .slick-next {
                right: -10px;
            }

            .categories-slick_TM .slick-arrow svg {
                width: 24px;
                height: 24px;
            }

            .categories-slick_TM .slick-dots {
                bottom: -40px;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
            }

            .categories-slick_TM .slick-dots li {
                width: auto;
                height: auto;
                margin: 0;
            }

            .categories-slick_TM .slick-dots li button {
                width: 10px;
                height: 10px;
                padding: 0;
                border-radius: 50%;
                background: #d1d5db;
                border: none;
                transition: all 0.3s ease;
            }

            .categories-slick_TM .slick-dots li.slick-active button {
                background: #ECBE50;
                width: 30px;
                border-radius: 5px;
            }

            .categories-slick_TM .slick-dots li button:before {
                display: none;
            }
        }

        .category-card_TM {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            cursor: pointer;
            width: 250px;
            height: 300px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .category-card_TM:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(44, 62, 127, 0.15);
        }

        .category-card_TM .selected_TM_TM {
            border: 3px solid #e91e8c;
            transform: translateY(-10px);
        }

        .category-icon_TM {
            font-size: 45px;
            margin-bottom: 20px;
            color: #2c3e7f;
        }

        .category-title_TM {
            font-size: 14px;
            color: #2c3e7f;
            font-weight: 400;
            margin-bottom: 15px;
        }

        .category-description_TM {
            font-size: 10px;
            color: #666;
            line-height: 1.6;
        }

        .decorative-plus_TM {
            position: absolute;
            font-size: 17px;
            color: #e91e8c;
            opacity: 0.3;
        }

        .plus-top-right_TM {
            top: 60px;
            right: 100px;
        }

        .plus-mid-right_TM {
            top: 200px;
            right: 50px;
        }

        .steps-section_TM {
            /* background: white; */
            padding: 20px 60px;
            background: #FEF9EC;
            background: linear-gradient(309deg, rgba(254, 249, 236, 1) 0%, rgba(255, 254, 253, 1) 50%, rgba(246, 245, 249, 1) 100%);
        }

        .steps-wrapper_TM {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            align-items: center;
        }

        .steps-content_TM {
            /* padding-right: 40px; */
        }

        .steps-subtitle_TM {
            font-size: 11px;
            color: #6b7280;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .steps-title_TM {
            font-size: 31px;
            color: #2c3e7f;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 50px;
        }

        .steps-title_TM .underline-text_TM {
            position: relative;
            display: inline-block;
        }


        .step-item_TM {
            display: flex;
            gap: 25px;
            margin-bottom: 40px;
            animation: fadeInLeft 0.6s ease-out forwards;
            opacity: 0;
        }

        .step-item_TM:nth-child(1) {
            animation-delay: 0.2s;
        }

        .step-item_TM:nth-child(2) {
            animation-delay: 0.4s;
        }

        .step-item_TM:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .step-icon_TM {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .step-icon_TM .blue_TM_TM {
            background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
        }

        .step-icon_TM .purple_TM_TM {
            background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 100%);
        }

        .step-icon_TM .yellow_TM_TM {
            background: linear-gradient(135deg, #fde047 0%, #facc15 100%);
        }

        .step-text h3 {
            font-size: 15px;
            color: #2c3e7f;
            font-weight: 700;
            /* margin-bottom: 10px; */
        }

        .step-text p {
            font-size: 11px;
            color: #6b7280;
            line-height: 1.6;
            width: 85%;
        }

        .preview-card_TM {
            /* background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 30px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            position: relative; */
        }

        .trip-image_TM {
            width: 100%;
            /* height: 250px;
            border-radius: 20px;
            object-fit: cover;
            margin-bottom: 25px; */
            object-fit: none;
        }

        .trip-header_TM {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .trip-title_TM {
            font-size: 18px;
            color: #1f2937;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .trip-date_TM {
            font-size: 10px;
            color: #6b7280;
        }

        .trip-status_TM {
            display: flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 8px 16px;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .status-avatar_TM {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .status-text_TM {
            display: flex;
            flex-direction: column;
        }

        .status-label_TM {
            font-size: 11px;
            color: #6b7280;
        }

        .status-value_TM {
            font-size: 10px;
            color: #1f2937;
            font-weight: 600;
        }

        .progress-info_TM {
            font-size: 10px;
            color: #6366f1;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .progress-bar_TM {
            width: 100%;
            height: 8px;
            background: #e5e7eb;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 25px;
        }

        .progress-fill_TM {
            height: 100%;
            background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 10px;
            width: 40%;
            animation: fillProgress 2s ease-out;
        }

        @keyframes fillProgress {
            from {
                width: 0%;
            }

            to {
                width: 40%;
            }
        }

        .trip-icons_TM {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .trip-icon-btn_TM {
            width: 45px;
            height: 45px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .trip-icon-btn_TM:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .heart-btn_TM {
            margin-left: auto;
        }

        .heart-icon_TM {
            font-size: 17px;
            color: #6366f1;
        }

        .calculator-section_TM {
            background: #FDFAEF;
            background: linear-gradient(208deg, rgba(253, 250, 239, 1) 0%, rgba(255, 254, 253, 1) 50%, rgba(232, 230, 244, 1) 100%);
            padding: 20px 60px;
            text-align: center;
        }

        .calculator-title_TM {
            font-size: 34px;
            color: #2c3e7f;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .calculator-title_TM .highlight_TM {
            color: #e91e8c;
            position: relative;
            display: inline-block;
        }

        .calculator-subtitle_TM {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 50px;
        }

        .calculator-card_TM {
            /* max-width: 90%;
            margin: 0 auto;
            background: linear-gradient(to bottom, rgba(226, 7, 137, 0.65) 0%, rgba(21, 93, 252, 0.60) 57%, rgba(255, 255, 255, 1.0) 100%);

            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2); */
            max-width: 90%;
            margin: 0 auto;
            background: linear-gradient(to bottom, rgb(122 40 148) 0%, rgba(21, 93, 252, 0.60) 57%, rgba(255, 255, 255, 1.0) 100%);
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }



        .input-row_TM {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .input-group_TM {
            text-align: left;
        }

        .input-label_TM {
            color: white;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 12px;
            display: block;
        }

        .input-wrapper_TM {
            position: relative;
        }

        .currency-symbol_TM {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-weight: 600;
        }

        .calc-input_TM {
            width: 100%;
            padding: 18px 20px 18px 45px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            font-size: 11px;
            background: rgba(255, 255, 255, 0.95);
            color: #1f2937;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .calc-input_TM:focus {
            outline: none;
            border-color: white;
            background: white;
        }

        .month-suffix_TM {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 10px;
        }

        .slider-value_TM {
            color: #ffffff;
            font-weight: 700;
            font-size: 13px;
            background: #2c3e7f;
            padding: 5px;
            border-radius: 8px;
        }

        .slider-input_TM {
            width: 100%;
            height: 8px;
            border-radius: 5px;
            background: rgb(255, 255, 255);
            outline: none;
            -webkit-appearance: none;
            appearance: none;
            margin: 15px 0;
        }

        .slider-input_TM::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #e91e8c;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(233, 30, 140, 0.4);
            transition: all 0.3s ease;
        }

        .slider-input_TM::-webkit-slider-thumb:hover {
            background: #c2185b;
            transform: scale(1.1);
        }

        .slider-input_TM::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #e91e8c;
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 6px rgba(233, 30, 140, 0.4);
            transition: all 0.3s ease;
        }

        .slider-input_TM::-moz-range-thumb:hover {
            background: #c2185b;
            transform: scale(1.1);
        }

        .slider-labels_TM {
            display: flex;
            justify-content: space-between;
            font-size: 9px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 5px;
        }

        .result-box_TM {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
        }

        .result-label_TM {
            font-size: 10px;
            color: #6b7280;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .result-amount_TM {
            font-size: 39px;
            color: #2563eb;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .result-period_TM {
            font-size: 11px;
            color: #6b7280;
            font-weight: 600;
        }

        .details-row_TM {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .detail-box_TM {
            /* background: rgba(255, 255, 255, 0.2); */
            background-color: #B5DCFF;
            border-radius: 15px;
            padding: 25px;
            backdrop-filter: blur(10px);
            margin-top: 20px;
        }

        .detail-box_TM:nth-child(2) {
            background-color: #EAE7F2;

        }

        .detail-label_TM {
            font-size: 10px;
            color: #2E308A;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .detail-value_TM {
            font-size: 17px;
            color: white;
            font-weight: 700;
            color: #2E308A;
        }

.step-text_TM h3{
margin-top: 0!important;
}

        .calculate-btn_TM {
            /* width: 50%; */
            padding: 20px;
            /* background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); */
            background: #ECBE50;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            color: #2563eb;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 10px rgb(208, 0, 173);
        }

        .calculate-btn_TM:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(251, 191, 36, 0.6);
        }

        .features-section_TM {
            background: #EAE8F5;
            background: linear-gradient(161deg, rgba(234, 232, 245, 1) 0%, rgba(255, 254, 253, 1) 50%, rgba(245, 240, 241, 1) 100%);
            padding: 80px 60px;
        }

        .features-title_TM {
            font-size: 34px;
            color: #2c3e7f;
            font-weight: 700;
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            display: flex;
            left: 50%;
            justify-content: center;
            transform: translateX(-50%);
        }

        /* .features-title_TM::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 200px;
            height: 8px;
            background: #e91e8c;
            border-radius: 4px;
        } */

        .features-grid_TM {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: center;
        }

        .features-column_TM {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .feature-card_TM {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 20px;
            padding: 30px;
            display: flex;
            gap: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 3px 9px #4A5565;
        }

        .feature-card_TM:hover {
            border-color: #e91e8c;
            box-shadow: 0 10px 30px rgba(233, 30, 140, 0.1);
            transform: translateY(-5px);
        }

        .feature-icon_TM {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0;
        }

        .feature-content h3 {
            font-size: 14px;
            color: #1f2937;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .feature-content p {
            font-size: 10px;
            color: #6b7280;
            line-height: 1.6;
        }

        .center-logo_TM {
            width: 280px;
            height: 320px;
            /* border: 4px solid #8b5cf6;
            border-radius: 0 0 140px 140px; */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            /* background: white; */
            /* box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
            position: relative; */
        }

        .center-logo_TM::before {
            content: '';
            position: absolute;
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            height: 30px;
            /* border: 4px solid #8b5cf6; */
            border-bottom: none;
            border-radius: 140px 140px 0 0;
        }

        .center-logo-text_TM {
            text-align: center;
        }

        .center-logo_TM .cub_TM {
            font-size: 17px;
            color: #8b5cf6;
            font-weight: 700;
        }

        .center-logo_TM .desire_TM {
            font-size: 34px;
            color: #e91e8c;
            font-weight: 700;
            line-height: 1;
        }

        .center-logo_TM .tagline_TM {
            font-size: 9px;
            color: #8b5cf6;
            margin-top: 8px;
        }

        .center-logo_TM .icon_TM {
            font-size: 42px;
            margin-top: 15px;
        }

        .tour-section_TM {
            padding: 60px;
            text-align: center;
            background: #F9E0EA;
            background: linear-gradient(165deg, rgba(249, 224, 234, 1) 0%, rgba(247, 236, 240, 1) 50%, rgba(247, 236, 240, 1) 100%);
        }

        .tour-notice_TM {
            /* background: #E5E4F7; */
            padding: 20px 30px;
            border-radius: 15px;
            width: 100%;
            display: flex;
            /* margin-bottom: 40px; */
        }

        .tour-notice-content_TM {
            display: flex;
            align-items: center;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .shield-icon_TM {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .shield-icon svg {
            width: 40px;
            height: 40px;
        }

        .tour-notice-text_TM {
            flex: 1;
            font-size: 11px;
            color: #4A5565;
            font-weight: 500;
            line-height: 1.5;
        }

        .start-now-btn_TM {
            flex-shrink: 0;
            padding: 12px 30px;
            background: #ECBE50;
            color: #2E308A;
            border: none;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .start-now-btn_TM:hover {
            background: #FFC700;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .start-now-btn_TM:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
        }

        .tour-title_TM {
            font-size: 29px;
            color: #1f2937;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .tour-description_TM {
            font-size: 13px;
            color: #4b5563;
            margin-bottom: 40px;
        }

        .video-placeholder_TM {
            max-width: 1200px;
            margin: 0 auto;
            /* height: 400px; */
            /* background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%); */
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
            cursor: pointer;
            position: relative;
        }

        .play-button_TM {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: absolute;
            background-color: black;
        }

        .play-button_TM:hover {
            transform: scale(1.1);
        }

        .play-button_TM::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 25px solid white !important;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            margin-left: 5px;
        }

        /* Video Modal Styles */
        .video-modal_TM {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s ease;
        }

        .video-modal_TM.active_TM {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-modal-content_TM {
            position: relative;
            width: 95%;
            max-width: 1400px;
            padding: 50px;
            background: #000;
            border-radius: 10px;
        }

        .video-modal-close_TM {
            position: absolute;
            top: 10px;
            right: 20px;
            color: #fff;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10001;
            line-height: 1;
            transition: color 0.3s ease;
        }

        .video-modal-close_TM:hover {
            color: #e91e8c;
        }

        .video-modal-iframe-container_TM {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }

        .video-modal-iframe-container_TM iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .faq-section_TM {
            background: white;
            padding: 80px 60px;
        }

        .faq-title_TM {
            font-size: 34px;
            color: #2c3e7f;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-title_TM .highlight_TM {
            color: #e91e8c;
            position: relative;
            display: inline-block;
        }

        .faq-container_TM {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item_TM {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item_TM.active_TM {
            border-color: #e91e8c;
        }

        .faq-question_TM {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 11px;
            font-weight: 500;
            color: #1f2937;
            position: relative;
            transition: all 0.3s ease;
        }

        .faq-question_TM:hover {
            color: #e91e8c;
        }



        .faq-chevron_TM {
            display: inline-block;
            width: 30px;
            height: 30px;
            background-image: url('/ta-in/assets/other-pages/cub-desire/images/Icon.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            transition: transform 0.3s ease;
        }

        .faq-item_TM.active_TM .faq-chevron_TM {
            transform: rotate(180deg);
        }

        .faq-answer_TM {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 30px;
        }

        .faq-item_TM.active_TM .faq-answer_TM {
            max-height: 300px;
            padding: 0 30px 25px 30px;
        }

        .faq-answer p {
            font-size: 11px;
            color: #6b7280;
            line-height: 1.6;
        }

        .cta-section_TM {
            background: linear-gradient(135deg, #2c3e7f 0%, #1e3a8a 50%, #1e40af 100%);
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section_TM::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%)  */
            background: linear-gradient(135deg, #2E308A 0%, #1E2939 100%, #2E308A 100%);

        }

        .cta-content_TM {
            position: relative;
            z-index: 2;
        }

        .cta-title_TM {
            font-size: 34px;
            color: white;
            font-weight: 700;
            margin-bottom: 40px;
        }

        .cta-main-button_TM {
            /* background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); */
            background: #ECBE50;
            border: none;
            padding: 12px 40px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            color: #2563eb;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 0px #ef36a3;
            display: inline-block;
        }

        .cta-main-button_TM:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
        }

        .footer_TM {
            background: #1f2937;
            padding: 40px 60px;
            color: white;
            text-align: center;
            /* display: none; */
        }

        .footer-content_TM {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer p {
            font-size: 10px;
            color: #9ca3af;
            margin-bottom: 20px;
        }

        .footer-links_TM {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 10px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #e91e8c;
        }

        .play-icon-section_TM {
            background-color: white;
            /* padding: 10px; */
            border-radius: 50%;
        }

        .video-iframe_TM{
            width:520px;
             height:440px;
        }

        @media (max-width: 968px) {
            .content-wrapper_TM {
                grid-template-columns: 1fr;
            }

            .calculator-section_TM,
            .features-section_TM {
                padding: 20px 10px;
            }

            .calculator-card_TM {
                width: 100%;
            }

            .left-section_TM {
                padding: 10px 30px;
            }

            .calculator-card_TM {
                max-width: 100%;
            }

            h1 {
                font-size: 20px;
            }

            .calculate-btn_TM {
                width: 102%;
            }

            .right-section_TM {
                min-height: 400px;
            }

            .savings-section_TM {
                padding: 20px 30px;
            }

            .savings-title_TM {
                font-size: 22px;
            }

            /* Slick carousel handles mobile layout, grid stays for desktop */
            .categories-grid_TM:not(.slick-initialized) {
                display: flex;
                flex-wrap: wrap;
            }

            .steps-wrapper_TM {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .steps-content_TM {
                padding-right: 0;
            }

            .steps-title_TM {
                font-size: 20px;
            }

            .calculator-card_TM {
                padding: 45px 20px;
            }

            .input-row_TM {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .result-amount_TM {
                font-size: 29px;
            }

            .details-row_TM {
                grid-template-columns: 1fr;
            }

            .features-grid_TM {
                grid-template-columns: 1fr;
            }

            .center-logo_TM {
                margin: 1px auto;
                display: none;
            }

            .result-box_TM {
                padding: 10px;
            }

            .calculator-title_TM,
            .features-title_TM,
            .tour-title_TM {
                font-size: 22px;
            }

            .video-placeholder_TM {
                height: 250px;
            }

            .steps-section_TM {
                padding: 20px 20px;
            }

            .tour-notice_TM {
                padding: 15px 20px;
            }

            .tour-notice-content_TM {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .tour-notice-text_TM {
                font-size: 10px;
            }

            .start-now-btn_TM {
                width: 100%;
                /* max-width: 200px; */
            }

            .tour-section_TM {
                padding: 20px;
            }

            .feature-card_TM {
                padding: 10px;
            }

            .faq-section_TM {
                padding: 60px 30px;
            }

            .faq-title_TM,
            .cta-title_TM {
                font-size: 22px;
            }

            .faq-question_TM {
                padding: 20px;
                font-size: 10px;
            }


            .faq-answer_TM {
                padding: 0 20px;
            }

            .faq-item_TM.active_TM .faq-answer_TM {
                padding: 0 20px 20px 20px;
            }

            .cta-section_TM {
                padding: 60px 30px;
            }

            .footer_TM {
                padding: 30px 20px;
            }

            .footer-links_TM {
                flex-direction: column;
                gap: 15px;
            }

            .video-modal-content_TM {
                width: 98%;
                max-width: 100%;
                padding: 30px 10px 10px 10px;
            }

            .video-modal-close_TM {
                top: 5px;
                right: 10px;
                font-size: 21px;
            }


        .logo-section_TM {
            margin-bottom: 10px;
            margin-top: 81px;
        }
        #rotating-text {
            position: relative;
            min-height: auto;
            overflow: hidden;
        }
        .traveler-image_TM {
            margin-top: 50px;
       
        }

        .category-card_TM {
            border-radius: 20px;
            padding: 20px 10px;
            width: 250px;
            height: 250px;
            margin: 0px 20px;
            display: flex !important;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .video-iframe_TM {
            width: 100%;
            height: 440px;
        }

        .feature-card_TM {
            
            align-items: center;
           
        }
        .slick-next:before{
            display: none;
        }
        .slick-prev:before{
            display: none;
        }
        .slick-slider .slick-track, .slick-slider .slick-list {
            padding: 1px 0px !important;
        }
        .trip-image_TM {
            width: 113%;
            object-fit: cover;
            margin-top: -100px;
            margin-bottom: -64px;
        }
        }