@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 ul {
    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: 20px;
    font-weight: 600;
}

.techtaranga-button {
    background: linear-gradient(81.57deg, #ee0979 29.59%, #fc5b11 94.75%);
    padding: 6px 40px;
    color: white;
    text-decoration: none;
    font-size: 22px;
    display: inline-block;
    font-weight: 500;
    border-radius: 42px;
    box-shadow: -8px 4px 20px #fc3b5040;
}

/* 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%;
}

.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-image: url(/assets/img/background/bg-pattern-image-min.webp);
    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;
    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;
}

/* 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; 
}

.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.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%);
    }
} 
.w-app {
    position: fixed;
    bottom: 14px;
    z-index: 99999;
    background: #0dc143;
    border-radius: 50px;
    right: 21px;
    padding-left: 0px;
    padding-right: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.w-app a {
    display: flex;
    align-items: center;
}

.w-app img {
    height: 80px;
    width: 80px;
}

.w-app .help-text {
    color: white;
    display: none;
    padding-left: 10px;
}

.w-app.opened {
    padding-left: 38px;
    padding-right: 5px;
}

.w-app.opened .help-text {
    display: block;
}
.msg-not {
    position: fixed;
    height: 20px;
    display: block;
    width: 20px;
    bottom: 78px;
    right: 28px;
    border-radius: 10px;
    background: #fbb238;
}
.cst_txtde{
    text-decoration: underline !important;
    text-decoration-color: #0dc143 !important;
}
.close_custom {
    position: absolute;
    top: 30px;
    right: 30px;
}