﻿`/* 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: 28px;
        font-weight: 500;
        color: #343a40;
        margin-bottom: 3px;
        padding-left: 10px;
    }

    .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: 3px;
  background: #0f0e96;
  transition: width 0.4s ease;
}

/* 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: -5px;
}
.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 #9b9045;
        margin-bottom: 14px;
    }
 
 .iponame
 {
    height: 12px;
    background: #116530;
    padding: 14px !important;
    margin-right: 9px;
    border-radius: 9px;
 }
 
 
 

 
/*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: 15px;
    }

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

    .containeripo .ipo-text p {
      color: #4b4b8c;
      margin-bottom: 0;
      font-size: 20px;
    }

    .containeripo .btn-custom {
      border: none;
      font-weight: 600;
      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);
    }
    
        /* 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
{
}
.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;}
}*/