﻿.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: 62px;height: 51px;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 {
    width: 100%;
    font-size: 29px;
    /* font-weight: 700; */
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1E2A4A, #2f4172);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 33px;
    position: relative;
    display: inline-block;
    margin-top: 15px;
}
/* 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 !important;
        }
        .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;
        background: #fff;
        }
        .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******************/


/* ============================================================
   aif-enhance.css  — No CSS variables / :root
   All values are hardcoded inline. Drop after Bootstrap.
   ============================================================ */



/* ── OUTER WRAPPER ── */
#Div1 {
  /* background: #ffffff; */
  /* border-radius: 2rem; */
  padding: 3px 8px  !important;
  /* box-shadow: 0 20px 56px rgba(108, 61, 232, 0.14); */
  /* border: 1px solid rgba(108, 61, 232, 0.14); */
  position: relative;
  overflow: hidden;
  animation: wrapIn 0.6s cubic-bezier(.4,0,.2,1) both;
  margin-top: 10px;
}
#Div1::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 61, 232, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
#Div1::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 162, 61, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
@keyframes wrapIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TAB NAV ── */
#Ul1 {
  background: #ffffff !important;
  /* border: 1.5px solid rgba(108, 61, 232, 0.14) !important; */
  border-radius: 0rem !important;
  padding: 5px !important;
  gap: 4px !important;
  /* box-shadow: 0 2px 8px rgba(108, 61, 232, 0.08); */
  animation: fadeD 0.5s 0.1s cubic-bezier(.4,0,.2,1) both;
}
@keyframes fadeD {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TAB BUTTONS ── */
.tabbutton {
  border-radius: 0rem !important;
  border: 1.5px solid transparent !important;
  background: transparent !important;
  color: #4b4b8c !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 3px 22px  !important;
  transition:
    background 0.3s cubic-bezier(.4,0,.2,1),
    color 0.3s cubic-bezier(.4,0,.2,1),
    border-color 0.3s cubic-bezier(.4,0,.2,1),
    box-shadow 0.3s cubic-bezier(.4,0,.2,1),
    transform 0.2s cubic-bezier(.4,0,.2,1) !important;
}
.tabbutton:hover {
  color: #6c3de8 !important;
 /* border-color: rgba(108, 61, 232, 0.32) !important;
  background: rgba(108, 61, 232, 0.06) !important;
  transform: translateY(-1px);*/
}
.tabbutton.active {
  color: #a48d44 !important;
  padding: 10px 30px !important;
  border-bottom: 2px solid #9b9045 !important;
  border-radius: 0px !important;
}
.tabbutton.active h2{color:#9b9045 !important;}
.tabbutton h2.tab-text {
  font-family: 'Sora', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  color: #4b4b8c;
}

/* ── TAB PANE ANIMATION ── */
.tab-pane {
  animation: paneIn 0.42s cubic-bezier(.4,0,.2,1) both;
}
@keyframes paneIn {
  from { opacity: 0; transform: translateY(16px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── CATEGORY HEADING h4 ── */
.tab-pane .col-md-6:first-child h4.fw-bold {
  font-family: 'Sora', sans-serif !important;
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  color: #1a0f3c !important;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem !important;
  animation: slideR 0.5s 0.15s cubic-bezier(.4,0,.2,1) both;
}
.tab-pane .col-md-6:first-child h4.fw-bold::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg, #6c3de8, #e8a23d);
  border-radius: 99px;
}
@keyframes slideR {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── DESCRIPTION PARAGRAPH ── */
.tab-pane .col-md-6:first-child p.mb-3 {
  font-size: 0.875rem !important;
  line-height: 1.85 !important;
  color: #5a4f7a !important;
  font-weight: 400;
  animation: slideR 0.5s 0.22s cubic-bezier(.4,0,.2,1) both;
}

/* ── FUND LIST CHIPS ── */
ul.newlist {
  list-style: none !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
ul.newlist li {
  /* display: flex !important; */
  /* align-items: center; */
  /* gap: 10px; */
  /* background: #f7f4ff !important; */
  /* border: 1.5px solid rgba(108, 61, 232, 0.14) !important; */
  /* border-radius: 50rem !important; */
  /* padding: 7px 16px !important; */
  /* font-size: 0.82rem !important; */
  /* font-weight: 600 !important; */
  /* color: #1a0f3c !important; */
  /* font-family: 'Sora', sans-serif !important; */
  /* cursor: default; */
  /* transition:
    background 0.3s cubic-bezier(.4,0,.2,1),
    border-color 0.3s cubic-bezier(.4,0,.2,1),
    color 0.3s cubic-bezier(.4,0,.2,1),
    transform 0.22s cubic-bezier(.4,0,.2,1),
    box-shadow 0.22s cubic-bezier(.4,0,.2,1) !important; */
  /* animation: chipIn 0.4s cubic-bezier(.4,0,.2,1) both; */
}
ul.newlist li:nth-child(1) { animation-delay: 0.28s; }
ul.newlist li:nth-child(2) { animation-delay: 0.34s; }
ul.newlist li:nth-child(3) { animation-delay: 0.40s; }
ul.newlist li:nth-child(4) { animation-delay: 0.46s; }
@keyframes chipIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
ul.newlist li::before {
  content: '';
  width: 0;
  height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  /* background: linear-gradient(135deg, #6c3de8, #9b6bff); */
  box-shadow: 0 2px 6px rgba(108, 61, 232, 0.35);
  display: none;
}
ul.newlist li:hover {
  background: #eee7ff !important;
  border-color: #9b6bff !important;
  color: #6c3de8 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(108, 61, 232, 0.14) !important;
}

/* ── FORM CARD ── */
.tab-pane .col-md-6:last-child .bg-white.rounded-4 {
  /* background: #ffffff !important; */
  border: 0px;
  border-radius: 1.5rem !important;
  padding: 2rem 1.75rem !important;
  /* box-shadow: 0 8px 32px rgba(108, 61, 232, 0.12) !important; */
  /* position: relative; */
  /* overflow: hidden; */
  transition:
    box-shadow 0.3s cubic-bezier(.4,0,.2,1),
    transform 0.3s cubic-bezier(.4,0,.2,1);
  animation: cardIn 0.55s 0.1s cubic-bezier(.4,0,.2,1) both;
}
.tab-pane .col-md-6:last-child .bg-white.rounded-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, #6c3de8, #9b6bff, #e8a23d); */
  border-radius: 1.5rem 1.5rem 0 0;
}
.tab-pane .col-md-6:last-child .bg-white.rounded-4::after {
  /* content: ''; */
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  /* background: radial-gradient(circle, rgba(108, 61, 232, 0.05) 0%, transparent 70%); */
  pointer-events: none;
}
.tab-pane .col-md-6:last-child .bg-white.rounded-4:hover {
  box-shadow: 0 20px 56px rgba(108, 61, 232, 0.14) !important;
  transform: translateY(-3px);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── CARD HEADING ── */
.tab-pane .col-md-6:last-child h3.text-center.fw-bold {
  font-family: 'Sora', sans-serif !important;
  font-size: 20px !important;
  CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
  color: #1a0f3c !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.tab-pane .col-md-6:last-child h3.text-center.fw-bold::before {
  /* content: ''; */
  display: inline-block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #6c3de8, #9b6bff) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") center / 15px no-repeat;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(108, 61, 232, 0.3);
}

/* ── FORM INPUTS ── */
.tab-pane .form-control {
  background-color: #ffffff !important;
  border: 1.5px solid #9b8ec4 !important;
  /* border-radius: 0.875rem !important; */
  padding: 0.72rem 1rem 0.72rem 2.55rem !important;
  /* color: #1a0f3c !important; */
  /* font-family: 'DM Sans', sans-serif !important; */
  /* font-size: 0.875rem !important; */
  /* font-weight: 400 !important; */
  /* transition:
    border-color 0.3s cubic-bezier(.4,0,.2,1),
    background 0.3s cubic-bezier(.4,0,.2,1),
    box-shadow 0.3s cubic-bezier(.4,0,.2,1) !important; */
  /* box-shadow: none !important; */
}
.tab-pane .form-control::placeholder {
  color: #b0a8cc !important;
  font-size: 0.85rem !important;
}
.tab-pane .form-control:hover {
  border-color: rgba(108, 61, 232, 0.3) !important;
}
.tab-pane .form-control:focus {
  /* border-color: #6c3de8 !important; */
  /* background: #ffffff !important; */
  box-shadow: 0 0 0 4px rgba(108, 61, 232, 0.1) !important;
  outline: none !important;
}
.tab-pane textarea.form-control {
  resize: none !important;
  min-height: 84px;
}

/* ── INPUT ICONS via background-image ── */
.interest-card  [id$="_name"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239b8ec4'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px 50% !important;
  background-size: 16px !important;
}
.interest-card [id$="_name"]:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236c3de8'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E") !important;
}
.interest-card [id$="_mobile"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239b8ec4'%3E%3Cpath d='M17 2H7C5.9 2 5 2.9 5 4v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 18c-.83 0-1.5-.67-1.5-1.5S11.17 17 12 17s1.5.67 1.5 1.5S12.83 20 12 20zm5-4H7V4h10v12z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px 50% !important;
  background-size: 16px !important;
}
.interest-card [id$="_mobile"]:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236c3de8'%3E%3Cpath d='M17 2H7C5.9 2 5 2.9 5 4v16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 18c-.83 0-1.5-.67-1.5-1.5S11.17 17 12 17s1.5.67 1.5 1.5S12.83 20 12 20zm5-4H7V4h10v12z'/%3E%3C/svg%3E") !important;
}
[id$="_email"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239b8ec4'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px 50% !important;
  background-size: 16px !important;
}
.interest-card [id$="_email"]:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236c3de8'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") !important;
}
.interest-card [id$="_message"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239b8ec4'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px 14px !important;
  background-size: 16px !important;
}
.interest-card [id$="_message"]:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236c3de8'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E") !important;
}

/* ── VALIDATOR MESSAGES ── */
.position-absolute.top-0.start-0 {
  color: #e05252 !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
}
.text-center.position-relative.py-2 {
  padding-top: 3px !important;
  padding-bottom: 5px !important;
  min-height: 20px;
}

/* ── SUBMIT BUTTON ── */
input.bg-theme,
button.bg-theme,
[id^="Button1"].bg-theme,
[id^="Button2"].bg-theme {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6c3de8 0%, #9b6bff 100%) !important;
  color: #ffffff !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  padding: 0.82rem 2.8rem !important;
  border-radius: 50rem !important;
  border: none !important;
  box-shadow: 0 8px 28px rgba(108, 61, 232, 0.38) !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s cubic-bezier(.4,0,.2,1),
    box-shadow 0.22s cubic-bezier(.4,0,.2,1) !important;
}
input.bg-theme::after,
button.bg-theme::after,
[id^="Button1"].bg-theme::after,
[id^="Button2"].bg-theme::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s cubic-bezier(.4,0,.2,1);
}
input.bg-theme:hover,
button.bg-theme:hover,
[id^="Button1"].bg-theme:hover,
[id^="Button2"].bg-theme:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 36px rgba(108, 61, 232, 0.5) !important;
}
input.bg-theme:hover::after,
button.bg-theme:hover::after,
[id^="Button1"].bg-theme:hover::after,
[id^="Button2"].bg-theme:hover::after {
  left: 120%;
}
input.bg-theme:active,
button.bg-theme:active,
[id^="Button1"].bg-theme:active,
[id^="Button2"].bg-theme:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 14px rgba(108, 61, 232, 0.3) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  #Div1 {
    padding: 1.5rem 1rem !important;
    border-radius: 1.5rem;
  }
  .tab-pane .col-md-6:first-child h4.fw-bold {
    font-size: 1.4rem !important;
  }
  .tabbutton {
    font-size: 0.72rem !important;
    padding: 0.45rem 0.6rem !important;
  }
}
@media (max-width: 575px) {
  ul.newlist {
    flex-direction: column;
  }
  ul.newlist li {
    width: 100%;
  }
}


.product_icon_mobile
{
  display:none;
}

.aif-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ede9fe;
    color: #9b9045;
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50rem;
    padding: 12px 12px;
    margin-bottom: 0.9rem;
}
.aif-title {
    font-family: 'Sora', sans-serif;
    /* font-weight: 800; */
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    color: #4b4b8c;
    margin-bottom: 0.75rem;
}
.newlist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: #4b4b8c !important;
    background: #fff;
    border: 1.5px solid #7c3aed1f;
    border-radius: var(--radius-lg);
    padding: 0.6rem 1rem;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    cursor: default;
}

.interest-card
{
    background: #f8f8f8 !important;
    border-radius: 10px;
}
/*********************************/


        /* main container – softer, spacious, modern */
        .faq-container {
            /* max-width: 1000px; */
            width: 100%;
            margin: 0 auto;
        }

        /* heading with elegant accent */
        .section-heading {
            font-size: 25px;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #1E2A4A, #2f4172);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
            margin-top: 15px;
        }

        .heading-underline {
            height: 4px;
            width: 80px;
            background: linear-gradient(90deg, #3a5f8b, #7b9fd0);
            border-radius: 4px;
            margin-top: 8px;
            margin-bottom: 24px;
        }

        /* card redesign — no more heavy shadows, soft layered look */
        .faq-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.7);
            border-radius: 8px;
            padding: 1.8rem 2rem;
            margin-bottom: 1.2rem;
            transition: all 0.25s ease;
            box-shadow: 0 15px 30px -12px rgba(0, 20, 40, 0.15), 0 1px 3px rgba(0,0,0,0.02);
        }

        .faq-card:hover {
            background: #ffffff;
            border-color: #dae6f5;
            box-shadow: 0 25px 40px -16px rgba(18, 52, 93, 0.2);
            transform: scale(1.01) translateY(-2px);
        }

        /* question row with icon + number */
        .question-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .q-icon {
            background: #e8f0fe;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e3a6b;
            font-size: 1.1rem;
            font-weight: 600;
            flex-shrink: 0;
            transition: background 0.2s;
        }

        .faq-card:hover .q-icon {
            background: #d2e2fc;
        }

        .question-text {
            font-size: 1.3rem;
            /* font-weight: 600; */
            color: #0a1c3a;
            margin: 0.2rem 0 0.8rem 0;
            line-height: 1.4;
            letter-spacing: -0.01em;
        }

        /* answer styling — clean, readable, with subtle spacing */
        .answer-text {
            font-size: 1.05rem;
            color: #2c3e4f;
            margin-left: calc(40px + 1rem); /* aligns under question text (icon width + gap) */
            margin-bottom: 0.25rem;
            font-weight: 400;
            line-height: 1.6;
            /* background: rgba(255, 255, 255, 0.5); */
            /* padding: 0.75rem 1.25rem; */
            border-radius: 20px;
            /* border-left: 3px solid #9bb9e0; */
        }

        /* optional extra polish: small tag/keyword (for UX) */
        .topic-tag {
            display: inline-block;
            background: #ddeeff;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.02rem;
            color: #25477a;
            padding: 0.2rem 1rem;
            margin-left: 1rem;
            vertical-align: middle;
            text-transform: uppercase;
            display: none;
        }

        /* disclaimer modernised — softer, readable */
        .disclaimer-modern {
            background: rgba(10, 30, 60, 0.03);
            border-radius: 28px;
            padding: 2rem 2rem 1.8rem;
            margin-top: 2.5rem;
            border: 1px solid rgba(255,255,255,0.8);
            backdrop-filter: blur(2px);
            font-size: 0.95rem;
            color: #2a405c;
        }

        .disclaimer-modern strong {
            font-weight: 700;
            color: #1c3d6b;
            display: inline-block;
            margin-right: 0.5rem;
        }

        .disclaimer-modern i {
            color: #547fb3;
            margin-right: 0.3rem;
        }

        /* spacing adjustments */
        .pb-6 {
            padding-bottom: 3.5rem;
        }

        /* remove default bootstrap shadow/background */
        .bg-white {
            background: transparent !important;
        }

        .shadow-sm {
            box-shadow: none !important;
        }

        /* better mobile */
        @media (max-width: 576px) {
            .section-heading {
                font-size: 1.9rem;
            }
            .faq-card {
                padding: 1.5rem;
            }
            .question-text {
                font-size: 1.15rem;
            }
            .answer-text {
                margin-left: 0;
                padding: 0.8rem 0 0 0;
                border-left: 0;
                background: transparent;
            }
            .q-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .topic-tag {
                display: none;
            }
        }

        /* hover micro interaction for answers */
        .faq-card:hover .answer-text {
            background: rgba(240, 247, 255, 0.7);
            border-left-color: #3d70b0;
        }
          /* ── 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); }
  
  