@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Hind Siliguri", sans-serif;
}

:root {
    --tt_primary_color: #00194c;
    --tt_sec_color: #646464;
}

/* Tech Taranga Header */
.techtaranga_header {
    padding: 13px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.techtaranga_header .techtaranga-logo {
    height: 55px;
    width: auto;
}

.techtaranga_header .nav-menu {
    list-style-type: none;
    margin: unset;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.techtaranga_header ul li a {
    text-decoration: none;
    color: var(--tt_primary_color);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.techtaranga_header ul li a:hover {
    color: #00194c;
}

.techtaranga-button {
    background: linear-gradient(81.57deg, #00194c 29.59%, #003a8c 94.75%);
    padding: 8px 25px;
    color: white !important;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 25, 76, 0.2);
    transition: all 0.3s ease;
}

/* Dropdown Menu Customization */
.nav-menu .dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: middle;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-bottom: 0;
    border-left: 0.35em solid transparent;
}

.nav-menu .dropdown-menu {
    display: none;
    /* Let Bootstrap handle show/hide */
    border: none;
    min-width: 170px;
    padding: 10px 0;
}

.nav-menu .dropdown-menu.show {
    display: block;
    /* Override flex if inherited */
}

.nav-menu .dropdown-item {
    display: block;
    width: 100%;
    color: var(--tt_primary_color);
    transition: all 0.2s ease;
}

.nav-menu .dropdown-item:hover {
    background-color: rgba(0, 25, 76, 0.05);
    color: #fb5518;
}

.techtaranga-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 25, 76, 0.3);
}

.nav-auth-link {
    text-decoration: none;
    color: var(--tt_primary_color);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.nav-auth-link:hover {
    color: #00194c;
}

.dashboard-badge {
    background: rgba(0, 25, 76, 0.05);
    color: var(--tt_primary_color);
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(0, 25, 76, 0.1);
    transition: all 0.3s ease;
}

.dashboard-badge:hover {
    background: var(--tt_primary_color);
    color: white !important;
}

.logout-icon-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    color: #00194c;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logout-icon-btn:hover {
    background: #00194c;
    color: white;
}

/* Banner Area */
.techtaranga-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 160px;
}

.techtaranga-banner:before {
    inset: 0;
    z-index: -3;
    content: "";
    position: absolute;
    background: linear-gradient(97.41deg, #fef0ec -.75%, #eef4f3 45.79%, #f5f2f0 96.95%);
}

.ball {
    opacity: 1;
    z-index: -2;
    position: absolute;
    border-radius: 50%;
}

/* Profile Sidebar Menu Styles */
.profile-sidebar-menu .list-group-item {
    transition: all 0.3s ease;
    background: transparent;
}

.profile-sidebar-menu .list-group-item.active {
    background: rgba(0, 25, 76, 0.05) !important;
    color: #00194c !important;
}

.profile-sidebar-menu .menu-icon-bg {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f8f9fa;
    color: var(--tt_primary_color);
    transition: all 0.3s ease;
}

.profile-sidebar-menu .list-group-item.active .menu-icon-bg {
    background: linear-gradient(81.57deg, #00194c 29.59%, #003a8c 94.75%);
    color: #fff;
}

/* Template Card Modern Styles */
.template-card-modern {
    cursor: pointer;
    transition: all 0.3s ease;
}

.template-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 25, 76, 0.3) !important;
}

.template-card-modern:hover .hover-action {
    opacity: 1 !important;
}

.template-preview {
    transition: all 0.3s ease;
}

.template-card-modern:hover .template-preview {
    transform: scale(1.02);
}

.transition-all {
    transition: all 0.3s ease !important;
}

.banner_subtitle {
    color: #00194c;
    font-size: 40px;
    margin-bottom: 22px;
    font-weight: 600;
}

.banner_title {
    background: linear-gradient(81.57deg, #ee0979 29.59%, #fc5b11 94.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 51px;
    font-weight: bolder;

}

.section-title-element {
    height: 4px;
    width: 30px;
    background: #0a91fc;
    border-radius: 40px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: bold;
    background: linear-gradient(90deg, #306db5 12.33%, #4948ff 33.75%, #119ffc 60.02%, #dd2a4b 89.93%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.section-title .sub-title {
    font-weight: 600;
    margin-top: 7px;
    color: var(--tt_sec_color);
    font-size: 19px;
    line-height: 28px;
}

/* Techtaranga Demo Section */
.techtaranga_demo {
    padding: 90px 0;
    background: linear-gradient(270deg, #1673a21f 4.98%, #2881d31a 28.83%, #cd36ae0f 58.08%, #dd2a4b0d 91.38%);
}

.techtaranga_demo_script {
    transition: 0.4s;
}

.techtaranga_demo_script .demo-img img {
    border-radius: 20px;
    border: 5px solid white;
    filter: drop-shadow(0px 8px 15px rgba(16, 63, 78, .08));
    transition: 0.4s;
}

.techtaranga_demo_script .demo-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.techtaranga_demo_script .demo-meta .script_name {
    text-decoration: none;
    font-size: 22px;
    line-height: 0;
    font-weight: 600;
    color: var(--tt_primary_color);
}

.techtaranga_demo_script .demo-meta .script_demo {
    background: linear-gradient(81.57deg, #ee0979 29.59%, #fc5b11 94.75%);
    display: inline-block;
    padding: 2px;
    border-radius: 38px;
}

.techtaranga_demo_script .demo-meta .script_demo a {
    display: inline-block;
    background-color: white;
    border-radius: 33px;
    padding: 1px 22px;
    text-decoration: none;
    color: var(--tt_primary_color);
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.techtaranga_demo_script .demo-meta .script_demo a:hover {
    background-color: transparent;
    color: white;
}

.techtaranga_demo_script:hover .demo-img img {
    border-color: #0a91fc;
}

.techtaranga_demo_script:hover {
    transform: translateY(-10px);
}

/* Logo Scroll - Infinite Smooth Animation */
.logo-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.techtaranga-logo-scroll {
    display: flex;
    gap: 60px;
    width: max-content;
}

.logo-scroll-track {
    display: flex;
    gap: 60px;
    animation: infiniteScroll 20s linear infinite;
}

.logo-scroll-track a {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-scroll-track a:hover {
    transform: scale(1.1);
}

.logo-scroll-track img {
    height: 50px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.logo-scroll-track a:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Features */
.techtaranga_features {
    padding: 90px 0;
    text-align: center;

    position: relative;
    z-index: 1;
    overflow: hidden;
}

.techtaranga_features_item img {
    height: 80px;
}

.techtaranga_features_item {
    height: 100%;
    padding: 20px 10px;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(270deg, #24577103 4.98%, #2881d305 28.83%, #cd36ae12 58.08%, #dd2a4b05 91.38%);
}

.techtaranga_features_item h4 {
    font-weight: 500;
    font-size: 18px;
    color: var(--tt_primary_color);
    margin-top: 10px;
    margin-bottom: 0;
}

/* Counter Up */
.counter-bg {
    background-size: cover;
    background-position: center;
    padding: 90px 0 90px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.counter-item {
    text-align: center;
}

.counter-item .count {
    margin-bottom: 5px;
    font-weight: 800;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: .8;
}

.counter-item p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 20px;
}

.counter-shape-wrap img {
    position: absolute;
    z-index: -1;
}

.counter-shape-wrap img:nth-child(1) {
    left: 10%;
    top: 25%;
    animation: animationFramesOne 15s linear infinite;
}

.counter-shape-wrap img:nth-child(2) {
    right: 10%;
    top: 45%;
    animation: animationFramesOne 20s linear infinite;
}

.c_num_plus {
    background: linear-gradient(81.57deg, #ee0979 29.59%, #fc5b11 94.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
}

.c_number {
    color: var(--tt_primary_color);
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg);
    }

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

@-webkit-keyframes animationFramesOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }

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

.animationFramesOne {
    -webkit-animation: animationFramesOne 12s linear infinite;
    animation: animationFramesOne 12s linear infinite;
}

.inner-counter-shape {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.video-responsive {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 12px;
}

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

.techtaranga_video {
    margin-top: -230px !important;
    z-index: 1;
    position: relative;
    border: 6px solid white;
    width: 50%;
    border-radius: 17px;
    overflow: hidden;
    filter: drop-shadow(0px 8px 15px rgba(16, 63, 78, .2));
}

/* Pricing Table */
.techtaranga_pricing {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.techtaranga_pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

.pricing_table {
    position: relative;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing_table:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.pricing_table.active_plan {
    border: 2px solid #ee0979;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(238, 9, 121, 0.15);
}

.pricing_table.active_plan:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular_badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(81.57deg, #ee0979 29.59%, #fc5b11 94.75%);
    color: #fff;
    padding: 5px 50px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing_header {
    margin-bottom: 25px;
}

.original_price {
    font-size: 27px;
    font-weight: 800;
    color: gray;
    text-decoration-color: #808080 !important;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.title-table {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--tt_primary_color);
    background: rgba(0, 25, 76, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.active_plan .title-table {
    background: rgba(238, 9, 121, 0.1);
    color: #fb5518;
}

.pricing_table .price {
    font-size: 48px;
    font-weight: 800;
    margin: 10px 0 5px;
    color: var(--tt_primary_color);
    background: linear-gradient(81.57deg, #00194c 0%, #2a4371 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.active_plan .price {
    background: linear-gradient(81.57deg, #ee0979 29.59%, #fc5b11 94.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing_table .text-muted {
    font-size: 15px;
    color: #777;
    margin-bottom: 0;
}

.pricing_table .pc_separetor {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #e7e7e7, transparent);
    margin: 0 auto 30px;
}

.features {
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
    padding-left: 10px;
}

.features li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #6c6c6c;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.features li i {
    color: #0a91fc;
    font-size: 18px;
    min-width: 25px;
}

.active_plan .features li i {
    color: #fb5518;
}

.pricing_footer {
    margin-top: auto;
}

.pricing_footer .techtaranga-button {
    display: block;
    width: 100%;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    background: #fff;
    color: var(--tt_primary_color);
    border: 2px solid var(--tt_primary_color);
    box-shadow: none;
    transition: all 0.3s ease;
}

.pricing_footer .techtaranga-button:hover {
    background: var(--tt_primary_color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 25, 76, 0.2);
}

.active_plan .pricing_footer .techtaranga-button {
    background: linear-gradient(81.57deg, #ee0979 29.59%, #fc5b11 94.75%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(238, 9, 121, 0.3);
}

.active_plan .pricing_footer .techtaranga-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(238, 9, 121, 0.4);
}

/* CTA Section */
.techtaranga_cta {
    background: linear-gradient(81.57deg, #ee0979 29.59%, #fc5b11 94.75%);
    padding: 80px 0;
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta_title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta_subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    opacity: 0.9;
}

.techtaranga_cta .cta_btn {
    background: white;
    color: #fb5518 !important;
    border: none;
    padding: 15px 45px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.techtaranga_cta .cta_btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: #fc5b11 !important;
    background: #fff;
}

/* FAQ Section */
.techtaranga_faq {
    padding: 100px 0;
    background: linear-gradient(97.41deg, #fef0ec -.75%, #eef4f3 45.79%, #f5f2f0 96.95%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.techtaranga_faq .accordion-item {
    border: none;
    background: #fff;
    border-radius: 15px !important;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.techtaranga_faq .accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.techtaranga_faq .accordion-button {
    font-size: 18px;
    font-weight: 700;
    color: var(--tt_primary_color);
    padding: 25px 30px;
    background: #fff;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.techtaranga_faq .accordion-button:not(.collapsed) {
    color: #fb5518;
    background: #fff;
}

.techtaranga_faq .accordion-button::after {
    background-image: none;
    content: "\f067";
    /* FontAwesome Plus */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--tt_primary_color);
    font-size: 18px;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.techtaranga_faq .accordion-button:not(.collapsed)::after {
    content: "\f068";
    /* FontAwesome Minus */
    color: #fb5518;
    transform: rotate(180deg);
}

.techtaranga_faq .accordion-body {
    padding: 0 30px 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Footer */
.techtaranga_footer {
    background-color: #00194c;
    color: #fff;
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    height: 50px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(81.57deg, #ee0979 29.59%, #fc5b11 94.75%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
    color: #fc5b11;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.contact-info li i {
    color: #fc5b11;
    margin-right: 10px;
    margin-top: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(81.57deg, #ee0979 29.59%, #fc5b11 94.75%);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Mobile Menu and Navigation */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-menu .nav-link {
    text-decoration: none;
    color: var(--tt_primary_color);
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu .nav-link:hover {
    color: #fc5b11;
}

.mobile-menu-toggle {
    background: linear-gradient(81.57deg, #ee0979 29.59%, #fc5b11 94.75%);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(238, 9, 121, 0.3);
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(238, 9, 121, 0.4);
}

.offcanvas {
    background: linear-gradient(135deg, #00194c 0%, #2a4371 100%);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.offcanvas-logo {
    height: 40px;
}


.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 5px;
}

.mobile-nav-menu .nav-link {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
    color: #fc5b11;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Active Nav Link */
.nav-link.active {
    color: #fc5b11;
}

/* Header Mobile Responsive */
@media (max-width: 767px) {
    .techtaranga_header {
        padding: 10px 0;
    }

    .techtaranga-logo {
        height: 40px !important;
    }
}

.separator-vertical-border {
    border-right: 1px solid #e2e2e2;
}

.separator-vertical-border-2 {
    border-right: 1px solid #e2e2e2;
}

@media (max-width: 767px) {
    .banner_subtitle {
        font-size: 20px;
        margin-bottom: 22px;
        font-weight: bold;
    }

    .banner_title {
        font-size: 36px;
    }

    .techtaranga_video {
        margin-top: -187px !important;
        width: 76%;
    }

    .section-title h2 {
        font-size: 27px;
        line-height: 40px;
    }

    .separator-vertical-border-2 {
        border-right: unset;
    }

    .separator-horizontal-border {
        border-top: 1px solid #e2e2e2;
        margin: 15px 0px;
    }

    .contact-info li {
        justify-content: center;
    }

    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Profile Page Modern Styles */
.profile-main-wrapper {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.profile-container {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.profile-avatar-custom {
    width: 100px;
    height: 100px;
    font-size: 42px;
    background: linear-gradient(81.57deg, #00194c 29.59%, #003a8c 94.75%) !important;
    border: 4px solid #fff;
}

.glass-subscription-card {
    background: linear-gradient(81.57deg, #00194c 29.59%, #003a8c 94.75%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 25, 76, 0.15) !important;
}

.package-badge-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: #fbb238;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-text-title {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 2px;
}

.package-text-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

.info-label-fixed {
    width: 70px;
}

.heading-line-custom {
    width: 5px;
    height: 25px;
    background: #00194c;
    border-radius: 10px;
}

.heading-line-opinion {
    width: 5px;
    height: 25px;
    background: #0a91fc;
    border-radius: 10px;
}

.template-preview-container {
    height: 140px;
    position: relative;
}

.template-preview-opinion {
    height: 100px;
}

.template-hover-action {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.bg-ball-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 25, 76, 0.08);
    top: -50px;
    left: -100px;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.bg-ball-2 {
    width: 250px;
    height: 250px;
    background: rgba(10, 145, 252, 0.08);
    bottom: 10%;
    right: -50px;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.error-404-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.error-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.error-code {
    font-size: clamp(100px, 20vw, 200px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0;
    background: linear-gradient(81.57deg, #00194c 29.59%, #003a8c 94.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0, 25, 76, 0.1));
    animation: float 6s ease-in-out infinite;
}

.error-illustration {
    position: relative;
    height: 300px;
    margin-top: -50px;
    margin-bottom: 30px;
}

.error-message h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #00194c;
    margin-bottom: 15px;
}

.error-message p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

.back-home-btn {
    background: linear-gradient(81.57deg, #00194c 29.59%, #003a8c 94.75%);
    color: white !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 25, 76, 0.2);
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 25, 76, 0.3);
}

.rocket-icon {
    font-size: 50px;
    color: #00194c;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 3s ease-in-out infinite;
}

@keyframes float {

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

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

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    50% {
        transform: translate(-50%, -70%) rotate(45deg);
    }
}

/* Decorative Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.4;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #00194c;
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #003a8c;
    bottom: -150px;
    right: -150px;
}

/* Features Item Styling */
.techtaranga_features_item {
    background: #fff;
    border: 1px solid #00194c0f;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.techtaranga_features_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #00194c29 !important;
}

.techtaranga_features_item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0px;
    margin-top: 15px;
}

/* Template Card */
.template-card-modern {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.template-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--tt_primary_color) !important;
}

.template-preview {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.template-preview img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    display: block;
}

.template-card-modern:hover .template-preview img {
    transform: scale(1.1);
}

/* Premium Badge */
.premium-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3);
}

/* Favorite Heart Button */
.tt-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #ff4757;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tt-fav-btn:hover {
    transform: scale(1.1);
    background: #fff;
}

/* Hover Action */
.template-hover-action {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 25, 76, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    z-index: 5;
}

.template-card-modern:hover .template-hover-action {
    opacity: 1;
}

/* Gradient Header Bar */
.tt-gradient-header {
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.tt-gradient-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--tt_primary_color), #4834d4);
}

.tt-text-gradient {
    background: linear-gradient(81.57deg, #ee0979 29.59%, #fc5b11 94.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .techtaranga_features_item h4 {
        font-size: 11px;
    }

    .techtaranga_features_item img {
        height: 40px !important;
    }
}


.tt-cta-widget {
    background: linear-gradient(135deg, #e8001a 0%, #c20015 60%, #ff2d44 100%);
    box-shadow: 0 8px 30px rgba(220, 0, 30, 0.35);
}

.tt-cta-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.tt-cta-blob-1 {
    width: 130px;
    height: 130px;
    top: -40px;
    right: -35px;
}

.tt-cta-blob-2 {
    width: 90px;
    height: 90px;
    bottom: -25px;
    left: -20px;
}

.tt-cta-icon-wrap {
    width: 58px;
    height: 58px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.tt-cta-icon-wrap i {
    font-size: 24px;
    color: #e8001a;
}

.tt-cta-phone {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    margin-top: 2px;
    transition: opacity 0.2s;
}

.tt-cta-phone:hover {
    opacity: 0.85;
}

.package-card-premium {
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.package-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--tt_primary_color);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.card-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.03;
    pointer-events: none;
    transform: rotate(-15deg);
}

.price-badge {
    background: linear-gradient(135deg, var(--tt_primary_color), #00d2ff);
}

/* Mobile Bottom Navigation Layout */
.mobile-bottom-nav {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    height: 65px;
    background: rgba(255, 255, 255, 0.8) !important;
    /* Light Glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 2000;
    padding: 0 5px;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-bottom-nav .nav-item a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(0, 25, 76, 0.4);
    /* Primary color with low opacity */
    width: 100%;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.15rem;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.mobile-bottom-nav .nav-item span {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-bottom-nav .nav-item.active a {
    color: #00194c !important;
}

.mobile-bottom-nav .nav-item.active i {
    transform: translateY(-2px);
}

.active-indicator {
    position: absolute;
    bottom: 6px;
    width: 4px;
    height: 4px;
    background: #00194c;
    border-radius: 50%;
    display: none;
}

.mobile-bottom-nav .nav-item.active .active-indicator {
    display: block;
}

/* Studio Button Extension */
.studio-nav-item {
    margin-top: -30px;
}

.studio-btn .studio-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00194c, #004dc7);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 25, 76, 0.2);
    border: 3px solid #fff;
    color: #fff !important;
    transform: rotate(45deg);
}

.studio-icon-wrapper i {
    font-size: 1.2rem !important;
    margin-bottom: 0 !important;
    transform: rotate(-45deg);
}

/* Dark Premium Sidebar (Offcanvas) */
.account-mobile-offcanvas {
    background: #1a1e21 !important;
    /* Deeper Dark */
    color: #fff !important;
    width: 300px !important;
    border-radius: 0 30px 30px 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mac controls */
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

/* User Header */
.avatar-circle {
    width: 50px;
    height: 50px;
    background: rgba(45, 130, 255, 0.1);
    border: 2px solid rgba(45, 130, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2d82ff;
}

/* Mobile Menu Links */
.mobile-link {
    padding: 12px 20px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 15px !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-link i {
    width: 25px;
    font-size: 1.1rem;
}

.mobile-link.active {
    background: #2d82ff !important;
    color: #fff !important;
    box-shadow: 0 8px 15px rgba(45, 130, 255, 0.3);
}

.mobile-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
}

/* Studio Modal Aesthetics */
.studio-modal-glass {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px);
    border-radius: 30px !important;
}

.studio-modal-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--tt_primary_color), #004dc7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 25, 76, 0.2);
}

.studio-nav-card {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 10px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.studio-nav-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--tt_primary_color);
}

.studio-nav-card h6 {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
}

.card-icon-bg {
    background: #fff;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

@media (max-width: 576px) {
    .studio-modal-glass {
        border-radius: 30px 30px 0 0 !important;
        position: absolute;
        bottom: 0;
        width: 100%;
    }
}

.glass-login-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.container-login {
    position: relative;
    z-index: 5;
}

.min-vh-100 {
    min-height: 100vh !important;
}
.custom-alert {
    background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.custom-alert i {
    font-size: 18px;
}

.custom-btn {
    background: #fff;
    color: #ff1a1a;
    border-radius: 50px;
    padding: 6px 14px;
    font-weight: 500;
    transition: 0.3s;
}

.custom-btn:hover {
    background: #000;
    color: #fff;
}