﻿.title-section {
    position: relative;
    text-align: center;
    animation: slideUp 0.7s cubic-bezier(.4, 0, .2, 1) 0.1s both;
}
.title-section h1 {
   
font-size: 30px;
   
font-weight: 900;
   
line-height: 1.1;
   
color: #565656;
   
letter-spacing: -0.02em;
   
position: relative;
}
.title-section h1 .highlight {
    background: linear-gradient(120deg, #4b4b8c, #a39747 50%, #9b9045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.title-section h1::after {
    content: '';
    display: block;
    height: 4px;
    width: 70%;
    margin: 10px auto 0;
    border-radius: 50px;
    background: linear-gradient(90deg, #4b4b8c, #9b9045);
    animation: lineGrow 0.8s cubic-bezier(.4, 0, .2, 1) 0.4s both;
    transform-origin: left;
}



  /* ── Grid ── */
  #pms-cont { gap: 0; }

  /* ── Card ── */
  .scheme-card {
    background:  #ffffff;
    border-radius: 16px;
    border: 1.5px solid #dbeafe;
    box-shadow: 0 4px 24px rgba(15,76,129,0.10);
    padding: 22px;
    height: 100%;
    transition: transform 0.28s cubic-bezier(.4,0,.2,1), box-shadow 0.28s cubic-bezier(.4,0,.2,1), border-color 0.28s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    animation: cardReveal 0.5s ease both;
  }
  .scheme-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, #0f4c81, #a58e43);
    opacity: 0;
    transition: opacity 0.28s cubic-bezier(.4,0,.2,1);
  }
  .scheme-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(15,76,129,0.18); border-color: #0f4c81; }
.scheme-card:hover .btn-invest { transform: scale(1.04); color: #fff; background:#218c47; }
  .scheme-card:hover::before { opacity: 1; }

  @keyframes cardReveal {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* stagger children */
  #pms-cont > div:nth-child(1) .scheme-card { animation-delay: .05s }
  #pms-cont > div:nth-child(2) .scheme-card { animation-delay: .10s }
  #pms-cont > div:nth-child(3) .scheme-card { animation-delay: .15s }
  #pms-cont > div:nth-child(4) .scheme-card { animation-delay: .20s }
  #pms-cont > div:nth-child(5) .scheme-card { animation-delay: .25s }
  #pms-cont > div:nth-child(6) .scheme-card { animation-delay: .30s }

  /* ── Logo wrapper ── */
  .logo-wrapper {
    width: 64px; height: 64px; min-width: 64px;
    border-radius: 14px;
    background: #f0f6ff;
    border: 1.5px solid #dbeafe;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: box-shadow 0.28s cubic-bezier(.4,0,.2,1);
  }
  .scheme-card:hover .logo-wrapper { box-shadow: 0 4px 16px rgba(15,76,129,.15); }
  .company-logo {width: 59px;height: 48px;object-fit: contain;}

  /* ── Text ── */
  .scheme-link { text-decoration: none; }
  .scheme-title {
    font-size: 1rem; font-weight: 700;
    color: #0f172a; margin: 0 0 2px;
    line-height: 1.3;
    transition: color 0.28s cubic-bezier(.4,0,.2,1);
  }
  .scheme-card:hover .scheme-title { color: #0f4c81; }
  .scheme-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #38404c;
    margin: 0 0 10px;
    line-height: 1.4;
  }

  /* ── Badges ── */
  .badge-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }
  .type-badge, .scheme-category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    padding: 3px 11px;
    letter-spacing: .3px;
  }
  .type-badge    { background: #eff6ff; color: #0f4c81;       border: 1px solid #bfdbfe; }
  .scheme-category {background: #fffef7;color: #5e561d;border: 1px solid #b9b17d;}

  /* ── Divider ── */
  .card-divider { border-top: 1px solid #dbeafe; margin: 14px 0 12px; }

  /* ── Action buttons ── */
  .action-buttons { display: flex; gap: 10px; }

  .btn-know-more {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1.5px solid #9bc2e5;
    background: transparent;
    color: #0f4c81;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(.4,0,.2,1);
  }
  .btn-know-more:hover { background: #0f4c81; color: #fff; box-shadow: 0 4px 14px rgba(15,76,129,.28); }

  .btn-invest {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    border: none;
    background: #fff;
    color: #218c47;
    border: 1.5px solid #76c993;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(.4,0,.2,1);
    /* box-shadow: 0 3px 10px rgba(249,115,22,.30); */
  }
 

  /* ── Show More button ── */
  .btn-show-more {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 38px;
    border-radius: 50px;
    border: 2px solid #0f4c81;
    background: transparent;
    color: #0f4c81;
 
    font-size: .95rem; font-weight: 700;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(.4,0,.2,1);
    letter-spacing: .4px;
  }
  .btn-show-more i { transition: transform 0.28s cubic-bezier(.4,0,.2,1); }
  .btn-show-more:hover {
    background: #0f4c81; color: #fff;
    box-shadow: 0 6px 24px rgba(15,76,129,.25);
  }
  .btn-show-more:hover i { transform: translateY(3px); }

  /* ── Fade-in for newly revealed cards ── */
  .card-fade-in {
    animation: cardReveal 0.42s ease both;
  }
/**********************************/

.faq-header {
    margin-bottom: 2rem;
    position: relative;
}

.faq-header .d-flex {
    gap: 1rem;
    align-items: center;
}

.header-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #404081, #4b4b8c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.2);
}

.header-icon i {
    font-size: 1.5rem;
    color: white;
}

.faq-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
}

.header-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #dbeafe, transparent);
    margin-left: 1rem;
}

/* FAQ Cards */
.faq-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-card:hover {
    border-color: #dbeafe;
    box-shadow: 0 12px 24px -8px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

/* Question Section */
.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.question-icon {
    width: 40px;
    height: 40px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-icon i {
    font-size: 1.25rem;
    color: #4b4b8c;
}

.question-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* Answer Section */
.faq-answer {
    padding-left: 3.5rem;
}

.answer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2a2e34;
    margin-bottom: 1.25rem;
}

.highlight {
    color: #746b2a;
    font-weight: 600;
    background: linear-gradient(120deg, #dbeafe 0%, #dbeafe 40%, transparent 80%);
    padding: 0 4px;
}

/* Feature Blocks */
.feature-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.faq-card .feature-item {
    display: flex;
    gap: 1rem;
}
.faq-card .feature-item:hover{
    transform:none;
    border:0px;
}
.faq-card .feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #dbeafe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-card .feature-icon i {
    font-size: 1rem;
    color: #4b4b8c;
}

.faq-card .feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.95rem;
    color: #2a2e34;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.sectiontitlep {
    font-size: 15px;
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 4px;
    font-weight: normal;
    padding-top: 3px;
}
.section-title {
    color: #2c3e50;
    margin-bottom: 29px;
}
.section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    width: 100%;
}
/* Custom Lists */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.custom-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #2a2e34;
}

.custom-list li i {
    font-size: 0.875rem;
    color: #059669;
}

/* Comparison Blocks */
.comparison-block {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #e2e8f0;
}

.comparison-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comparison-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.25rem;
}

.comparison-title i {
    color: #2563eb;
    font-size: 1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.comparison-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.comparison-item:hover {
    border-color: #dbeafe;
    background: white;
}

.comparison-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.comparison-label i {
    font-size: 0.875rem;
}

.comparison-label span {
    font-weight: 600;
    color: #1e293b;
}

.mutual-fund .comparison-label i {
    color: #d97706;
}

.pms .comparison-label i {
    color: #059669;
}

.comparison-item p {
    font-size: 0.9rem;
    color: #2a2e34;
    line-height: 1.6;
    margin: 0;
}

/* Comparison Table */
.comparison-table-wrapper {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table thead {
    background: linear-gradient(135deg, #404081, #4b4b8c);
}

.comparison-table thead th {
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 500;
    text-align: left;
}

.comparison-table thead th:first-child {
    border-top-left-radius: 16px;
}

.comparison-table thead th:last-child {
    border-top-right-radius: 16px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1rem 1.5rem;
    color: #2a2e34;
}

.feature-cell {
    font-weight: 600;
    color: #1e293b !important;
    background: #f8fafc;
}

.badge-mf {
    background: rgba(245, 158, 11, 0.1);
    color: #6a5e0b;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-pms {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Disclaimer Card */
.disclaimer-card {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 1px solid #fed7aa;
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.disclaimer-header i {
    font-size: 1.25rem;
    color: #d97706;
}

.disclaimer-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #92400e;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-title {
        font-size: 1.5rem;
    }
    
    .faq-card {
        padding: 1.25rem;
    }
    
    .faq-answer {
        padding-left: 0;
    }
    
    .question-icon {
        width: 32px;
        height: 32px;
    }
    
    .question-icon i {
        font-size: 1rem;
    }
    
    .question-title {
        font-size: 1.1rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-table td,
    .comparison-table th {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-card {
    animation: fadeInUp 0.4s ease-out forwards;
}

.faq-card:nth-child(2) { animation-delay: 0.1s; }
.faq-card:nth-child(3) { animation-delay: 0.2s; }
.faq-card:nth-child(4) { animation-delay: 0.3s; }


/********************/

  /**************************************************/
        .containerpms .ipo-section {
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 6px;
        }
        .containerpms .ipo-text h5 {
        color: #4a4949;
        font-size: 44px;
        font-weight: bold;
        }
        .containerpms .ipo-text p {
        color: #4b4b8c;
        margin-bottom: 0;
        font-size: 20px;
        }
        .containerpms .btn-custom {
        border: none;
        font-weight: normal;
        padding: 8px 18px;
        border-radius: 8px;
        color: #fff;
        transition: all 0.3s ease;
        }
        .containerpms .btn-download {
        background-color: #a58e43;
        }
        .containerpms .btn-download:hover {
        background-color: #917c3a;
        }
        .containerpms .btn-help {
        background-color: #218c60;
        position: relative;
        }
        .containerpms .btn-help:hover {
        background-color: #1b744f;
        }
        .containerpms .btn-callback {
        background-color: #4b4b8c;
        }
        .containerpms .btn-callback:hover {
        background-color: #0f0e96;
        }
        .containerpms .call-text {
        font-size: 0.9rem;
        color: #333;
        font-weight: 500;
        margin-bottom: 4px;
        text-align: center;
        }
        .containerpms {
        /* box-shadow: 4px 4px 24px 0 rgba(31, 72, 114, .048); */
        margin-top: -20px;
        }
        .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;
        }
        

/**************/




/* Title Section */
.ipo-section {
    min-width: fit-content;
}






/* Desktop Search Wrapper */
.search-wrapper-desktop {
    max-width: 500px;
    min-width: 300px;
}

@media (max-width: 992px) {
    .search-wrapper-desktop {
        display: none;
    }
}

/* Mobile Search Wrapper */
.search-wrapper-mobile {
    display: none;
}

@media (max-width: 992px) {
    .search-wrapper-mobile {
        display: block;
        margin-top: 0.5rem;
    }
}

/* Search Box Styling */
.searchboxmf {
    transition: all 0.3s ease;
    border: 2px solid transparent !important;
    border-radius: 18px !important;
    padding: 3px 16px !important;
}

.searchboxmf:focus-within {
    border-color: #2563eb !important;
    box-shadow: 0 8px 20px -8px rgba(37, 99, 235, 0.2) !important;
}

.searchboxmf input {
    font-size: 0.875rem !important;
    padding: 0.625rem 0;
}

.searchboxmf input:focus {
    outline: none;
    box-shadow: none;
}

.searchboxmf .text1 {
    color: #2563eb;
    transition: all 0.2s ease;
    padding: 0.5rem 1.5rem 0.5rem 0.75rem;
}

.searchboxmf .text1:hover {
    color: #1d4ed8;
    transform: scale(1.1);
}

.searchboxmf .text1 i {
    font-size: 1rem;
}

/* Button Group */
.btn-group-custom {
    /* gap: 0.5rem; */
}

@media (max-width: 992px) {
    .btn-group-custom {
        /* justify-content: center; */
        /* width: 100%; */
        /* margin-top: 0.5rem; */
    }
}

@media (max-width: 576px) {
    .btn-group-custom {
        /* flex-direction: column; */
        align-items: stretch;
    }
    
    .btn-group-custom > * {
        /* width: 100%; */
    }
    
    .btn-group-custom button {
        /* width: 100%; */
    }
    
    .btn-group-custom .btn {
        /* width: 100%; */
        margin: 0 !important;
        padding: 9px 9px;
    }
}



/* Icons */
/*.fa, .fas, .fab, .bi {
    font-size: 0.875rem;
}*/

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.containerpms {
    animation: slideIn 0.4s ease-out;
}

/* Border styling */
.border {
    border: 1px solid #d7d9dd !important;
}

/* Responsive Text Sizes */
@media (max-width: 1200px) {
    .btn-custom {
        padding: 0.5rem 1rem;
        font-size: 0.813rem;
    }
}

@media (max-width: 768px) {
    .title-section h1 {
        font-size: 1.25rem;
    }
    
    .btn-custom {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .contact-info-detail {
        right: auto;
        left: 0;
    }
}

/*****************************************/
  /*modal css start here*/
        .modaldiv .modal-content {
        border: none;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        background: #ffffff;
        }
        .fdtxt
        {    color: #626262;
        /* font-size: 25px; */
        padding-top: 9px;
        }
        .modaldiv .modal-header {
        border: none;
        padding: 11px 15px;
        background: linear-gradient(135deg, #7676db 0%, #252546 100%);
        position: relative;
        overflow: hidden;
        }
        .modaldiv .modal-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
        }
        @keyframes rotate {
        from {
        transform: rotate(0deg);
        }
        to {
        transform: rotate(360deg);
        }
        }
        .modaldiv .modal-header .btn-close {
        filter: brightness(0) invert(1);
        opacity: 0.8;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
        }
        .modaldiv .modal-header .btn-close:hover {
        opacity: 1;
        transform: rotate(90deg);
        }
        .modaldiv .modal-title {
        color: #ffffff;
        font-weight: 600;
        font-size: 19px;
        text-align: center;
        width: 100%;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1;
        }
        .modaldiv .modal-body {
        padding: 2rem;
        }
        .modaldiv .subtitle {
        color: #6c757d;
        font-size: 1.05rem;
        margin-bottom: 5px;
        text-align: center;
        font-weight: 400;
        }
        .modaldiv .investment-badge {
        display: inline-block;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 500;
        margin-bottom: 2rem;
        }
        .modaldiv .form-control {
        border: 1px solid #e7d97b !important;
        border-radius: 16px !important;
        padding: 9px 11px !important;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #ffffff !important;
        border-radius: 10px !important;
        text-shadow: none !important;
        margin-top: 16px !important;
        font-weight: normal !important;
        /* color: #000 !important; */
        }
        .modaldiv .form-select {
        border: 2px solid #e9ecef;
        border-radius: 16px !important;
        padding: 8px 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        border-radius: 10px !important;
        }
        .modaldiv .form-control:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
        background: #ffffff;
        transform: translateY(-2px);
        }
        .modaldiv .input-wrapper {
        position: relative;
        margin-bottom: 2rem;
        }
        .modaldiv .input-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #667eea;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        }
        .modaldiv .form-control:focus~.input-icon {
        transform: translateY(-50%) scale(1.2);
        }
        .modaldiv .btn-invest {
        background: bb9654;
        border: none;
        border-radius: 9px;
        padding: 7px 17px;
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        max-width: fit-content;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        position: relative;
        overflow: hidden;
        background-color: #9b9045;
        margin-top: 7px;
        margin-bottom: 10px;
        }
        .modaldiv .btn-invest::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
        }
        .modaldiv .btn-invest:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
        }
        .modaldiv .btn-invest:hover::before {
        left: 100%;
        }
        .modaldiv .btn-invest:active {
        transform: translateY(-1px);
        }
        .modaldiv .info-text {
        text-align: center;
        color: #9ca3af;
        font-size: 0.875rem;
        margin-top: 1.5rem;
        }
        .modaldiv .info-text i {
        color: #667eea;
        margin-right: 5px;
        }
        /* Floating animation for decorative elements */
        .modaldiv .floating {
        animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
        0%,
        100% {
        transform: translateY(0px);
        }
        50% {
        transform: translateY(-10px);
        }
        }
        /* Modal entrance animation */
        .modaldiv .modal.show .modal-dialog {
        animation: slideUp 0.4s ease-out;
        }
        @keyframes slideUp {
        from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
        }
        to {
        opacity: 1;
        transform: translateY(0) scale(1);
        }
        }
        /* Success animation */
        @keyframes successPulse {
        0%,
        100% {
        transform: scale(1);
        }
        50% {
        transform: scale(1.05);
        }
        }
        .modaldiv .success-feedback {
        animation: successPulse 0.5s ease;
        }
        /* Loading animation */
        .modaldiv .btn-invest.loading {
        pointer-events: none;
        }
        .modaldiv .btn-invest.loading::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        top: 50%;
        left: 50%;
        margin-left: -10px;
        margin-top: -10px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-top-color: white;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        }
        @keyframes spin {
        to {
        transform: rotate(360deg);
        }
        }
        /*modal css end  here*/
        
        /*************n***********************/
        
        .textvalidation {
    color: #e36c6c !important;
    font-size: 14px;
}

/********** thanku modal css******************/

