﻿/* ---------------------------------------------------- */
/* 1. Font Family (Spoqa Han Sans Neo) */
/* ---------------------------------------------------- */
@font-face {
    font-family: 'SpoqaHanSansNeo-Light';
    src: url('fonts/SpoqaHanSansNeo-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SpoqaHanSansNeo-Regular';
    src: url('fonts/SpoqaHanSansNeo-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SpoqaHanSansNeo-Medium';
    src: url('fonts/SpoqaHanSansNeo-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SpoqaHanSansNeo-Bold';
    src: url('fonts/SpoqaHanSansNeo-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---------------------------------------------------- */
/* 1. CSS VARIABLES (For easy theme and color management) */
/* ---------------------------------------------------- */
:root {
    --color-primary-blue: #003d82;
    --color-hover-blue: #002b5c;
    --color-primary-orange: #F58220;
    --color-light-orange: #fff3e0;
    --color-background-gray: #f5f5f5;
    --color-text-dark: #333;
    --color-text-mid: #9E9E9E;
    --color-border-light: #ddd;
    --color-border-lighter: #eee;
    --max-width: 1200px;
    --bs-body-font-family-light: 'SpoqaHanSansNeo-Light',sans-serif,system-ui,-apple-system;
    --bs-body-font-family-regular: 'SpoqaHanSansNeo-Regular',sans-serif,system-ui,-apple-system;
    --bs-body-font-family-medium: 'SpoqaHanSansNeo-Medium',sans-serif,system-ui,-apple-system;
    --bs-body-font-family-bold: 'SpoqaHanSansNeo-Bold',sans-serif,system-ui,-apple-system;
}
/* fonts */
.font-light {
    font-family: var(--bs-body-font-family-light) !important;
    font-weight: 300 !important;
}

.font-regular {
    font-family: var(--bs-body-font-family-regular) !important;
    font-weight: 400 !important;
}

.font-medium {
    font-family: var(--bs-body-font-family-medium) !important;
    font-weight: 500 !important;
}

.font-bold {
    font-family: var(--bs-body-font-family-bold) !important;
    font-weight: 700;
}
/* ---------------------------------------------------- */
/* 2. BASE & UTILITIES */
/* ---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: SpoqaHanSansNeo, sans-serif !important;
    line-height: 1.6;
    color: var(--color-text-dark);
    /* Set the common background from the report pages */
    background: #fff;
}

.container {
    max-width: 87%;
    margin: 0 auto;
    padding: 0 0px;
}

.logo {
    font-size: 16px;
    flex-grow: 1;
    display: flex;
    align-items: baseline;
}


.btn {
    padding: 17px 30px !important;
    border: none !important;
    border-radius: 29px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s !important;
}

/* Override for header button in report pages */

.header .btn {
    padding: 5px 14px !important;
    border-radius: 17px !important;
    font-size: 13px !important;
}

.openDmatbtn {
    padding: 8px 30px !important;
}

.btn-primary {
    background: #043B72 !important;
    color: #FFF !important;
}

.btn-research-calls {
    background-color: #FFF;
    border: 1px solid #F58220 !important;
    margin: 0px 10px;
    height: 33px;
}

.btn-primary:hover {
    background: #043B72 !important;
}

/* Icons/Actions (Used in report tables/cards) */
.icon-btn {
    width: 29px;
    height: 29px;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--color-primary-orange);
    font-size: 14px;
}

/*   .icon-btn:hover {
        background: var(--color-primary-orange);
        color: white;
        border-color: var(--color-primary-orange);
    }*/

/* ---------------------------------------------------- */
/* 3. LANDING PAGE SECTIONS (.hero - researchLanding.cshtml) */
/* ---------------------------------------------------- */
/*RK for home page video in background*/
/*.hero {
    background: linear-gradient(rgba(204, 102, 0, 0.85), rgba(204, 102, 0, 0.85)), /*url('~/Content/images/research/Rectangle148596.svg') center/cover*//*;
    background-color: #F58220;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    height: 730px;
    border: 1px solid #707070;
}*/
.hero {
    position: relative; /* Required for absolute children */
    height: 730px;
    width: 100%;
    overflow: hidden; /* Clips the video to section bounds */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    border: 1px solid #707070;
}
 
.logoimg {
    width: 274px;
    height: 41px;
}
 
/* Background Video Styling */
.hero-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1; /* Lowest layer */
    transform: scale(1.0);
    object-fit: cover; /* Ensures video fills area without stretching */
    margin-top: 265px;
    /*margin-left: 340px;*/
}
 
/* Color Overlay to match your brand style */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #043B72 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    z-index: 2; /* Sits above video, below text */
    opacity: 0.28;
}
 
/* Container for your text/logos */
.hero-content {
    position: relative;
    z-index: 3; /* Sits at the very top */
    color: white; /* Ensures text is readable over the overlay */
    margin-bottom: 15px;
}
 
.mobile-video{
    display: none;
}
 
.desktop-video{
    display: block;
}

.hero h1 {
    font-size: 74px;
    margin: 20px 0;
    font-weight: 300;
    letter-spacing: 2px;
    color: #FFF;
    font-family: var(--bs-body-font-family-light);
    font-weight: 300;
    text-shadow: 0px 3px 10px #00000059;
}

.homeHeader { /*rakesh new*/
    text-align: center;
    font-family: SpoqaHanSansNeo-Bold !important;
    letter-spacing: 0px;
    text-shadow: 0px 3px 10px #00000059 !important;
    color: #F58220 !important;
    line-height: 77px;
}
 
/*RK for home page video in background end*/

.hero-logo {
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: normal;
}

.linepart {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-logo strong {
    font-weight: bold;
}

.hero p {
    font-size: 27px;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: var(--bs-body-font-family-regular);
    color: #fff;
    text-shadow: 0px 3px 10px #00000059;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 90px;
}

.hero-note {
    font-size: 16px;
    font-weight: bold;
}

.research-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 80px auto;
    /*padding: 0px 45px;*/
    gap: 11%;
}

.research-content h2 {
    font-size: 40px;
    color: #000000;
    margin-bottom: 20px;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
}

.research-content-des p {
    font-size: 16px;
    color: #757575;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
    margin-bottom: 10px;
}
/*.research-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.research-content li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    color:#757575;
}

    .research-content li:before {
        content: "•";
        position: absolute;
        left: 0;
        color: #757575;
        font-weight: bold;
        margin:0px 10px;
    }*/

.research-image {
    flex-shrink: 0;
    padding: 0px 30px;
}

    .research-image img {
        max-width: 400px;
        width: 100%;
    }

.expert-research-text {
    color: #F58220;
    font-size: 24px;
    letter-spacing: 0.12px;
    margin: 20px 0px;
    font-family:var(--bs-body-font-family-bold);
    font-weight:700;
}
/*.background-text-container {
    height: 100px;
    background-image: url('/Content/images/research/Ribbon.svg');
    background-size: auto;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    width: 511px
}*/
/* Stats Section */
.stats-section {
    background: linear-gradient(90deg, var(--color-primary-orange), #ff6600);
    color: white;
    padding: 40px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: var(--max-width);
    margin: 0 auto;
    flex-wrap: wrap;
}
/*/22-01-2026/*/
.stat-item {
    text-align: center;
    padding: 0px;
}
/*/23-01-2026/*/

.stat-horizontal-row h5 {
    margin-top: 5px;
}
.stat-horizontal-row h3 {
 margin: 0;
}
/*end*/
    .stat-number {
    font-size: 42px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
}

.stats-note {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.9;
}

/* ---------------------------------------------------- */
/* 4. REPORT PAGE SECTIONS (Header, Nav, Layout) */
/* ---------------------------------------------------- */

.header {
    background: white;
    padding: 14px 98px 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.linelogo {
    width: 79px;
    border: 1px solid #FFFFFF;
}
/*.hero-banner {
    background: linear-gradient(135deg, #cc6600, var(--color-primary-orange));
    color: white;
    text-align: center;
    padding: 60px 40px;
    margin: 0 40px 40px;
    border-radius: 15px;
}

    .hero-banner h1 {
        font-size: 42px;
        margin-bottom: 10px;
        font-weight: 300;
        letter-spacing: 1px;
    }

    .hero-banner p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-banner .btn {
        background: white;
        color: var(--color-primary-blue);
        font-weight: bold;
    }*/
/*.tab-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}*/

.tab-content {
    flex-shrink: 0;
    padding: 16px;
    gap: 12px;
}
.tab-btn {
    background: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-mid);
    transition: all 0.3s;
}

    .tab-btn.active {
        background: #043B72;
        color: #fff;
    }
   /* .tab-btn:hover {
        color: #000000;
    }*/
.active-tab {
    background:  #043B72 ;
    color: white;
}

.content-layout {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.sidebar {
    width: 292px;
    flex-shrink: 0;
    background-color: #F8F8F8;
    height: max-content;
    border-radius: 8px;
}

.sidebar-menu {
    /* background: white;*/
    border-radius: 10px;
    overflow: hidden;
    margin: 0px 19px;
}

.sidebar-item {
    padding: 15px 20px;
    border-bottom: 1px solid #d3d3d3;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

    .sidebar-item a {
        color: #000000;
        text-decoration: none !important;
    }

        .sidebar-item a:hover,
        .sidebar-item a:active {
            color: #000;
        }

    .sidebar-item:hover,
    .sidebar-item.active {
        background: #D8E4FE;
        color: #000;
        font-weight: bold;
        border-radius: 8px;
        margin: 10px 0;
    }

/* Main Content area for sector/fundamental reports */
.main-content {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 0px;
    width:80%;
}

.section-title {
    font-size: 32px;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    font-weight: 400;
    font-family: var(--bs-body-font-family-regular)
}

.section-description {
    font-size: 14px;
    color: var(--color-text-mid);
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
}

/* Report Grid/Card Styles (for researchReport.cshtml) */
.research-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.research-card {
    height:fit-content;
    background: white;
    border-radius: 5px;
    padding: 15px 20px;
    transition: all 0.3s;
    border: 1px solid #EAEAEA;
}

    .research-card:hover {
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        transform: translateY(-3px);
        border: 1px solid #EAEAEA;
    }

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px !important;
    gap:40px;
}

.card-tag {
    /* background: var(--color-light-orange);*/
    color: var(--color-primary-orange);
    border-radius: 15px;
    font-size: 13px;
    font-family: var(--bs-body-font-family-bold);
    font-weight: 700;
}

.card-type {
    font-size: 13px;
    color: #9E9E9E;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
}

.card-title {
    font-size: 15px;
    color: #000;
    margin-bottom: 10px !important;
    font-family: var(--bs-body-font-family-bold);
    font-weight: 700;
}

.card-description {
    font-size: 13px;
    color: #757575;
    line-height: 1.6;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
    margin-bottom:10px !important;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    height:30px;
}

.card-date {
    font-size: 13px;
    color: #9E9E9E;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
    margin-top:10px;
}

.card-actions {
    display: flex;
    gap: 10px;
    /* margin-top:15px; */
	align-items: center;
}

.view-all-link {
    text-align: right;
    margin-top: 20px;
}

.view-more {
    color: #F58220;
    font-size: 13px;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
    border-bottom: 1px solid #EAEAEA !important;
    margin-bottom: 5px !important;
    padding-bottom: 15px !important;
}

.view-all-link a {
    color: var(--color-primary-orange);
    text-decoration: none;
    font-size: 14px;
    font-family: var(--bs-body-font-family-bold);
    font-weight: 700;
}

/* Video Section Adjustments (When used in report pages) */
.video-section {
    background: #F7F7F7;
    margin: 60px 0;
    text-align: center;
}

    .video-section h2 {
        color: #000000;
        font-size: 40px;
        font-family: var(--bs-body-font-family-regular);
        font-weight: 400;
        text-align: center;
        margin: 40px 25%;
    }
/* Filter/Comment/Table Styles (for fundamentalReports.cshtml/technicalReport.cshtml) */
.comment-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.comment-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

    .comment-btn.active {
        background: var(--color-primary-orange);
        color: white;
    }

    .comment-btn:not(.active) {
        background: #f0f0f0;
        color: var(--color-text-mid);
    }

.comment-count {
    margin-left: 5px;
    font-weight: normal;
}
.main-report-row td {
    padding: 18px 20px; /* SAME space for ALL columns */
    vertical-align: middle;
    box-sizing: border-box;
}
    .main-report-row td:nth-child(2) {
        width: 50%;
        padding:20px 50px 20px 10px;
    }
.filter-section {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background-color: #F8F8F8;
    padding: 3px;
    width: 100%;
}

.filter-group {
    flex: 1;
}

.filter-label {
    display: block;
    font-size: 14px;
    color: #252528;
    margin-bottom: 8px;
    margin-left: 15px;
    font-weight: 500;
    font-family: var(--bs-body-font-family-medium);
}

.filter-select {
    width: 160px;
    padding: 12px 15px;
    border: none;
    border-radius: 73px;
    font-size: 14px;
    color: #252528;
    background: white;
    cursor: pointer;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}
.filter-select-input {
    width: 160px;
    padding: 12px 15px;
    border: none;
    border-radius: 73px;
    font-size: 14px;
    color: #252528;
    background: white;
    cursor: pointer;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
}
    /* Reports Table */
    .reports-table {
        width: 100% !important;
        border-collapse: collapse;
    }

    .reports-table thead {
        background: #ECECEC;
    }

    .reports-table th {
        padding: 15px 10px;
        text-align: left;
        font-size: 14px;
        color: #000000;
        font-weight: 500;
        border-bottom: 2px solid #e0e0e0;
        font-family: var(--bs-body-font-family-medium);
    }

    .reports-table td {
        padding: 20px 10px;
        font-size: 13px;
        vertical-align: top;
        color: #757575;
        font-family: var(--bs-body-font-family-regular);
        font-weight: 400;
    }
    .reports-table tr {
        border-bottom: 1px solid #f0f0f0;
    }
        /*    .reports-table tbody tr:hover {
        background: #fafafa;
    }*/
        .report-date {
    color: var(--color-text-mid);
    white-space: nowrap;
}
.main-report-row.no-border {
    border-bottom: none !important;
}

    .main-report-row.no-border td {
        border-bottom: none !important;
    }
.submenu-items {
    border-bottom: 1px solid #d3d3d3;
}
.submenu-items .sidebar-item {
    border-bottom: none !important;
}
.report-title {
    font-size: 15px;
    color: #000;
    margin-bottom: 5px;
    font-family: var(--bs-body-font-family-bold);
    font-weight: 700;
}

.report-description {
    font-size: 13px;
    color: #757575;
    line-height: 1.5;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
    margin-bottom:10px;
}
.stock-details-content table thead tr th {
    color: #9E9E9E;
    font-size: 12px;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
}
.stock-details-content table tbody tr tdd {
    font-size: 15px;
    font-family: var(--bs-body-font-family-medium);
    font-weight: 500;
}
.report-tag {
    display: inline-block;
    color: #757575;
    border-radius: 12px;
    font-size: 13px;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
    /*font-weight: 600;*/
}
.popupMenu {
    position: absolute;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    z-index: 999;
}

    /* Arrow border */
    .popupMenu::before {
        content: "";
        position: absolute;
        top: -11px; /* just above popup */
        left: 20%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 11px solid transparent;
        border-right: 11px solid transparent;
        border-bottom: 11px solid #e6e6e6; /* border color */
        z-index: 1;
    }

    /* Inner white triangle to create hollow effect */
    .popupMenu::after {
        content: "";
        position: absolute;
        top: -9px; /* slightly lower than ::before */
        left: 20%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-bottom: 9px solid #fff; /* popup background color */
        z-index: 2;
    }

.report-analyst {
    color: var(--color-text-mid);
    font-size: 12px;
}

.report-actions {
    display: flex;
    gap: 15px;
}

/* Pagination */
#parentDivPagination {
    display: flex;
    justify-content: center;
}

.pagination {
    min-width: 14rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 5px;
    border-top: 1px solid #f0f0f0;
    background: #F3F3F3 0% 0% no-repeat padding-box;
    border-radius: 73px;
    opacity: 1;
}

.pagination-info {
    min-width: 4rem;
    font-size: 15px;
    color: #757575;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
    text-align: center;
}

.pagination-btn {
    padding: 9px 15px;
    border: 1px solid var(--color-border-light);
    background: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    color: #757575;
    transition: all 0.3s;
    border-radius: 73.1px;
    margin: 0px 25px 0px 0px;
}

    .pagination-btn.next {
        background: var(--color-primary-orange);
        color: white;
        border-color: var(--color-primary-orange);
        border-radius: 73.1px;
        margin-left: 10px;
        border: 1px solid #fff;
        margin: 0px 0px 0px 25px;
    }

.company-info {
    font-size: 13px;
    line-height: 1.8;
    color: #ccc;
}

.contact-info {
    margin-top: 20px;
}

    .contact-info p {
        margin: 8px 0;
        font-size: 14px;
    }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.app-btn {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 12px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 10px;
    line-height: 1.8;
    color: #aaa;
}

.disclaimer {
    margin-top: 20px;
}


/* -------------------------------------- */
/* 1. Core Navigation Bar Styling */
/* -------------------------------------- */
/*.research-nav {
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 10px 0;
}

.tab-navigation {*/
/* Flexbox for easy alignment of buttons */
/*display: flex;
    flex-wrap: wrap;
    gap: 10px;
}*/

/* -------------------------------------- */
/* 2. Tab Button Base Styling (The general button style) */
/* -------------------------------------- */
.tab-btn {
    padding: 0px 30px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    border-bottom: 3px solid transparent;
}

    .tab-btn:focus {
        outline: none;
        box-shadow: none;
    }

/* -------------------------------------- */
/* 3. The CRITICAL AJAX Tab Selectors */
/* -------------------------------------- */

/*
   *** THIS IS THE CLASS USED IN THE FINAL JAVASCRIPT/RAZOR SOLUTION ***
   This class (.research-nav-tab) is on the <button> elements 
   and is targeted by navigationScript.js for the AJAX call.
*/
/*.research-nav-tab {*/
/* Inherits all base .tab-btn styles */
/*}*/

/* *** CLASS REQUESTED BY USER ***
   If you were using <a> tags or want to rename the class in your HTML/JS, 
   you can target it here. For the current solution, this is redundant.
*/
/*.research-nav-link {*/
/* You can alias or apply styles here if you use this class name in your HTML */
/* Inherits all base .tab-btn styles */
/*}*/


/* Active state: This class is dynamically added/removed by navigationScript.js */
/*.research-nav-tab.active,
    .research-nav-link.active {*/ /* Included both for flexibility */
/*color: #fff;
        font-weight: 700;
        border-bottom: 3px solid #003d82;
        background-color: #003d82;
    }*/


/* -------------------------------------- */
/* 4. Content Container and Loading Indicator */
/* -------------------------------------- */

/* The target div for injecting the AJAX content */
#content-container {
    min-height: 400px;
    padding: 20px 0;
    width: 100%;
}

.loading-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    font-size: 1.2em;
    color: #666;
}
/* Expert Section */
.expert-section {
    background: #f5f5f5;
    padding: 80px 40px;
}

.expert-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10%;
}

.expert-image img {
    max-width: 350px;
    width: 100%;
}
.expert-content{
    width: 30%;
}
.expert-content h2 {
    font-size: 40px;
    color: #000;
    margin-bottom: 30px;
    font-family: var(--bs-body-font-family-regular);
    font-weight: 400;
}
/* Hero Banner */
.hero-banner {
    min-height: 335px;
    background: #F58220;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin: 30px auto;
    border-radius: 29px;
    width: 87%; /* Matches your container class */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .hero-banner h1 {
        font-size: 72px;
        font-weight: 300;
        text-shadow: 0px 3px 10px #00000059;
        letter-spacing: 1px;
    }

    .hero-banner p {
        font-size: 23px;
        text-shadow: 0px 3px 10px #00000059;
        top: 251px;
        height: 28px;
    }

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
}

.search-btn {
    padding: 12px 30px;
    background: #003d82;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
}

    .filter-btn.active {
        background: #003d82;
        color: white;
    }

.filter-icon {
    margin-bottom:10px;
    margin-top: 15px !important;
    background-color: #FFF;
    border: 2px solid #F58220 !important;
    border-radius: 7px !important;
    padding: 8px !important;
    font-size: 13px !important;
}

.filter-lock {
    width: 17.61px;
    height: 17.6px;
    float: right;
    margin-top: 3px;
}
/* --- REVISED Mobile Input Form Details for Overlap and Full Rounding --- */
.mobile-input-form {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}
    .mobile-input-form input,
    .mobile-input-form button {
        -webkit-tap-highlight-color: transparent; /* Removes the grey flash on mobile tap */
    }
.input-grouprep {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 50px;
    background-color: white;
    width: 100%;
    max-width: 471px;
    margin: 0 auto;
    height: 49px;
    border: none !important; /* Forces removal of any wrapper borders */
    overflow: hidden; /* Ensures contents don't bleed out of rounded corners */
}
    .input-grouprep:focus-within {
        outline: none !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optional: Keep a soft shadow instead of a hard border */
    }

.country-code {
    background-color: transparent; /* No background here, letting .input-group's white show */
    color: #757575;
    padding: 12px 10px 12px 20px; /* Increased left padding for curve */
    box-sizing: border-box;
    white-space: nowrap;
    font-size: 16px;
}

.line-height-code {
    border-left: 1px solid #ddd;
    height: 25px;
    margin: 0 10px;
}

.mobile-input {
    border: none !important; /* Removes default input border */
    outline: none !important; /* Removes the blue 'focus' ring */
    padding: 12px 130px 12px 0px;
    font-size: 1rem;
    flex-grow: 1;
    background-color: transparent;
}
    #mobileNumberInput:focus,
    .mobile-input:focus {
        outline: none !important;
        box-shadow: none !important;
        border: none !important
    }
.start-free-trial-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: #043B72;
    color: white;
    border: none !important; /* Removes button border */
    outline: none !important;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    white-space: nowrap;
}

    .start-free-trial-btn:hover {
        background-color: #043B72;
    }

.nav-bar-container {
    margin: 30px 95px;
    padding: 0px 0px 0px 0px !important;
    background-color: #E0E5EE;
    border-radius: 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    height: 50px;
}

.report-nav {
    display: flex;
    flex-wrap: nowrap; 
    width: 100%;
    align-self: stretch; 
}
    .report-nav .tab-btn.active {
        /*flex: 1 1 auto;*/ 
        height: 100%; 
        /* margin-right: 0;  */
/*        align-self: stretch;*/ 
    }
    .report-nav .tab-btn {
        white-space: nowrap;
        margin-right: 10px;
        flex-shrink: 0;
    }

        /* Remove margin on the last button */
        .report-nav .tab-btn:last-child {
            margin-right: 0;
        }

.nav-item {
    text-decoration: none;
    color: #333;
    padding: 8px 15px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s;
}

    .nav-item.active,
    .nav-item.active-blue {
        background-color: #e6eef5;
        border-radius: 20px;
        color: #333;
    }

    .nav-item.active-blue {
        color: #004b8d;
        font-weight: 700;
    }

    .nav-item:not(.active):not(.active-blue):hover {
        color: #004b8d;
    }

a {
    color: #000;
    text-decoration: none;
}
/*.sidebar-link.active-sidebar-item {*/
/* Example styles - adjust colors and text decoration */
/*color: #007bff;*/ /* Highlight color */
/*font-weight: bold;
    text-decoration: underline;*/
/* Or a subtle background change: */
/*background-color: #f0f0f0;
    padding: 2px 5px;
    border-radius: 3px;
}*/

/* ---------------------------------------------------- */
/*  COMMON*/
/* ---------------------------------------------------- */
/* Container must be relative so the menu 'sticks' to it */

/*tool tip CSS start*/
.custom-dropdown-container {
    position: relative;
    display: inline-block;
}

.icon-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* The Tooltip Box */
.tooltip-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Positioned directly below the icon */
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px; /* Space for the arrow */
    background: #fff;
    border: 1.5px solid #ed8b33; /* Brand Orange */
    border-radius: 12px;
    padding: 12px 0;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999;
}

    /* Show class applied via JS */
    .tooltip-menu.active {
        display: block;
    }

    /* The Triangle Arrow (Border) */
    .tooltip-menu::before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #ed8b33 transparent;
    }

    /* The Triangle Arrow (Inside White Fill) */
    .tooltip-menu::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 9px;
        border-style: solid;
        border-color: transparent transparent #fff transparent;
        margin-bottom: -1px;
    }

    /* Menu Links Styling */
    .tooltip-menu ul li a {
        display: block;
        padding: 8px 20px;
        color: #ed8b33;
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        transition: background 0.2s;
    }

        .tooltip-menu ul li a:hover {
            background-color: #fff5ed;
            color: #d17523;
        }


/*synopsis css code start*/

/* Container positioning */
.custom-report-dropdown {
    /*display: inline-block;*/
    position: relative;
}

/* Resetting Bootstrap defaults for the menu */
/*.custom-bubble {
    border: 1px solid #DBDBDB !important;*/ /* The brand orange */
    /*border-radius: 12px !important;
    padding: 10px 0 !important;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 38px !important;*/ /* Space for the arrow */
    /* Center the menu under the icon */
    /*left: 20% !important;
    transform: translateX(-50%) !important;
}*/
.custom-bubble {
    position: fixed;
    display: none;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    z-index: 999999;
}

    /* show popup */
    .custom-bubble.show {
        display: block;
    }

    /* The Arrow (Outer Border) */
    .custom-bubble::before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #dbdbdb transparent;
    }

    /* The Arrow (Inner White Fill) */
    .custom-bubble::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 9px;
        border-style: solid;
        border-color: transparent transparent #fff transparent;
        margin-bottom: -1px; /* Overlaps the orange border */
    }

    /* Item Styling */
    .custom-bubble .dropdown-item {
        color: #F58220;
        font-weight: 500;
        padding: 8px 20px;
        font-size: 15px;
    }

        /* Hover State */
        .custom-bubble .dropdown-item:hover {
            background-color: #fff5ed; /* Light orange tint */
            color: #d17523;
        }

/* Remove the default arrow from Bootstrap if it appears */
.dropdown-toggle::after {
    display: none !important;
}
/* --- The Expandable Table Section --- */
#expandableTableArea {
    width: 100%;
    /* Hidden by default */
    display: none;
    margin-bottom: 20px;
    background-color: #F5F9FC;
    border-radius: 8px;
    overflow: hidden; /* For border radius on child elements */
    padding-bottom: 10px;
}

    /* Class added via JS to show content */
    #expandableTableArea.show {
        display: block;
    }

/* Table Styling */
.stock-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

    .stock-table thead th {
        color: #7A869A;
        font-weight: 500;
        font-size: 14px;
        padding: 15px 20px;
        border-bottom: 1px solid #E1E7ED;
    }

    .stock-table tbody tr {
        background-color: #F5F9FC;
        border-bottom: 1px solid #E1E7ED;
    }

    .stock-table td {
        padding: 15px 20px;
        color: #172B4D;
        font-weight: 600;
        vertical-align: middle;
    }

/* Styling for stock name subtitles */
.stock-name-main {
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.stock-name-sub {
    font-weight: 400;
    color: #7A869A;
    font-size: 12px;
}

/* The Green Buy Button */
.buy-btn {
    background-color: #10B981;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    width: fit-content;
}

    .buy-btn:hover {
        background-color: #0E9F6E;
    }

/* --- The Orange Toggle Button (Trigger) --- */
.toggle-trigger-btn {
    background-color: #F58220; /* Exact orange from image */
    color: white;
    border: none;
    padding: 7px;
    border-radius: 25px; /* Pill shape */
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s;
    outline: none;
    width: 135px;
    height: 18px;
}
.toggle-trigger-btn-grey {
    background-color: #F58220; /* Exact orange from image */
    color: white;
    border: none;
    padding: 8px 8px;
    border-radius: 25px; /* Pill shape */
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s;
    outline: none;
    width: 135px;
    height: 18px;
}

    .toggle-trigger-btn:hover {
        background-color: #E07010;
    }

/* CSS Chevron Icon */
.chevron-arrow {
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transition: transform 0.3s ease;
}

    /* Down state (default) */
    .chevron-arrow.down {
        transform: rotate(45deg);
        margin-bottom: 3px; /* slight optical adjustment */
    }

    /* Up state (when active) */
    .chevron-arrow.up {
        transform: rotate(-135deg);
        margin-top: 3px; /* slight optical adjustment */
    }
.siderahref {
    color: #000 !important;
    text-decoration: none !important;
}
.btn-buy {
    background-color: #1AB176;
    color: #FFFFFF;
    padding: 7px 30px !important;
    border-radius: 16px !important;
    font-size: 14px !important;
    border: none;
    font-family: var(--bs-body-font-family-medium);
    font-weight: 500;
    width: fit-content;

}

    .btn-buy:hover {
        background-color: #1AB176 !important;
        color: #FFFFFF !important;
    }

.btn-Sell {
    background-color: #E93231;
    color: #FFFFFF;
    padding: 7px 30px !important;
    border-radius: 16px !important;
    font-size: 14px !important;
    border: none;
    font-family: var(--bs-body-font-family-medium);
    font-weight: 500;
    width: fit-content;
}

    .btn-Sell:hover {
        background-color: #E93231 !important;
        color: #FFFFFF !important;
    }


.btn-Hold {
    background-color: #f58220;
    color: #FFFFFF;
    padding: 7px 30px !important;
    border-radius: 16px !important;
    font-size: 14px !important;
    border: none;
    font-family: var(--bs-body-font-family-medium);
    font-weight: 500;
    width: fit-content;
}

    .btn-Hold:hover {
        background-color: #f58220 !important;
        color: #FFFFFF !important;
    }
.showtblData {
    display: none !important;
}
/*modal body scroll */
#synopsisWrapper {
    height: 300px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: 4px; /* thin */
    scrollbar-color: #d3d3d3;
/*Date filter test css start -Pawan 21/01/2026*/
/* Desktop Styles */
.date-filter-group {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.date-inputs-wrapper {
    display: flex;
    gap: 15px;
    flex: 1;
}

.date-input-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
}

.filter-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.date-input-container {
    position: relative;
    width: 100%;
}

.date-filter-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    height: 44px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .date-filter-input:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }

    /* Placeholder styling for empty date inputs */
    .date-filter-input::-webkit-datetime-edit-text,
    .date-filter-input::-webkit-datetime-edit-month-field,
    .date-filter-input::-webkit-datetime-edit-day-field,
    .date-filter-input::-webkit-datetime-edit-year-field {
        color: transparent;
    }

    .date-filter-input::before {
        content: attr(placeholder);
        color: #999;
        position: absolute;
        left: 12px;
        pointer-events: none;
    }

    .date-filter-input:focus::before,
    .date-filter-input:valid::before {
        display: none;
    }

    .date-filter-input:focus::-webkit-datetime-edit-text,
    .date-filter-input:focus::-webkit-datetime-edit-month-field,
    .date-filter-input:focus::-webkit-datetime-edit-day-field,
    .date-filter-input:focus::-webkit-datetime-edit-year-field,
    .date-filter-input:valid::-webkit-datetime-edit-text,
    .date-filter-input:valid::-webkit-datetime-edit-month-field,
    .date-filter-input:valid::-webkit-datetime-edit-day-field,
    .date-filter-input:valid::-webkit-datetime-edit-year-field {
        color: #333;
    }

.clear-dates-btn {
    padding: 10px 20px;
    background-color: #ff9966;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    height: 44px;
    white-space: nowrap;
}

    .clear-dates-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .clear-dates-btn:hover:not(:disabled) {
        background-color: #ff8552;
    }
/*Date filter test css END -Pawan 21/01/2026*/
}
    #synopsisWrapper::-webkit-scrollbar {
        width: 4px; /* VERY THIN */
        height: 4px;
    }

    #synopsisWrapper::-webkit-scrollbar-track {
        background: #eee;
    }

    #synopsisWrapper::-webkit-scrollbar-thumb {
        background-color: #757575;
        border-radius: 10px;
    }
        #synopsisWrapper::-webkit-scrollbar-thumb:hover {
            background-color: #757575;
        }
/* ---------------------------------------------------- */
/* 6. MEDIA QUERIES (Consolidated) */
/* ---------------------------------------------------- */

@media (max-width: 1024px) {
    /* Layout adjustments for medium screens (e.g., tablets in landscape) */
    .research-grid {
        grid-template-columns: 1fr;
    }

    .content-layout {
        flex-direction: column;
    }

    .sidebar {
        background: #ffffff;
        width: 30%;
    }

    .filter-section {
        flex-direction: column;
    }

    .nav-bar-container {
        display: inline-block;
        margin-left: 40px !important;
    }

    .report-nav {
        flex-wrap: nowrap;
        display: flex;
        gap: 21px;
    }

    .tab-btn {
        padding: 15px 15px;
        font-size: 13px;
    }

    .main-content .filter-section {
        flex-direction: row;
    }

    .header {
        padding: 14px 70px 19px;
    }

    .nav-bar-container {
        margin: 30px 70px;
    }

    .video-section h2 {
        margin: 40px 15%;
    }
    .hero-banner h1 {
        font-size: 60px;
    }

    .input-grouprep {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    /* Layout adjustments for small screens (e.g., phones/tablets in portrait) */
    .hero h1 {
        font-size: 50px;
    }

    .hero p {
        font-size: 20px;
        margin: 20px 70px;
    }

    .hero-banner {
        height: auto;
        padding: 50px 20px;
        width: 90% !important;
    }

        .hero-banner h1 {
            font-size: 48px;
            padding-top: 65px; /* Pawan 21012026 */
        }

        .hero-banner p {
            font-size: 18px;
            line-height: 1.4;
        }

    .input-grouprep {
        max-width: 350px;
        height: 50px;
    }

    .country-code {
        padding: 9px;
        font-size: 14px !important;
    }

    .line-height-code {
        margin: 10px 0px;
    }

    .mobile-input {
        font-size: 14px;
        padding: 7px;
    }

    .mobile-input-form {
        margin-top: 115px;
    }

    .start-free-trial-btn {
        font-size: 14px;
        padding: 0 15px;
    }

    .research-section {
        flex-direction: column;
        text-align: left;
        padding: 0px 30px !important;
    }

    .expert-container {
        display: block;
    }

    .expert-content {
        font-size: 32px;
        text-align: center;
        width: 100%;
    }

    .expert-image {
        margin-bottom: 30px;
    }

    .stats-container {
        flex-direction: column;
    }

    /*.tab-nav {*/
    /* Allows tabs to scroll horizontally if many items overflow */
    /*overflow-x: auto;
    }*/

    .footer-content {
        grid-template-columns: 1fr;
    }

    .tab-btn {
        padding: 14px !important;
    }

    .report-nav {
        gap: 10px;
    }

    .nav-bar-container {
        background-color: #e3e8ef;
        border-radius: 50px;
        padding: 5px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        max-width: 100%;
        width:93% !important;
        width: 600px;
        overflow: hidden; /* Hides scrollbar */
        margin-left: 0px !important;
    }

    .report-nav {
        display: flex;
        align-items: center;
        overflow-x: auto;
        scrollbar-width: none; /* Firefox hide scroll */
        padding-bottom: 0;
    }

        .report-nav::-webkit-scrollbar {
            display: none;
        }

    .tab-btn {
        border: none;
        background: transparent;
        padding: 12px 24px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        color: #4a5568;
        border-radius: 40px; /* Individual buttons are now pill-shaped */
        white-space: nowrap;
        flex-shrink: 0;
        /* This transition handles the color change */
        transition: background-color 0.3s, color 0.3s;
    }

    .animating {
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .header {
        flex-direction: row; /* Stack logo and buttons vertically */
        gap: 15px;
        padding: 15px;
        text-align: center;
    }

    .logo img {
        width: 186px;
        height: 27px;
    }

    .nav-actions {
        flex-direction: column; /* Stack links and button vertically */
        gap: 12px;
        width: 100%;
        background: #F6F6F6;
    }

    .nav-link {
        width: 100%;
        padding: 5px !important;
        text-decoration: underline !important;
        color: #F58220 !important;
        font-size: 11px !important;
    }

    .header .btn-primary {
        height: 27px;
        font-size: 11px !important;
        width: 125px;
        padding: 5px !important;
    }

    .hero-buttons {
        display: block;
    }

        .hero-buttons a {
            margin-bottom: 10px;
        }

    .hero {
        height: 667px;
        padding: 80px 20px;
        border: none;
    }

    .research-image {
        order: 1;
    }

    .research-content {
        order: 2;
    }

        .research-content h2 {
            font-size: 32px;
        }

    .research-content-des p {
        font-size: 15px;
    }

    .video-section h2 {
        margin: 0px 0px 30px;
        order: 1;
    }

    .expert-section {
        padding: 80px 20px;
    }

    .video-container {
        display: flex;
        flex-wrap: wrap;
    }

    .video-decorations img {
        width: 100%;
    }
    /*.date-filter-group {
        display: flex;
        flex-direction: column !important;
        width: auto !important;
    }*/
    /*New css added form mobile responsive - pawan content 15 jan 2026*/
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .reports-table {
        display: block;
        border: none;
    }

        .reports-table thead {
            display: none;
        }

        .reports-table tbody {
            display: block;
        }

            .reports-table tbody tr.main-report-row {
                display: flex !important;
                flex-wrap: wrap !important;
                background: #FFFFFF;
                border-radius: 8px;
                padding: 14px;
                margin: 0 14px 14px 14px;
                box-shadow: 0 1px 3px rgba(0,0,0,0.06);
                border: none;
                position: relative;
                align-content: flex-start;
            }

                .reports-table tbody tr.main-report-row td {
                    border: none;
                    padding: 0;
                    text-align: left !important;
                    width: 100%;
                    display: block !important;
                }
                    /* Company name - Top Left (order 1) */
                    .reports-table tbody tr.main-report-row td#td_sector {
                        order: 1 !important;
                        width: auto !important;
                        margin: 0 auto 0 0 !important;
                        flex: 0 0 auto !important;
                    }
                    /* Date - Top Right (order 2) */
                    .reports-table tbody tr.main-report-row td.report-date {
                        order: 2 !important;
                        width: auto !important;
                        position: static !important;
                        font-size: 12px;
                        color: #B5B5B5;
                        margin: 0 !important;
                        font-weight: 400;
                        flex: 0 0 auto !important;
                    }
                    /* Content: Title, Description, Button (order 3) */
                    .reports-table tbody tr.main-report-row td.report-content {
                        order: 3 !important;
                        width: 100% !important;
                        margin-top: 12px !important;
                        flex: 0 0 100% !important;
                    }
                    /* Analyst - Bottom Left (order 4) */
                    .reports-table tbody tr.main-report-row td.report-analyst {
                        order: 4 !important;
                        width: auto !important;
                        position: static !important;
                        font-size: 12px;
                        color: #B5B5B5;
                        margin: 16px 0 0 0 !important;
                        font-weight: 400;
                        flex: 0 0 auto !important;
                    }
                    /* Icons - Bottom Right (order 5) */
                    .reports-table tbody tr.main-report-row td:last-child {
                        order: 5 !important;
                        width: auto !important;
                        position: static !important;
                        margin: 16px 0 0 auto !important;
                        flex: 0 0 auto !important;
                    }

                .reports-table tbody tr.main-report-row .report-tag {
                    color: #FF8533 !important;
                    font-size: 13px;
                    font-weight: 700;
                    display: block;
                    margin: 0 !important;
                    background: transparent !important;
                    border: none !important;
                    padding: 0 !important;
                    text-transform: uppercase;
                    letter-spacing: 0.2px;
                }

    .report-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #1A1A1A !important;
        margin-bottom: 8px !important;
        line-height: 1.25 !important;
    }

    .report-description {
        font-size: 12px !important;
        color: #999999 !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
        font-weight: 400;
    }

    .reports-table tbody tr.main-report-row td.report-analyst::before {
        content: "Analyst: ";
    }

    .stock-row.card-actions {
        display: flex !important;
        gap: 8px;
        height: auto !important;
        width: auto !important;
        align-items: center;
    }

    .icon-btn, .eyeiconbtn {
        width: 36px !important;
        height: 36px !important;
        border-radius: 50%;
        /* border: 1px solid #E5E5E5; */
        padding: 0 !important;
        background: transparent;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

        .icon-btn img, .eyeiconbtn img {
            width: 34px !important;
            height: 24px !important;
            opacity: 0.6;
            margin:5px;
        }

    .toggle-trigger-btn {
        background: #FF8533 !important;
        color: white !important;
        border: none !important;
        border-radius: 20px !important;
        padding: 8px 18px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        margin: 0 auto !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: auto !important;
        cursor: pointer;
    }

        .toggle-trigger-btn i {
            font-size: 10px;
        }

    .stock-details-row,
    .single-stock-detail-row {
        display: none;
        margin: -8px 14px 14px 14px !important;
        padding: 0 14px 14px 14px !important;
        border: none !important;
        background: #FFFFFF;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }

        .stock-details-row td,
        .single-stock-detail-row td {
            display: block !important;
            padding: 0 !important;
            width: 100% !important;
        }

    .stock-details-content.hidetbldata {
        display: none !important;
    }

    .stock-details-content.showtblData {
        display: block !important;
        background: #F6F8FA;
        border-radius: 8px;
        padding: 12px;
        margin: 12px 0 !important;
        width: 100% !important;
    }

    .carousel-wrap {
        position: relative;
        overflow: hidden;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.3s ease;
    }

    .carousel-slide {
        min-width: 100%;
        flex-shrink: 0;
    }

    .stock-card {
        background: #F1F8FF;
        border-radius: 8px;
        padding: 15px;
    }

    .card-head {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        padding-bottom: 12px;
        /* border-bottom: 1px solid #E0E0E0;*/
    }

    .card-label {
        font-size: 12px;
        color: #757575;
        margin-bottom: 5px;
        display: block;
    }

    .card-name {
        font-size: 15px;
        font-weight: 600;
        color: #252528;
    }

    .card-code {
        font-size: 11px;
        color: #9E9E9E;
    }

    .card-cmp {
        text-align: right;
    }

    .card-cmp-val {
        font-size: 18px;
        font-weight: 600;
        color: #252528;
    }

    .card-metrics {
        display: flex;
        justify-content: space-between;
        padding-top: 15px;
        /*border-top: 1px solid #E0E0E0;*/
    }

    .card-metric {
        flex: 1;
        text-align: center;
    }

        .card-metric:not(:last-child) {
            border-right: 1px solid #E0E0E0;
        }

    .card-metric-val {
        font-size: 14px;
        font-weight: 600;
        color: #252528;
    }

    .card-btn {
        background: #22C55E;
        color: white;
        border: none;
        border-radius: 25px;
        padding: 10px 30px;
        font-size: 14px;
        display: block;
        margin: 15px auto 0;
        text-decoration: none;
        text-align: center;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #E0E0E0;
        cursor: pointer;
        transition: all 0.3s;
    }

        .dot.active {
            background: #F58220;
            width: 24px;
            border-radius: 4px;
        }

    .date-filter-group {
        display: block;
    }
    /* Mobile Cards */
    .mobile-card {
        background: #FFFFFF;
        border-radius: 8px;
        padding: 14px;
        margin: 0 14px 14px 14px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        position: relative;
    }

    .mobile-card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 12px;
    }

    .mobile-company-name {
        color: #FF8533;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2px;
    }

    .mobile-date {
        font-size: 12px;
        color: #B5B5B5;
        font-weight: 400;
    }

    .mobile-title {
        font-size: 16px;
        font-weight: 700;
        color: #1A1A1A;
        margin-bottom: 8px;
        line-height: 1.25;
    }

    .mobile-description {
        font-size: 12px;
        color: #999999;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    /* Mobile Slider */
    .mobile-slider {
        background: #F6F8FA;
        border-radius: 8px;
        padding: 12px;
        margin-bottom: 12px;
        display: none;
    }

        .mobile-slider.active {
            display: block;
        }
    /* Single stock card - always visible (no toggle needed) */
    /* Pawan 21012026 */
    .mobile-single-stock {
        background: #F6F8FA;
        border-radius: 8px;
        padding: 12px;
        margin-bottom: 12px;
        display: block; /* Always visible */
    }
    .carousel-wrap {
        position: relative;
        overflow: hidden;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.3s ease;
    }

    .carousel-slide {
        min-width: 100%;
        flex-shrink: 0;
    }

    .carousel-card {
        background: white;
        border-radius: 8px;
        padding: 12px;
        margin: 0 4px;
    }

    .carousel-card-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid #eee;
    }

    .stock-name-section h4 {
        font-size: 15px;
        font-weight: 700;
        margin: 0 0 2px 0;
        color: #000;
    }

    .stock-name-section p {
        font-size: 11px;
        color: #999;
        margin: 0;
    }

    .cmp-section {
        text-align: right;
    }

    .cmp-label {
        font-size: 11px;
        color: #999;
        margin: 0 0 2px 0;
    }

    .cmp-value {
        font-size: 16px;
        font-weight: 700;
        color: #000;
        margin: 0;
    }

    .carousel-card-body {
        display: flex;
        justify-content: space-between;
        margin: 12px 0;
        gap: 8px;
    }

    .detail-col {
        flex: 1;
        text-align: center;
    }

    .detail-label {
        font-size: 11px;
        color: #999;
        margin-bottom: 4px;
    }

    .detail-value {
        font-size: 14px;
        font-weight: 600;
        color: #000;
    }

    .buy-btn {
        background: #00C853;
        color: white;
        border: none;
        border-radius: 20px;
        padding: 8px 24px;
        font-size: 13px;
        font-weight: 600;
        width: 100%;
        cursor: pointer;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 12px;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s;
    }

        .dot.active {
            background: #FF8533;
            width: 24px;
            border-radius: 4px;
        }
    /* Mobile Toggle Button */
    .mobile-toggle-btn {
        background: #f58220;
        color: white;
        border: none;
        border-radius: 20px;
        padding: 8px 18px;
        font-size: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        margin: 0 auto;
        display: flex;
    }

        .mobile-toggle-btn i {
            font-size: 10px;
        }

    .mobile-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 12px;
    }

    .mobile-analyst {
        font-size: 12px;
        color: #B5B5B5;
    }

    .mobile-actions {
        display: flex;
        gap: 8px;
    }

    .mobile-icon-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        cursor: pointer;
    }

        .mobile-icon-btn img {
            width: 18px;
            height: 18px;
            opacity: 0.6;
        }

    .desktop-table {
        display: none !important;
    }

    .mobile-table {
        display: block !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }
    .content-layout {
        display: flex;
        gap: 0px !important;
        margin-bottom: 60px;
    }
    #parentDivPagination {
        display: none !important;
    }
    .clear-dates-btn {
        /*width: 25% !important;
        margin-top: 10px !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
        display: inline-block;*/
        color: #fff;
        border: none;
        padding: 5px 30px !important; /* Pawan 21012026 */
        border-radius: 50px;
        cursor: pointer;
        font-size: 14px;
        align-self: flex-end;
        margin-bottom: 2px;
        transition: background-color 0.2s;
        display: flex;
        gap: 5px;
        flex-direction: row-reverse;
    }

    /*curated stocks css*/
    .stock-info-card {
        flex: 1;
        min-width: 100%;
        max-width: 50%;
        border-radius: 8px;
        padding: 20px;
        background: #F1F8FF;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    .stock-info-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 16px;
        width: 100%;
    }
    .info-item {
        display: flex;
        flex-direction: column;
        min-width: 0;
        overflow: hidden;
    }

        .info-item label {
            font-size: 11px;
            color: #757575;
            margin-bottom: 4px;
            letter-spacing: 0.3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .info-item .info-value {
            font-size: 13px;
            color: #000000;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    .stock-title {
        font-size: 13px;
        color: #000000;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    .info-item .info-value {
        font-size: 13px;
        color: #000000;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .buy-action-btn {
        width: 100%;
        max-width: 100%;
        background-color: #28a745;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

        .buy-action-btn:hover {
            background-color: #218838;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(40, 167, 69, 0.2);
        }

    .slider-pagination {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 16px;
        width: 100%;
        max-width: 100%;
    }

    .pagination-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #d0d0d0;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        padding: 0;
        flex-shrink: 0;
    }

        .pagination-dot:hover {
            background-color: #a0a0a0;
        }

        .pagination-dot.active {
            background-color: #F58220;
            width: 24px;
            border-radius: 4px;
        }
    .popupMenu::before {
        left:70%;
    }
    .popupMenu::after {
        left: 70%;
    }
/*Change doen on 21 Jan 26 for hero banner alighnmet*/
    /* Pawan 21012026 */
    .errmsgalig {
        color: rgb(255, 255, 255);
        border-radius: 10px;
        padding: 8px;
        margin-bottom: 80px;
        font-size: 13px;
    }
 /*Date filter test css start -Pawan 21/01/2026*/
    .date-filter-group {
        display: flex !important;
        flex-wrap: wrap;
        gap: 12px;
        padding: 20px 15px;
        background: #f8f9fa;
        border-radius: 12px;
        width: 100%;
        flex-direction: row !important;
    }

    /* Date inputs side by side */
    .date-input-wrapper {
        flex: 1 1 calc(50% - 6px);
        min-width: calc(50% - 6px);
        max-width: calc(50% - 6px);
        margin-bottom: 0;
    }

    .filter-label {
        font-size: 12px;
        margin-bottom: 6px;
        color: #888;
    }

    .date-input-container {
        width: 100%;
    }

    .date-filter-input {
        width: 100% !important;
        max-width: 100%;
        font-size: 13px;
        padding: 12px 14px;
        height: 46px;
        border-radius: 25px;
        box-sizing: border-box;
    }

    /* Clear button - full width row, left aligned, small */
    .clear-dates-btn {
        flex: 0 0 100%;
        width: 80px;
        max-width: 100px;
        min-width: 80px;
        padding: 10px 16px;
        height: 44px;
        font-size: 13px;
        margin: 0;
        align-self: flex-start;
        border-radius: 25px;
    }
    /*Date filter test css End -Pawan 21/01/2026*/
    }

@media (max-width: 431px) {
    .hero {
        height: 667px;
        padding: 60px 20px;
        border: none;
    }

    .hero-banner h1 {
        font-size: 36px;
    }

    .input-grouprep {
        width: 100% !important; /* Forces full width within the container */
        max-width: 300px;
        height: 48px;
    }

    .hero-banner p {
        font-size: 20px;
        margin-bottom: 20px;
        width: 100%;
        padding-left: 60px;
        padding-right: 60px;
    }

    .research-image {
        order: 1;
        margin-top: -25px;
        padding: 0% 4% 4%;
    }

    .research-section {
        flex-direction: column;
        text-align: left;
        padding: 0px 30px !important;
        margin-bottom: 25px;
    }

    .btn-research-calls {
        border: 0px solid #F58220 !important;
        margin: 0px;
        height: 0px;
    }

    .openDmatbtn {
        padding: 2px 8px !important;
        font-size: 12px !important;
        margin-top: 5px;
    }

    .video-decorations img {
        width: 100%;
        padding: 0% 4%;
    }

    .header {
        padding: 14px 10px;
        gap: 0px;
    }

    .hideResRep {
        display: none !important;
    }

    .showResRep {
        display: block !important;
        font-size: 13px;
        text-align: right;
        padding: 5px 10px;
        background-color: #F6F6F6
    }

    .hidetbldata {
        display: none !important;
    }

    .showtblData {
        display: block !important;
    }

    .mobile-input-form {
        margin-top: 85px;
        margin-bottom: 0px;
        font-size: 14px;
        margin-right: 0px;
    }

    .mobile-input {
        font-size: 14px;
        padding-right: 110px;
    }

    .start-free-trial-btn {
        min-width: 100px;
        font-size: 12px;
    }

    .sidebar {
        width: 100% !important;
        margin-left: 0px;
    }

    .sort-text {
        right: 0px !important;
        bottom: -60px !important;
    }

    .main-content {
        padding: 0px 5px !important;
        width: 100%;
    }

    .country-code {
        font-size: 14px;
        padding-left: 15px;
    }

    .sort-des {
        margin-left: 20px !important;
        margin-bottom: 10px !important;
        width: 50%;
    }

    .line-height-code {
        margin: 10px 0px !important;
    }

    .video-section h2 {
        font-size: 32px !important;
    }

   /* .filter-section {
        margin-bottom: 10px;
    }*/

    .container {
        max-width: 100% !important;
        overflow: visible;
    }

    .menuAlign {
        margin-left: 15px;
    }

    .tab-btn {
        font-size: 13px
    }

    .report-nav {
        display: flex;
        gap: 5px;
    }

    .tab {
        padding: 8px !important;
        font-size: 12px !important;
    }

    .fund-metrics {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 15px 30px !important;
    }

    .ratings-powered {
        text-align: left !important;
    }

    .sidebar-menu {
        margin: 0px;
    }

    .research-card {
        padding: 15px 25px;
    }

    .main-content .filter-section {
        flex-direction: row;
        max-width: 100% !important;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .nav-bar-container {
        height: 90%;
        margin-left: 15px !important;
    }

   /* .date-filter-group {
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
        width: 367px;
    }*/

    .reports-table th {
        padding: 6px !important;
        font-size: 13px;
    }

    .reports-table td {
        padding: 6px !important;
        font-size: 13px;
    }

    .reports-table {
        width: 380px;
        border-collapse: collapse;
    }

    .report-description {
        font-size: 10px;
    }

    .slider-pagination {
        margin-bottom: 16px;
    }

    .stock-expand-wrapper {
        padding-bottom: 15px;
    }

    .align-items-center {
        align-items: center !important;
        order: 1;
    }

    .row {
        display: block !important;
    }

    .card-actions {
        display: flex;
        gap: 5px;
        /*flex-direction: column;*/
    }
    /*.date-filter-group {
        display: flex !important;
        flex-direction: column !important;
        width: auto !important;
    }*/
    .toggle-trigger-btn {
        font-size: 10px;
        width: max-content;
    }
    /*.custom-bubble {*/
        /*fit-content !important;*/
        /*margin-top: 36px !important;
        left: 22% !important;
        transform: translateX(-55%) !important;
    }*/
    .filter-icon {
        width: 96% !important;
        margin-left: 2% !important;
    }
    .clear-dates-btn {
        width: 25% !important;
        margin-top: 15px !important;
        margin-left: 0px !important;
    }
    .content-layout {
        display: flex;
        gap: 0px !important;
        margin-bottom: 60px;
    }
    #parentDivPagination {
        display: none !important;
    }
    .dropdown-menu.show {
        display: block;
        transform: translate3d(0px, 200px, 0px) !important;
    }
}



@media (max-width: 376px) {
    .hero-banner h1 {
        font-size: 50px;
        padding-top: 65px;
    }

    .input-grouprep {
        max-width: 280px;
    }

    .start-free-trial-btn {
        min-width: 90px;
        padding: 0 10px;
    }

    .menuAlign {
        margin-left: 0px !important;
    }

    .mobile-input {
        font-size: 12px;
        padding: 5px;
    }

    .country-code {
        padding: 12px;
        font-size: 12px !important;
    }

    .logo img {
        width: 160px;
        height: 27px;
    }

    .reports-table {
        width : 120%;
    }

    .card-actions {
        display: flex;
        gap: 10px;
        /*flex-direction: column;*/
    }

    .reports-table th {
        font-size: 12px;
    }

    .reports-table td {
        font-size: 11px;
    }

    .report-title {
        font-size: 11px !important;
    }

    .report-description {
        font-size: 11px;
    }

    .video-section h2 {
        font-size: 20px !important;
    }
    /*.date-filter-group {
        display: flex !important;
        flex-direction: column !important;
        width: auto !important;
    }*/
    .toggle-trigger-btn {
        font-size: 9px;
        width: max-content;
    }
    .reseye {
        width: 35px !important;
        height: 25px !important;
        margin-right: 62px;
    }
 /*   .custom-bubble {
        min-width: 1px !important;
        left: 0% !important;
        transform: translateX(-72%) !important;
        margin-top: 50px !important;
        margin-right: -56px !important;
    }
    .dropdown-menu.show {
        position: absolute !important;
        inset: -65px -22px auto auto !important;
        margin-top: 0px;
        transform: translate3d(-76px, 250px, 0px) !important;
    }*/


    .custom-bubble
    .filter-icon {
        width: 40% !important;
        margin-left: 2% !important;
    }
    .clear-dates-btn {
        width: 25% !important;
        margin-top: 15px !important;
        margin-left: 0px !important;
        padding: 5px 25px !important;
    }
    .content-layout {
        display: flex;
        gap: 0px !important;
        margin-bottom: 60px;
    }
    #parentDivPagination {
        display: none !important;
    }
}

@media (max-width: 321px) {
    .navbar {
        padding: 1rem;
    }

    .hero-banner h1 {
        font-size: 50px;
        padding-top: 65px;
    }
    .hero-banner p {
        font-size: 20px !important;
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
        padding-left: 45px;
        padding-right: 45px;
       
    }

    .menuAlign {
        margin-left: 0px !important;
    }

    .header .btn-primary {
        font-size: 10px !important;
        text-align: center;
        width: 118px;
    }

    .input-grouprep {
        max-width: 250px;
        height: 44px;
    }

    .start-free-trial-btn {
        font-size: 11px;
        min-width: 80px;
    }

    .mobile-input {
        font-size: 12px;
        padding: 5px;
    }

    .country-code {
        padding-left: 10px;
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .logo img {
        width: 125px;
        height: 27px;
    }

    .reports-table {
        width: 100%;
    }

    .card-actions {
        display: flex;
        gap: 10px;
        /*flex-direction: column;*/
    }

    .reports-table th {
        font-size: 12px;
    }

    .reports-table td {
        font-size: 11px;
    }

    .report-title {
        font-size: 11px !important;
    }

    .report-description {
        font-size: 11px;
    }

    .video-section h2 {
        font-size: 18px !important;
    }
    /*.date-filter-group {
        display: flex !important;
        flex-direction: column !important;
        width: auto !important;
    }*/
    .toggle-trigger-btn {
        font-size: 8px;
        width: max-content;
    }

    .reseye {
        width: 35px !important;
        height: 25px !important;
        margin-right: 62px;
    }
    .custom-bubble .dropdown-item {
        font-size: 12px !important;
    }
/*
    .custom-bubble {
        min-width: 1px !important;
        left: 0% !important;
        transform: translateX(-72%) !important;
        margin-top: 50px !important;
        margin-right: -56px !important;
    }
*/
    .dropdown-menu.show {
        display: block;
        position: absolute;
        inset: 1px 0px auto auto;
        margin: 42px;
        transform: translate3d(-76px, 250px, 0px) !important;
    }
    .filter-icon {
        width: 96% !important;
        margin-left: 2% !important;
    }

    .clear-dates-btn {
        width: 19% !important;
        margin-top: 15px !important;
        margin-left: 0px !important;
        padding: 5px 10px !important;
    }
    .content-layout {
        display: flex;
        gap: 0px !important;
        margin-bottom: 60px;
    }
    #parentDivPagination {
        display: none !important;
    }
    .mobile-input-form {
        margin-top: 82px !important;
        margin-bottom: 80px !important;
        font-size: 14px;
        margin-right: 0px;
    }
    .section-title {
        font-size: 26px !important;
        color: var(--color-text-dark);
        margin-bottom: 20px !important;
        margin-top: 20px !important;
        font-weight: 400;
        font-family: var(--bs-body-font-family-regular);
    }
}
/* Responsive container adjustments */
@media (max-width: 1400px) {
    .container {
        max-width: 92%;
    }
}

/* ---------------------------------------------------- */
/* EXTRA LARGE DEVICES (1200px - 1399px) */
/* ---------------------------------------------------- */
@media (max-width: 1399px) and (min-width: 1200px) {
    .hero-banner h1 {
        font-size: 68px;
    }

    .header {
        padding: 14px 60px 19px;
    }

    .input-grouprep {
        max-width: 450px;
    }
}

/* ---------------------------------------------------- */
/* LARGE DEVICES (992px - 1199px) */
/* ---------------------------------------------------- */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 95%;
    }

    .header {
        padding: 14px 40px 19px;
    }

    .hero-banner {
        min-height: 300px;
        padding: 50px 30px;
    }

        .hero-banner h1 {
            font-size: 64px;
        }

        .hero-banner p {
            font-size: 22px;
        }

    .input-grouprep {
        max-width: 440px;
    }

  
}

/* ---------------------------------------------------- */
/* MEDIUM DEVICES - TABLETS (768px - 991px) */
/* ---------------------------------------------------- */
@media (max-width: 991px) and (min-width: 768px) {
    .container {
        max-width: 96%;
    }

    .header {
        padding: 14px 30px 19px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo {
        flex-grow: 0;
        margin-right: auto;
    }

    .btn-research-calls {
        order: 3;
        margin: 10px 5px 0;
    }

    .btn-primary {
        margin: 10px 5px 0;
    }

    .hero-banner {
        min-height: 280px;
        padding: 45px 25px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

        .hero-banner h1 {
            font-size: 56px;
        }

        .hero-banner p {
            font-size: 20px;
        }

    .mobile-input-form {
        margin-top: 30px;
    }

    .input-grouprep {
        max-width: 420px;
        height: 52px;
    }

    .start-free-trial-btn {
        font-size: 15px;
        padding: 0 20px;
    }

}

/* ---------------------------------------------------- */
/* SMALL DEVICES - MOBILE LANDSCAPE (576px - 767px) */
/* ---------------------------------------------------- */
@media (max-width: 767px) and (min-width: 576px) {
    .desktop-video { /*rakesh*/
        display: none
    }

    .mobile-video { /*rakesh*/
        display: block
    }
    .container {
        max-width: 94%;
    }

    .header {
        padding: 14px 20px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .logo img {
        width: 180px;
        height: auto;
    }

    .btn-research-calls {
        font-size: 12px;
        padding: 4px 12px;
        margin: 5px;
        height: 30px;
    }

    .header .btn-primary {
        font-size: 12px;
        padding: 4px 12px;
        margin: 5px;
    }

    .hero-banner {
        min-height: auto;
        padding: 40px 20px;
        margin: 15px auto;
        border-radius: 20px;
    }

        .hero-banner h1 {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .hero-banner p {
            font-size: 18px;
            line-height: 1.4;
        }

    .mobile-input-form {
        margin-top: 25px;
    }

    .input-grouprep {
        max-width: 380px;
        height: 50px;
    }

    .mobile-input {
        font-size: 15px;
        padding: 12px 120px 12px 12px;
    }

    .start-free-trial-btn {
        font-size: 14px;
        padding: 0 18px;
    }

    .country-code {
        font-size: 15px;
        padding: 12px 8px 12px 15px;
    }

}

/* ---------------------------------------------------- */
/* EXTRA SMALL DEVICES - MOBILE PORTRAIT (431px - 575px) */
/* ---------------------------------------------------- */
@media (max-width: 575px) and (min-width: 431px) {
    .desktop-video { /*rakesh*/
        display: none
    }

    .mobile-video { /*rakesh*/
        display: block
    }
	
    .header {
        padding: 14px 15px;
        gap: 8px;
    }

    .logo img {
        width: 170px;
    }

    .btn-research-calls {
        display: none !important;
    }

    .hideResRep {
        display: none !important;
    }

    .showResRep {
        display: block !important;
        font-size: 13px;
        text-align: right;
        padding: 8px 15px;
        background-color: #F6F6F6;
        margin: 0;
    }

    .header .btn-primary {
        font-size: 12px;
        padding: 5px 12px;
    }

    .hero-banner {
        min-height: auto;
        padding: 35px 15px;
        margin: 15px auto;
    }

        .hero-banner h1 {
            font-size: 40px;
            text-align: center;
        }

        .hero-banner p {
            font-size: 16px;
            text-align: center;
            line-height: 1.5;
        }

    .mobile-input-form {
        margin-top: 25px;
    }

    .input-grouprep {
        max-width: 340px;
        height: 48px;
    }

    .mobile-input {
        font-size: 14px;
        padding: 10px 130px 10px 10px;
    }

    .start-free-trial-btn {
        min-width: 100px;
        font-size: 13px;
        padding: 0 15px;
    }

    .country-code {
        font-size: 14px;
        padding: 10px 8px 10px 12px;
    }

    .line-height-code {
        margin: 12px 0px !important;
    }
    .section-title {
        font-size: 26px !important;
        color: var(--color-text-dark);
        margin-bottom: 20px !important;
        margin-top: 20px !important;
        font-weight: 400;
        font-family: var(--bs-body-font-family-regular);
    }
    .hidetbldata {
        display: none !important;
    }

    .showtblData {
        display: block !important;
    }
    /*Change doen on 21 Jan 26 for hero banner alighnmet*/
    /* Pawan 21012026 */
    .errmsgalig {
        color: rgb(255, 255, 255);
        border-radius: 10px;
        padding: 8px;
        margin-bottom: 80px;
        font-size: 13px;
    }
}

@media (max-width: 430px) and (min-width: 376px) {

    .desktop-video { /*rakesh*/
        display: none
    }

    .mobile-video { /*rakesh*/
        display: block;
		transform: scale(0.4);
		margin-top: 0px;
    }

    .hideResRep {
        display: none !important;
    }

    .showResRep {
        display: block !important;
        font-size: 13px;
        text-align: right;
        padding: 8px 12px;
        background-color: #F6F6F6;
    }

    .header .btn-primary {
        font-size: 11px;
        padding: 5px 10px;
    }

    .hero-banner {
        padding: 30px 12px;
        margin: 12px auto;
    }

        .hero-banner h1 {
            font-size: 50px !important;
            text-align: center !important;
            padding-top: 65px !important;
        }

        .hero-banner p {
            font-size: 20px !important;
            text-align: center;
            margin-bottom: 20px;
            width: 100%;
            padding-left: 73px;
            padding-right: 75px;
            padding-bottom: 82px;
        }

    .mobile-input-form {
        margin-top: 25px;
    }

    .input-grouprep {
        width: 100% !important;
        max-width: 310px;
        height: 46px;
    }

    .mobile-input {
        font-size: 14px;
        padding: 8px 130px 8px 8px;
    }

    .start-free-trial-btn {
        min-width: 95px;
        font-size: 12px;
        padding: 0 12px;
    }

    .country-code {
        font-size: 14px;
        padding: 10px 6px 10px 12px;
    }
    .section-title {
        font-size: 26px !important;
        color: var(--color-text-dark);
        margin-bottom: 20px !important;
        margin-top: 20px !important;
        font-weight: 400;
        font-family: var(--bs-body-font-family-regular);
    }
    .hidetbldata {
        display: none !important;
    }

    .showtblData {
        display: block !important;
    }
}
/*menu re-design changes form mobile reponsive*/

/* ============================================
   SCROLLABLE NAVIGATION CSS - TEST VERSION
   Use unique class names to avoid conflicts
   ============================================ */

/* Main container for navigation section */
@media (max-width: 768px) {
    .test-menu-wrapper {
        width: 100%;
        background-color: #ffffff;
        padding: 16px 0;
    }

    .test-nav-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .test-horizontal-nav {
        display: flex;
        gap: 0;
        background-color: transparent;
        position: relative;
    }

    .test-nav-button {
        flex-shrink: 0;
        padding: 14px 30px;
        font-size: 15px;
        font-weight: 500;
        color: #333333;
        background-color: #e8eef5;
        border: none;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.3s ease;
        border-radius: 0;
        margin: 0;
        outline: none;
    }

        .test-nav-button:first-of-type {
            border-top-left-radius: 28px;
            border-bottom-left-radius: 28px;
            padding-left: 34px;
        }

        .test-nav-button:last-of-type {
            border-top-right-radius: 28px;
            border-bottom-right-radius: 28px;
            padding-right: 34px;
        }

        .test-nav-button.test-active-state {
            background-color: #043B72;
            color: #ffffff;
            font-weight: 600;
            border-radius: 30px;
        }

        .test-nav-button:hover:not(.test-active-state) {
            background-color: #d5dfe8;
        }

    /* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
/*Date filter CSS*/
/* Desktop Styles */
/* Pawan 21012026 -- Pawan Start*/
.date-filter-group {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.date-inputs-wrapper {
    display: flex;
    gap: 15px;
    flex: 1;
}

.date-input-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
}

.filter-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.date-input-container {
    position: relative;
    width: 100%;
}

.date-filter-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    height: 44px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .date-filter-input:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }

    /* Placeholder styling for empty date inputs */
    .date-filter-input::-webkit-datetime-edit-text,
    .date-filter-input::-webkit-datetime-edit-month-field,
    .date-filter-input::-webkit-datetime-edit-day-field,
    .date-filter-input::-webkit-datetime-edit-year-field {
        color: transparent;
    }

    .date-filter-input::before {
        content: attr(placeholder);
        color: #999;
        position: absolute;
        left: 12px;
        pointer-events: none;
    }

    .date-filter-input:focus::before,
    .date-filter-input:valid::before {
        display: none;
    }

    .date-filter-input:focus::-webkit-datetime-edit-text,
    .date-filter-input:focus::-webkit-datetime-edit-month-field,
    .date-filter-input:focus::-webkit-datetime-edit-day-field,
    .date-filter-input:focus::-webkit-datetime-edit-year-field,
    .date-filter-input:valid::-webkit-datetime-edit-text,
    .date-filter-input:valid::-webkit-datetime-edit-month-field,
    .date-filter-input:valid::-webkit-datetime-edit-day-field,
    .date-filter-input:valid::-webkit-datetime-edit-year-field {
        color: #333;
    }

.clear-dates-btn {
    padding: 10px 20px;
    background-color: #ff9966;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    height: 44px;
    white-space: nowrap;
}

    .clear-dates-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .clear-dates-btn:hover:not(:disabled) {
        background-color: #ff8552;
    }

    /* Desktop view - default (992px and above) */
    @media (min-width: 992px) {
        .test-horizontal-nav {
            overflow-x: visible;
            flex-wrap: nowrap;
        }
    }

    /* Tablet view - scrollable (577px to 991px) */
    @media (min-width: 577px) and (max-width: 991px) {
        .test-nav-container {
            padding: 0 16px;
        }

        .test-horizontal-nav {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }

            .test-horizontal-nav::-webkit-scrollbar {
                display: none;
            }

        .test-nav-button {
            padding: 13px 26px;
            font-size: 14px;
        }

            .test-nav-button:first-of-type {
                padding-left: 30px;
            }

            .test-nav-button:last-of-type {
                padding-right: 30px;
            }
    }

    /* Mobile view - scrollable (up to 576px) */
    @media (max-width: 576px) {
        .test-menu-wrapper {
            padding: 12px 0;
        }

        .test-nav-container {
            padding: 0 12px;
        }

        .test-horizontal-nav {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }

            /* Hide scrollbar for Chrome, Safari and Opera */
            .test-horizontal-nav::-webkit-scrollbar {
                display: none;
            }

        .test-nav-button {
            padding: 11px 22px;
            font-size: 13px;
        }

            .test-nav-button:first-of-type {
                padding-left: 26px;
            }

            .test-nav-button:last-of-type {
                padding-right: 26px;
            }
    }

    /* Extra small mobile devices (up to 375px) */
    @media (max-width: 375px) {
        .test-nav-button {
            padding: 10px 18px;
            font-size: 12px;
        }

            .test-nav-button:first-of-type {
                padding-left: 22px;
            }

            .test-nav-button:last-of-type {
                padding-right: 22px;
            }
	}
/* Extra small devices */
@media (max-width: 480px) {
    .desktop-video { /*rakesh*/
        display: none
    }

    .mobile-video { /*rakesh new*/
        display: block;
        transform: scale(0.7) !important;
        margin-top: 0px !important;
    }

    .logoimg { /*rakesh*/
        width: 205px;
        height: 30px;
    }

    .homeHeader { /*rakesh new*/
        text-align: center;
        font-family: SpoqaHanSansNeo-Bold;
        letter-spacing: 0px;
        text-shadow: 0px 3px 10px #00000059 !important;
        color: #F58220;
        line-height: 50px;
.date-filter-group {
        gap: 10px;
    }

    .date-inputs-wrapper {
        gap: 10px;
    }

    .date-filter-input {
        font-size: 12px;
        padding: 8px 6px;
        height: 40px;
    }

    .filter-label {
        font-size: 11px;
    }

    .clear-dates-btn {
        width: 70px;
        max-width: 90px;
        padding: 6px 12px;
        height: 32px;
        font-size: 12px;
    }
    }
}
/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
    .date-filter-input {
        min-height: 44px;
        -webkit-appearance: none;
    }

        .date-filter-input::-webkit-date-and-time-value {
            text-align: left;
        }
}
/* Prevent iOS overlapping issue */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .date-input-wrapper {
        position: relative;
        z-index: 1;
    }
    /* Pawan 21012026 -- Pawan End*/
}