﻿`/* Global/Page Styling */
    body {
        background-color: #fcfcf5; /* Light, warm background for a soft feel */
        font-family: Arial, sans-serif;
    }
    
     ::-webkit-scrollbar {
      width: 5px;
    }

    ::-webkit-scrollbar-track {
      background: #ffffff;
    }

    ::-webkit-scrollbar-thumb {
      background: #cccccc;
      border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #ccc;
    }

    /* Page Title & Filters */
    .page-title {
        font-size: 26px;
        font-weight: 500;
        color: #343a40;
        margin-bottom: 0px;
        padding-left: 8px;
    }

    .filter-buttons .btn-filter-pill {
        border-radius: 50px;
        padding: 5px 15px;
        margin-right: 10px;
        border: 1px solid #e0e0e0;
        color: #555;
        background-color: #fff;
        font-size: 0.9rem;
    }
    .filter-buttons .btn-filter-pill.active {
        background-color: #e6e6fa; /* Light purple highlight */
        border-color: #e6e6fa;
        color: #4b0082; /* Dark purple text */
        font-weight: 600;
    }

    /* ============================================= */
    /* STATS DASHBOARD STYLING (index1.png) */
    /* ============================================= */
    .col-lg-2-4 {
        /* Custom class for 5 items in a row (100% / 5 = 20%) */
        width: 20%; 
    }
    @media (max-width: 991.98px) {
        .col-lg-2-4 {
            width: 50%; /* Reverts to 2 per row on smaller screens */
        }
    }

    

    .guide-container {
        /* Ensure the guide stays visible when scrolling */
        top: 82px;
        background: white;
        box-shadow: 1px 1px 5px #b3aeae;
    }

    .trending-header {
        background-color: #4b4b8c;
        border: 0px solid #f0f0f0;
        border-radius: 8px;
    }

    .trending-header .icon-placeholder {
        font-size: 1.5rem;
        color: #4b0082;
    }
    
  .guide-title {
    font-size: 17px;
    font-weight: 300;
    color: #f5f5f5;
    text-align: center;
}

    /* Steps Line and Dot */
    .step-item {
        position: relative;
    }
    .step-dot {
        width: 8px;
        height: 8px;
        background-color: #ff9933;
        border-radius: 50%;
        margin-top: 0.4rem;
        flex-shrink: 0;
    }
    .step-item:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 3px;
        height: 100%;
        width: 1px;
        background-color: #e0e0e0;
    }
    .step-number {
        font-size: 0.85rem;
        color: #555;
    }
    .step-text {
        font-size: 0.95rem;
        color: #333;
    }
    
    /* Other Links */
    .other-links-title {
        font-size: 0.8rem;
        color: #999 !important;
    }
    .link-list .list-group-item {
        border-bottom: 1px solid #eee;
        padding: 10px 0;
        background-color: transparent;
    }
    .link-list .list-group-item:last-child {
        border-bottom: none;
    }
    
    .stat-card
     {
   padding: 8px 7px;
   }
    
    .topsection
    {
     /* background: #fffef4; */
     border: 0px solid #dfdfdf;
     border-radius: 5px 5px 10px 12px;
     box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1275);
     transition: color 0.3s ease;
     position:relative;
     text-align: center;
     margin: 5px 1px;
    }
     
     .topsection::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #4b4b8c;
  transition: width 0.4s ease;
}

/* On hover � border expands left to right */
.topsection:hover::after {
  width: 100%;
}

/* Optional text color transition */
.topsection:hover {
  color: #4b4b8c;
}
.smartButton2 .icon svg
{
    height: 19px;
    margin-left: 6px;
}
.tablinks1
{
}
     
     
     /*slider for upcomming ipo*/
     
     .slider-section {
    padding: 3rem 0;
}

.slider-title {
    color: #343a40;
    font-weight: 700;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 10px;
}

.slider-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #007bff; /* Primary color for underline */
    border-radius: 2px;
}

/* Card Styling */
.public-issue-card {
    border: none; /* Remove default Bootstrap border */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Softer, larger shadow */
    position: relative;
    overflow: hidden;
    padding: 25px; /* Increased padding */
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
    height: 100%; /* Ensure cards in a row have equal height */
}

.public-issue-card:hover {
    transform: translateY(-5px); /* Lift card on hover */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

/* Issue Tags (NCD/IPO) */
.issue-tag {
    position: absolute;
    top: 0; /* Align to top */
    right: 0; /* Align to right */
    color: white;
    font-weight: 600;
    padding: 10px 20px; /* Larger padding for the tag */
    border-top-right-radius: 12px; /* Match card border radius */
    border-bottom-left-radius: 12px; /* Curved bottom-left corner */
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    background-color: #6c757d; /* Default neutral tag */
}

.ncd-tag {
    background-color: #28a745; /* Bootstrap success green */
}

.ipo-tag {
    background-color: #007bff; /* Bootstrap primary blue */
}

/* Logo and Title Styling */
.issue-logo {
    width: 48px; /* Slightly larger logo */
    height: 48px;
    border-radius: 50%;
    border: 2px solid #e9ecef; /* Subtle border for logo */
    object-fit: contain; /* Ensure logo fits without distortion */
}

.card-title {
    font-size: 1.25rem; /* Larger title */
    font-weight: 700; /* Bolder title */
    color: #343a40;
    margin-bottom: 0;
    line-height: 1.3;
}

/* Details Grid Styling */
.details-grid {
    margin-top: 20px;
    margin-bottom: 20px; /* Add space below grid */
}

.detail-label {
    font-size: 0.8rem;
    color: #6c757d; /* Muted label color */
    margin-bottom: 2px; /* Smaller gap */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1.05rem; /* Slightly larger value */
    font-weight: 600;
    color: #212529; /* Darker value color */
    margin-bottom: 15px; /* More space between value rows */
}

.rating-value {
    color: #28a745; /* Consistent green for ratings */
    font-weight: 700;
}

/* Card Footer and Button Styling */
.card-footer {
    background-color: transparent;
    border-top: 1px solid #f0f0f0; /* Subtle separator */
    padding: 20px 0 0 0;
    margin-top: auto; /* Push footer to the bottom if content height varies */
}

.invest-btn {
    width: 48%;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px; /* Slightly more rounded buttons */
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.invest-btn.btn-primary { background-color: #007bff; border-color: #007bff; }
.invest-btn.btn-primary:hover { background-color: #0056b3; border-color: #0056b3; }

.invest-btn.btn-success { background-color: #28a745; border-color: #28a745; }
.invest-btn.btn-success:hover { background-color: #1e7e34; border-color: #1e7e34; }

.invest-btn.btn-danger { background-color: #dc3545; border-color: #dc3545; }
.invest-btn.btn-danger:hover { background-color: #bd2130; border-color: #bd2130; }


.learn-btn {
    width: 48%;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    color: #6c757d; /* Muted outline button text */
    border-color: #dee2e6;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.learn-btn:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    color: #495057;
}

/* Carousel Controls (Previous/Next Buttons) */
.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* Smaller hit area for controls */
    opacity: 0.7; /* Slightly visible by default */
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1; /* Fully visible on hover */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Darker background for icons */
    border-radius: 50%;
    padding: 18px; /* Larger icon area */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for controls */
    background-size: 50%; /* Adjust icon size within padding */
}

/* Carousel Indicators (Dots at the bottom) */
.custom-indicators {
    bottom: -40px; /* Position indicators further below the carousel */
}

.custom-indicators button {
    width: 12px; /* Larger dots */
    height: 12px;
    border-radius: 50%;
    background-color: #ced4da; /* Lighter grey for inactive indicators */
    border: none;
    margin: 0 5px;
    opacity: 0.8;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.custom-indicators button.active {
    background-color: #007bff; /* Primary blue for active indicator */
    opacity: 1;
    transform: scale(1.2); /* Slightly larger active dot */
}

/* Ensure equal height cards within a flex container */
.carousel-item .row.g-4 .d-flex {
    display: flex;
}


/*end slider css for ipo */


.bg-themeipo {
    background-color: #9b9045 !important;
    border-radius: 6px !important;
    padding:7PX 6PX ! IMPORTANT;
    margin-bottom: 0px;
    font-weight: normal !important;
    color: white;
    margin-right:10px;
    font-size: 13px;
    
}
.bg-themeipo:hover
{
     transform: translateY(-4px) scale(1.03);
     box-shadow: 0 10px 30px rgba(0,0,0,.18);
     outline: none;
     background:#857a33 !important;
     color:#ffffff !important;
}
.bg-themeipo1{
   background-color: #4b4b8c !important;
   border-radius: 6px !important;
   padding: 7PX 6PX ! IMPORTANT;
   margin-bottom: 0px;
   font-weight: normal !important;
   color: white;
   margin-right: 10px;
   font-size: 13px;
}
.bg-themeipo1:hover
{
     transform: translateY(-4px) scale(1.03);
     box-shadow: 0 10px 30px rgba(0,0,0,.18);
     outline: none;
     background: #0f0e96 !important;
     color:#ffffff !important;
}
.tableheading
{
    color: #565353;
    font-size: 17px;
    margin-bottom: 7px;
    margin-top: 14px;
}

.tabalebg2
{
   
}
.table-bordered>:not(caption)>*>*
{
    border-width:0px !important;
    padding: 8px 5px;
    border: 1px solid #c7c7c7 !important;
        /*width: 112px !important;*/
}
.mainline-issue-table span
{
    color: #4b4949 !important;
    font-size: 12px;
    }
.mainline-issue-table a {
    font-size: 12px !important;
    color: #8b7b12;
    font-weight: 600;
    padding-left: 1px;
}


 .mainline-issue-table a::first-letter {
  text-transform: uppercase; /* capitalize only first letter */
}

    .accordion-button:not(.collapsed) {
    color: #292a2b;
    background: none;
}
.accordion-item {
    background-color: #fff;
    border: 0px solid rgba(0, 0, 0, .125);
    margin-bottom: 18px;
    box-shadow: 4px 4px 24px 0 rgba(31, 72, 114, .078);
}
.badge {
    margin-right: 1px;
    color: #606065;
    font-size: 19px;
    line-height: 5px;
}
.h2color {
    color: #343a40;
    font-size: 22px !important;
    font-weight: 500 !important;
}
.sticky-top {
    position: sticky;
    top:79px;
    z-index: 555;
}
.xtra-small {
    font-size: 16px;
    line-height: 30px;
}
.table-bordered tr:hover
{
    background:#b6bfc71f;
}
.tablinks:hover
{
    color:#6161cd !important;
}
.tablinks:hover svg
{
    color:#6161cd !important;
}


   .tablinks
    {
     /* background: #fffef4; */
     border: 1px solid #dfdfdf;
    
     /* box-shadow: 0px 2px 8px #ccc; */
     transition: color 0.3s ease;
     position:relative;
    }
     
     .tablinks::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  transition: width 0.4s ease;
  \: 19px;
}

/* On hover � border expands left to right */
.tablinks:hover::after {
  width: 100%;
}

/* Optional text color transition */
.tablinks:hover {
  color: #6161cd;
}







.bg-theme1
{
    background: #6161cd;
    border-radius: 5px;
}
.text-success
 {
    color: #9b9045 !important;
}
.view-ipo-link {
    color: #9b9045 !important;
}
.smallfonts {
    font-size: 11px;
    margin-right: 10px;
    margin-left: -4px;
    margin-top: -3px;
}
.lightcolor {
    color: #413d3d;
    font-weight: bold !important;
    font-size: 15px;
}
.boldcolor {
    color: #474444 !important;
    font-weight: normal !important;
    font-size: 14px;
}
.divborder

 {
    border: 1px solid #ffefef;
    padding: 8px;
    padding-bottom: 14px !important;
    border-radius: 8px !important;
    padding-bottom: 19px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 5px 5px 21px #cccc;
}

.divborder:hover
{
    transform: translateY(-5px); /* Lift card on hover */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.about1 p
{
    color: #4b4a4a;
}
 .containerabout
 {
    border: 1px solid #cbc283;
    border-radius: 17px;
    margin-top: 21px;
    padding-bottom: 14px;
 }
.accordion-button {
     padding: 21px 15px;
     font-size: 18px;
     color: #585858;
}
.accordion-body{
    color: #4b4a4a;
 }
 .stat-card .stat-value
 {
  color: #7f721e;
  font-size: 22px !important;
  font-weight: 700;
 }
 .stat-label
 {
 font-size: 15px;
 color: #6c757d;
 font-weight: 600;
 }
 .feature .feature-item {
    padding: 33px 0px !important;
}

.product_icon {
    height: 25px !important;
}
.headingborder
{
    border-bottom: 1px solid #edece4;
    margin-bottom: 9px;
    }
 
 .iponame
 {
    height: 12px;
    background: linear-gradient(135deg, #6878e1 0%, #4052b9 100%);
    padding: 14px !important;
    margin-right: 9px;
    border-radius: 13px;
 }
 
 
 

 
/*media query start here*/

 @media only screen and (max-width: 600px)
 {
.stat-card
 {
    padding: 7px 2px;
    margin: 0px;
   
}
.topsection
{
    margin-top:10px !important;
}
.totalipodetail
{
    display:none !important;
}
.mobilepadding
{
    padding-top:10px;
}
}

 @media (max-width: 576px) 
 {
     .stat-card
 {
    padding: 7px 2px;
    margin: 0px;
    
   
}
.topsection
{
    margin-top:10px !important;
    width:85%;
}
.totalipodetail
{
    display:block !important;
}
.forresponsive{ float:left;}
.feature {width:100% !important;}
.stat-label{font-size:13px;}
     
 }
 
 
 
 /********************/
 .fund-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation transition */
    background-color: #fff;
}

.card-content h2 {
    color: #4b4b8c;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-content p {
    color: #555 !important;
    font-size: 0.95rem;
}

.card-icon {
    margin-bottom: 15px;
    /* Simulate the placement from the image */
    align-self: flex-start;
}

/* * Border Styling to replicate the divided box layout 
 */

/* Vertical divider between the two columns */
.col-lg-6:nth-child(odd) .fund-card {
    border-right: 1px solid #e0e0e0;
}

/* Horizontal divider between the top and bottom rows */
.top-left-box, .top-right-box {
    border-bottom: 1px solid #9b9045;
    border-left: 1px solid #9b9045;
    border-top: 1px solid #9b9045;
    border-right: 1px solid #e0e0e0;
}

/* Remove borders on smaller screens (when stacked) */
@media (max-width: 991.98px) {
    .col-lg-6:nth-child(odd) .fund-card {
        border-right: none;
    }
    .fund-card {
        border-bottom: 1px solid #e0e0e0;
    }
    .fund-grid .col-lg-6:last-child .fund-card {
        border-bottom: none; /* Remove border from the very last box */
    }
}


/* * Animation (Hover Effects) 
 */

.fund-card:hover {
    /* Lift the card slightly */
    transform: translateY(-5px); 
    /* Add a subtle shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    /* Flash a background color on hover */
    background-color: #fefefe; 
}

/* Icon Animation */
.fund-card:hover .card-icon {
    /* Scale and rotate the icon slightly */
    transform: scale(1.1) rotate(-2deg);
    transition: transform 0.3s ease;
}

.iconcolor
{
    color:#9b9045;
}

.borderpopup {
    border: 1px solid #4d4822;
    background: #ffffff !important;
}
.popupcolor {
    color: #6262ab;
}
.titlesmall   
{
    font-size: 19px;
    color: #4b4b8c;
    }
    
    .btn-download {
      background: #9b9045;
      color: #fff;
      font-weight: normal;
      border: none;
      transition: all 0.3s ease;
      border-radius: 6px;
      padding: 5px 9px;
      font-size: 15px;
      margin-top: 25px;
      margin-right: 10px;
    }

    .btn-download:hover {
      transform: translateY(-2px);
      background: #8f7f16;
      box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
      color:#fff;
    }
    
     .containeripo .ipo-section {
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0px;
    }

    .containeripo .ipo-text h5 {
      color: #4a4949;
      font-size: 44px;
      font-family: calibri;
      font-weight: bold;
    }

    .containeripo .ipo-text p {
      color: #7c8a9a;
      margin-bottom: 0;
      font-size: 15px;
    }

    .containeripo .btn-custom {
      border: none;
      font-weight: normal;
      padding: 8px 18px;
      border-radius: 8px;
      color: #fff;
      transition: all 0.3s ease;
    }

    .containeripo .btn-download {
      background-color: #a58e43;
    }

    .containeripo .btn-download:hover {
      background-color: #917c3a;
    }

    .containeripo .btn-help {
      background-color: #218c60;
      position:relative;
    }

    .containeripo .btn-help:hover {
      background-color: #1b744f;
    }

    .containeripo .btn-callback {
      background-color: #4b4b8c;
    }

    .containeripo .btn-callback:hover {
      background-color: #0f0e96;
    }

    .containeripo .call-text {
      font-size: 0.9rem;
      color: #333;
      font-weight: 500;
      margin-bottom: 4px;
      text-align: center;
    }
    .containeripo
    {
      /*  box-shadow: 4px 4px 24px 0 rgba(31, 72, 114, .048);*/
    }
    .ipo-page-container
     {
        /* box-shadow: 4px 4px 24px 0 rgba(31, 72, 114, .048); */
        margin-top: 10px;
        padding-bottom: 0px !important;
    }
    
        /* Contact info popup */
    .contact-info-detail {
      position: absolute;
      top: 110%;
      left: 50%;
      transform: translateX(-50%) scale(0.9);
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      padding: 12px 18px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease-in-out;
      z-index: 100;
      width: 250px;
      text-align:left;
    }

    .btn-help:hover .contact-info-detail {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) scale(1);
    }

   .contact-info-detail p {
    margin: 6px 0;
    font-size: 15px;
    padding: 11px 0px;
}

    .contact-info-detail a {
      text-decoration: none;
      color: #333;
    }
.contact-info-detail i {
    color: #c79c3c;
    margin-right: 8px;
    font-size: 20px;
}
.contact-info-detail a:hover
{
    color:#5c63d8;
}

.stat-value1
{color: #9b9045 !important;}
.stat-value2
{color: #4b4b8c !important;}
.stat-value3
{
color: #e37070 !important;
}
  .icon-box {
 
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box i {
  font-size: 24px;
  color: #9b9045;
}

/*
@media (max-width: 576px) 
{
    .table-responsive {
    overflow-x: scroll;
    width: 449px !important;
    overflow:auto;
 }
.table-bordered>:not(caption)>*>*{ width:auto !important;}

}

@media (max-width:450px) 
{
    .table-responsive {
    overflow-x: auto;
    width: 420px !important;
       overflow:auto;
   }
 .table-bordered>:not(caption)>*>*{ width:auto !important;}
}
@media (max-width:350px) 
{
    .table-responsive {
    overflow-x: auto;
    width: 300px!important;
       overflow:auto;
  }
 .table-bordered>:not(caption)>*>*{ width:auto !important;}
}*/
@media (max-width:576px) 
{
    .containeripo .ipo-section
    {
        gap:0px;
    }
    .containeripo .ipo-text h5
    {
        font-size:30px; 
    }
    .containeripo {
   margin-top : -19px;
}
.containeripo .btn-custom {
     padding: 12px 10px;
     font-size: 11px;
}
.containeripo .call-text
{
    display:none;
}
    .topsection {
     
        width: 100%;
    }
    .page-title {
    font-size: 20px;
    }
    .containeripo .btn-callback {
   
    margin-top: 22px;
}
.tableheading {
    color: #565353;
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 0px;
}
}

/*********************************************new css start **********/
 .dashboard-container1 {
            max-width: 1400px;
            margin: 0 auto;
        }

     .dashboard-container1 .header-section {
    background: white;
    border-radius: 20px;
    padding: 6px 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 6px;
    position: relative;
    /*overflow: hidden;*/
    padding-bottom: 10px;
    padding-top: 0px;
}

       .dashboard-container1  .header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            /* background: linear-gradient(135deg, #475aaf 0%, #764ba2 100%); */
        }

    .dashboard-container1  .header-title {
    font-size: 30px;
    font-weight: 700;
    color: #3d495c;
    margin-bottom: 0px;
}

       .dashboard-container1  .header-subtitle {
            color: #718096;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

     .dashboard-container1    .action-buttons .btn {
    border-radius: 12px;
    padding: 9px 10px;
    font-weight: 600;
    margin: 5px;
    transition: all 0.3s 
ease;
    border: none;
}
      .dashboard-container1   .btn-download {
            background: linear-gradient(135deg, #7f721e 0%, #7f721e 100%);
            color: white;
        }

       .dashboard-container1  .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(17, 153, 142, 0.4);
            color: white;
        }

         .dashboard-container1.btn-help {
            background: linear-gradient(135deg, #4b4b8c  0%, #4b4b8c  100%);;
            color: white;
        }

        .dashboard-container1 .btn-help:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(58, 123, 213, 0.4);
            color: white;
        }

       .dashboard-container1  .btn-callback {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .btn-callback:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
            color: white;
        }

       .dashboard-container1  .contact-info {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            color: #4a5568;
        }

       .dashboard-container1  .contact-number {
            font-weight: 700;
            color: #667eea;
        }

       .dashboard-container1  .stats-grid {
            display: flex;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 10px;
        }

   .dashboard-container1 .stat-card {
    background: white;
    border-radius: 20px;
    padding: 18px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s 
ease;
    position: relative;
    overflow: hidden;
}

        .dashboard-container1 .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0px;
            transition: height 0.3s ease;
        }

       .dashboard-container1  .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }

       .dashboard-container1  .stat-card:hover::before {
            height: 100%;
            opacity: 0.05;
        }

        .dashboard-container1 .stat-card.open::before {
            background: linear-gradient(135deg, #8f822e 0%, #b5ac6f 100%);
        }

        .dashboard-container1 .stat-card.upcoming::before {
            background: linear-gradient(135deg, #6868b1 0%, #8585b1 100%);
        }

        .dashboard-container1 .stat-card.closed::before {
            background: linear-gradient(135deg, #cf6767 0%, #e58484 100%);
        }

        .dashboard-container1 .stat-card.video::before {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .dashboard-container1 .stat-card.video {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .dashboard-container1 .stat-card.video .video-thumbnail {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            height: 100%;
        }

        .dashboard-container1 .stat-card.video .video-thumbnail:hover {
            transform: scale(1.02);
        }

       .dashboard-container1  .stat-card.video .play-button {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }

        .dashboard-container1 .stat-icon {
            width: 37px;
            height: 32px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 8px;
            color: #7f721e;
        }

        .dashboard-container1 .stat-card.open .stat-icon {
            /* background: linear-gradient(135deg, #7f721e 0%, #7f721e 100%); */
        }

        .dashboard-container1 .stat-card.upcoming .stat-icon {
            /* background: linear-gradient(135deg, #4b4b8c  0%, #4b4b8c  100%); */
        }

        .dashboard-container1 .stat-card.closed .stat-icon {
            /* background: linear-gradient(135deg, #e37070  0%, #e37070  100%); */
        }

        .dashboard-container1 .stat-label {
            font-size: 13px;
            color: #646f7e;
            font-weight: 600;
            /* text-transform: uppercase; */
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

      .dashboard-container1  .stat-value {
    font-size: 35px;
    font-weight: 800;
    color: #2d3748;
    line-height: 1;
}
     .dashboard-container1  .stat-description {
    margin-top: 8px;
    font-size: 9px;
    color: #78899f;
}

      .dashboard-container1   .video-section {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }

       .dashboard-container1  .video-thumbnail {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dashboard-container1 .video-thumbnail:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 50px rgba(0,0,0,0.2);
        }

       .dashboard-container1  .video-thumbnail img {
            width: 100%;
            height: auto;
            display: block;
        }

         .dashboard-container1 .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #dc3545;
            transition: all 0.3s ease;
        }

       .dashboard-container1  .video-thumbnail:hover .play-button {
            transform: translate(-50%, -50%) scale(1.1);
            background: white;
        }

       .dashboard-container1  .video-title {
            margin-top: 20px;
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d3748;
        }

        @media (max-width: 768px) {
          .dashboard-container1   .header-title {
                font-size: 1.8rem;
            }

          .dashboard-container1   .action-buttons {
                display: flex;
                flex-direction: column;
            }

           .dashboard-container1  .action-buttons .btn {
                width: 100%;
            }

           .dashboard-container1  .stat-value {
                font-size: 2.5rem;
            }
        }

        .dashboard-container1 .badge-new {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #e37070  0%, #e37070  100%);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

      .dashboard-container1   .apply-info {
            background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
            border-left: 2px solid #4b4b8c;
            padding: 8px 12px;
            border-radius: 10px;
            margin-top: 2px;
            color: #4b4b8c;
        }

       .dashboard-container1 .dashboard-container1 .apply-info {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-left: 4px solid #667eea;
    padding: 8px 12px;
    border-radius: 10px;
    margin-top: 2px;
}
 .dashboard-container1 .paddingvideo
{
    border:0px solid red;
    padding:0px;
}

.title-section h1 {
    font-size: 25px;
    font-weight: 700;
    background: #626262;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
        
        .title-section h1::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b68e43, #4b4b8c);
    border-radius: 2px;
    animation: expandWidth 1s 
ease-out 0.5s forwards;
}
        
        @keyframes expandWidth {
            to {
                width: 100%;
            }
        }
       
       
       /***********************************************************************************************/
       
       
             .ipo-card-section  .header-section {
            text-align: center;
            margin-bottom: 0px;
            animation: fadeInDown 0.8s ease-out;
        }

      .ipo-card-section  .header-icon {
            /* font-size: 20px; */
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            margin-right: 8px;
        }

       .ipo-card-section .header-title {
            font-size: 29px;
           /* font-weight: 700;*/
            color: #3d495c;
            margin-bottom: -19px;
        }

     .ipo-card-section   .header-subtitle {
            color: #718096;
            font-size: 14px;
            margin-bottom: 0px;
        }

        .ipo-card-section .ipo-card {
            background: white !IMPORTANT;
            border-radius: 20px !important;
            padding: 0px 20px !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100% !important;
            border: none;
            position: relative !important;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
            padding-bottom: 11px !important;
        }

       .ipo-card-section .ipo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(135deg, #6d6da5 0%, #4b4b8c 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .ipo-card-section .ipo-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--card-hover-shadow);
        }

       .ipo-card-section .ipo-card:hover::before {
            transform: scaleX(1);
        }

      .ipo-card-section  .company-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f7fafc;
        }

       .ipo-card-section  .company-logo {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

       .ipo-card-section .company-info h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2d3748;
            margin: 0;
        }

      .ipo-card-section  .ipo-badge {
            background: var(--success-gradient);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(17, 153, 142, 0.3);
        }

       .ipo-card-section .detail-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 0;
            border-bottom: 1px solid #f7fafc;
        }

       .ipo-card-section .detail-row:last-child {
            border-bottom: none;
        }

       .ipo-card-section .detail-label {
            color: #718096;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

      .ipo-card-section  .detail-label i {
            color: #8b929d;
        }

       .ipo-card-section .detail-value {
            color: #2d3748;
            font-weight: 600;
            font-size: 14px;
            text-align: right;
        }

       .ipo-card-section .price-highlight {
            background: linear-gradient(135deg, #9b9045 0%, #9b9045 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

       .ipo-card-section .action-buttons {
            display: flex;
            gap: 10px;
            margin-top: 3px;
        }

       .ipo-card-section .btn-invest {
            flex: 1;
            background: linear-gradient(135deg, #cdbf63 0%, #9b9045 100%);
            border: none;
            color: white;
            padding: 8px 8px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

       .ipo-card-section .btn-invest:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
            color: white;
        }

        .btn-learn {
            flex: 1;
            background: white;
            border: 2px solid #4b4b8c;
            color: #4b4b8c;
            padding: 8px 8px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

       .ipo-card-section .btn-learn:hover {
            background: #667eea;
            color: white;
            transform: translateY(-2px);
        }

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

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

      .ipo-card-section  .col-lg-4:nth-child(1) .ipo-card {
            animation-delay: 0.1s;
        }

      .ipo-card-section  .col-lg-4:nth-child(2) .ipo-card {
            animation-delay: 0.2s;
        }

       .ipo-card-section .col-lg-4:nth-child(3) .ipo-card {
            animation-delay: 0.3s;
        }

        @media (max-width: 768px) {
           .ipo-card-section .header-title {
                font-size: 2rem;
            }

          .ipo-card-section  .ipo-card {
                margin-bottom: 30px;
            }
        }
        
        
        
            .ipo-card1 {
      border-radius: 20px;
      padding:3px  25px;
      transition: all 0.3s ease;
      cursor: pointer;
      border: 2px solid transparent;
      padding-bottom:0px;
      float: left;
    }

    .ipo-card1:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 22px rgba(0,0,0,0.15);
      border-color: #ddd;
    }

    .ipo-card1.selected {
      transform: scale(1.06);
      box-shadow: 0 12px 30px rgba(0,0,0,0.25);
      border-color: #b9b9b9 !important;
    }

    .icon-box1 {
      width: 45px;
      height: 45px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* Gradients */
    .ipo-bg {background: linear-gradient(135deg, #fff0d1, #fffdfb);}
    .ipo-icon {background: linear-gradient(135deg, #e7da7f, #9b9045);}

    .sme-bg {background: linear-gradient(135deg, #e7f0ff, #ffffff);}
    .sme-icon {background: linear-gradient(135deg, #94a8fb, #4b4b8c);}

    .fpo-bg {background: linear-gradient(135deg, #e6fff7, #ffffff);}
    .fpo-icon {background: linear-gradient(135deg, #ff786a, #ff9c9c);}
    .text-muted1 {
    color: #6c757d !important;
    margin-bottom: 1px;
    font-size: 13px;
    margin-top: 1px;
}
.icon-box1 i {
    font-size: 24px;
    color: #ffffff;
}
.fontipo1
{
    color: #6c6c6c;
    font-weight: normal;
}

@media (max-width:600px) 
 {
.dashboard-container1 .stats-grid
  {
  gap:12px;
 }
 .stat-description
 {
  display:none;
 }
 .dashboard-container1 .stat-label
 {
     font-size:10px;
 }
 .dashboard-container1 .stat-card
 {
     padding:5px 15px;
 }
 .text-muted1
 {
 display:none;
 }
 .ipo-card1 
 {
    border-radius: 20px;
    padding: 2px 15px !important;
 }
 .icon-box1 {
    width: 30px;
    height: 30px;
    border-radius: 9px;
 }
 .icon-box1 i {
    font-size: 17px;
 }
 .fontipo1 {
    font-size: 14px;
 }
 .ipo-card1 {
    border-radius: 8px;
 }
 .ipo-card-section .btn-invest {
    padding: 8px 14px;
    font-size: 14px;
 }
 .ipo-card-section .btn-learn
 {
    spadding: 8px 14px;
    font-size: 14px;
 }
     .ipo-card-section .header-title {
        font-size: 21px;
        line-height: 0px;
        padding: 24px 5px;
        margin-bottom: 0px;
    }
 }