/* ==========================================================================
   CSS Variables & Theme Configuration
   ========================================================================== */
:root {
    --Source-Sans: "Source Sans 3", sans-serif;
    --Shantell-Sans: 'Shantell Sans', sans-serif;

    --primary: #00C9C8;
    --primary-dark: #00A8A6;
    --primary-light: rgba(0, 201, 200, 0.15);

    --dark-bg: #000000;
    --card-bg: #0E0E0E;

    --text-light: #ffffff;
    --text-muted: #9CA3AF;

    --navy: #043b5c;

    --accent-gold: #00C9C8;
    --accent-silver: #00A8A6;

    --sticky: #fff176;
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

*:focus {
    outline: 0 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--Shantell-Sans), sans-serif;
    background-image: url('../assets/images/pattern.jpg');
    background-repeat: repeat;
    color: #333;
}
a{color:#000;}
/* ==========================================================================
   Typography
   ========================================================================== */
h1 {
    color: #921A1D;
    font-family: var(--Source-Sans);
    font-size: 50px;
    border-top: 4px solid;
    border-bottom: 4px solid;
    position: relative;
    max-width: 600px;
    text-transform: uppercase;
    font-weight: 800;
    padding: 0 50px 0 0;
    letter-spacing: -2px;
}

.main-heading {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 15px;
    background-image: url(../assets/images/heading-bg.svg);
    background-repeat: no-repeat;
    background-position: 0;
    width: fit-content;
    background-size: cover;
    color: black;
    padding: 7px 0;
}

.font-12 {
    font-size: 12px;
}

/* ==========================================================================
   Links & Lists
   ========================================================================== */
a,
a:hover,
a:focus {
    text-decoration: none !important;
    outline: 0 !important;
}

ul,
li {
    list-style: none !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    font-family: var(--Source-Sans), sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    font-size: 17px;
    border-radius: 5px;
}

.btn-primary {
    --bs-btn-color: #003A5D;
    --bs-btn-bg: #00C9C8;
    --bs-btn-border-color: #00C9C8;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #32bcb3;
    --bs-btn-hover-border-color: #32bcb3;
    --bs-btn-active-bg: #32bcb3;
    --bs-btn-active-border-color: #32bcb3;
    --bs-btn-disabled-bg: #f1f1f1;
    --bs-btn-disabled-border-color: #f1f1f1;
}

.btn-request {
    background: #00C9C8;
    color: #000;
    font-weight: 600;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 20px;
}

.btn-request:hover {
    color: #fff;
    background: #00C9C8;
}

.dspim-btn {
    color: #003A5D;
    border: 1px solid #0cc0a0;
    background: #0cc0a0 !important;
    border-radius: 40px !important;
    font-weight: 600;
    margin-top: 20px;
    text-transform: lowercase !important;
}

.invest-now {
    padding: 5px 15px;
    font-size: 18px;
}

.download-file-btn {
    background-color: #5DF3ED;
    color: #000;
    padding: 10px 15px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    width: 135px;
    text-decoration: none;
}

.datepicker{font-family: var(--Source-Sans), sans-serif;}

/* ==========================================================================
   Layout Components
   ========================================================================== */
header{ 
   
    background-color: #000;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.container {
    max-width: 90%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    font-size: 24px;
    overflow: hidden;
}

.hero-section img {
    max-width: 100%;
}

.hero-section .eye-mark {
    width: 175px;
    position: absolute;
    top: -75px;
    right: -75px;
}

.hero-section .lg-hero {
    width: calc(100% - 150px);
}

.sm-hero {
    display: none;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, .040);
}

.card p:last-child {
    margin-bottom: 0;
}

.card h6 {
    background: #D4E8FF;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 20px 20px 0 0;
    text-align: left;
    position: relative;
}

.resource-card .card-body {
    display: flex;
    align-content: space-around;
    flex-direction: column;
    justify-content: center;
}

.resource-card .card-body div {
    margin: 0 0 auto 0;
}

.resource-card .card-body .btn {
    margin: 10px auto 0 auto;
    min-width: 90px;
}

.resource-card .card-title {
    font-weight: 600;
}

.resource-card .icon svg {
    width: 50px;
    height: 50px;
}

.allocation-box {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    height: 100%;
    color: #000000;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.lead-form {
    background-color: #FFE9CA;
    color: #000;
    font-size: 16px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.lead-form .form-group {
    margin: 0 0 15px 0;
}

.lead-form .form-control,
.form-check-input[type=checkbox] {
    border: 1px solid #999;
}

.form-check-label {
    color: #000;
    font-size: 11px;
    line-height: 1.2;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
}

.common-form-group label {
    font-size: 20px;
    color: var(--navy);
    font-weight: 500;
}

.common-form-group .form-control.error,
.common-form-group .form-control.error-text{
    border: 1px solid #eb5757 !important;
}

.common-form-group label.error{
    color: #eb5757 !important;
    font-weight: 500;
    margin-top: 3px !important;
    font-size: 14px;
}



.form-group {
    position: relative;
}

.form-group .icon-label {
    position: absolute;
    top: 33px;
    right: 10px;
    z-index: 3;
    font-size: 20px;
}

.common-form-group-sm2 .form-control-inner .form-control {
    border: 1px solid rgba(4, 59, 92, .1);
    height: 40px;
    min-height: 40px;
    font-style: normal;
    font-weight: 500;
    color: #043b5c;
    padding-left: 15px;
}

.otp-form-control {
    position: relative;
}

.otp-form-control .form-control {
    padding-right: 100px;
    letter-spacing: 6px;
}

.otp-form-control .resent-otp-link {
    position: absolute;
    top: 5px;
    right: 15px;
    border-bottom: 0;
    z-index: 9;
    color: #0cc0a0;
    text-decoration: none;
}

/* ==========================================================================
   Investment Components
   ========================================================================== */
.invest-ranges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.range-item {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    border-left: 5px solid #d9534f;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, .040);
    font-size: 16px;
}

.range-title {
    font-weight: 700;
    color: #003366;
    margin-bottom: 5px;
}

.range-value {
    font-size: 24px;
    font-weight: 800;
    color: #d9534f;
}

.amc-fund-title {
    background-color: #5DF3ED;
    display: inline-block;
    padding: 10px 0;
    border-radius: 20px;
    font-weight: 500;
}

/* ==========================================================================
   Notes & Boxes
   ========================================================================== */
.sticky {
    background: var(--sticky);
    padding: 3px 7px;
    border-radius: 4px;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    transform: rotate(-2deg);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
}

.sticky-note {
    background-color: #fff8dc;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    margin: 20px 0;
}

.sticky-note h2 {
    color: #8b4513;
    font-size: 1.3rem;
    font-weight: bold;
}

.yellow-note {
    background-color: #FEFFC0;
    padding: 40px 5% 50px;
    border-radius: 5px;
    margin: 10px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.yellow-note p,
.yellow-note .main-heading {
    margin: 0;
}

.pink-note {
    background-color: #ffd8ea;
    padding: 5%;
    border-radius: 5px;
    margin: 10px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.blue-note {
    background-color: #dbedff;
    padding: 5%;
    border-radius: 5px;
    margin: 10px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.green-note {
    background-color: #d8ffd8;
    padding: 5%;
    border-radius: 5px;
    margin: 10px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Fund & Info Sections
   ========================================================================== */
.highlight-section {
    margin-top: 80px;
}

.fund-info-box {
    background: #efeee8;
    padding: 4% 5%;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.nfo-card-header {
    background: #D4E8FF;
    padding: 12px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.nfo-card-content {
    padding: 26px 45px 36px;
    font-size: 18px;
}

.nfo-badge {
    top: -73px;
    right: 0;
}

.disclaimer-section {
    background-color: #fff;
    padding: 50px 0;
}

.download-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 40px;
}

/* ==========================================================================
   Lists
   ========================================================================== */
.suitability-list {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    margin: 0;
}

.suitability-list li {
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    position: relative;
    padding-left: 40px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .1);
}

.suitability-list li:before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 15px;
    width: 20px;
    height: 20px;
    background: #5cb85c;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

/* ==========================================================================
   Team Components
   ========================================================================== */
.sticky-left {
    position: absolute;
    top: 30px;
    left: -50px;
    z-index: 2;
}

.team-sticky {
    position: absolute;
    top: 0;
    left: 40px;
}

.teams-list {
    padding-top: 110px;
}

.other-team {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 15px;
}

/* ==========================================================================
   Logos & Images
   ========================================================================== */
img.logo {
    width: 189.17px;
}

.logo1 {
    background-color: #fff;
    border: 1px solid #00C7B2;
    border-radius: 10px;
    padding: 5px 20px;
    height: auto;
    text-align: center;
}

.logo1 img {
    transition: transform 1s;
    width: auto;
    max-width: 100%;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.items-center {
    align-items: center;
}

.d-first {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px #000000 dashed;
}

.border-full-1 {
    border: solid 1px #000000 !important;
}

.border-radius {
    border-radius: 15px;
}

.border-bottom {
    border-bottom: solid 1px #000000 !important;
}

.border-right {
    border-right: solid 1px #000000 !important;
}



.mob-gap-4 {
    gap: 10px;
}

.mob-block {
    display: block !important;
    text-align: center;
}

.mob-column-reverse {
    flex-direction: column-reverse;
}

.mob-mt-20 {
    margin-top: 20px;
}

.text-center-mob {
    text-align: center;
    padding-top: 70px;
}

/* ==========================================================================
   Modals
   ========================================================================== */
.btn-close{font-size:16px;}
.modal {
    font-family: var(--Source-Sans);
    font-size: 20px;
}

.modal .lead-form {
    padding: 40px 10%;
}

.modal .btn {
    font-size: 20px;
    padding: 3px 25px;
}

.modal-heading {
    margin: 0 0 20px 0;
    font-weight: 700;
    color: var(--navy);
}

.pan-card-modal-body .p14 {
    font-size: 18px;
    opacity: .7;
    line-height: 1.1;
}

.modal strong {
    font-weight: 600;
}

.lead-form .form-control.error-text{
    border: 1px solid #eb5757 !important;
}
.lead-form label.error {
    color: #eb5757 !important;
    font-family: var(--Source-Sans);
    font-weight: 500;
    margin-top: 0px !important;
    font-size: 13px;

}

.lead-form .error:empty {
    display: none;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-accordion {
    max-width: 100%;
    margin: auto;
}

.accordion-button {
    font-size: 18px;
    font-weight: 500;
}

.accordion-body {
    color: #444;
    line-height: 1.6;
}

.accordion-flush .accordion-item {
    border-bottom: 1px solid #ddd;
}

/* ==========================================================================
   Thank You Section
   ========================================================================== */
.thank-you-sec {
    padding: 1rem 0px 3rem 0px;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.thank-u-box {
    background-color: #FFE9CA;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    
    margin: 0px auto;
    border-radius: 10px;
    padding: 40px 40px;
    text-align: center;
    font-size: 20px;
}

.thank-u-box hr {
    margin: 2rem 0;
}

.thank-you {
    font-size: 75px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
    border: 5px solid;
    width: fit-content;
}

/* ==========================================================================
   Miscellaneous
   ========================================================================== */
.qr-box {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.risk-meter {
    max-width: 300px;
    margin: 20px auto;
}

 

.invest-brokers .container {
    overflow: hidden;
}

.download-fixed-btns {
    bottom: 0 !important;
    transform: none !important;
    top: unset !important;
    width: 100% !important;
    gap: 0 !important;
}

.asset-card-box::before {
    content: '';
    border: 1px solid #000000;
    position: absolute;
    left: 15px;
    height: calc(100% - 59.8px);
    top: 0;
    bottom: 0;
    margin-top: 35px;
}

.nfo-card-header::before {
    content: '';
    width: 9px;
    height: 9px;
    border: 1px solid #5DF3ED;
    position: absolute;
    background: #000;
    border-radius: 50%;
    left: -37px;
    top: 33px;
}

.mob-block a {
    display: inline-block;
    margin-top: 10px;
}
/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1300px) {
h1{font-size:45px; max-width: 555px;}
}

/* Tablet and below (max-width: 1023px) */
@media (max-width: 1023px) {
    .container {
        max-width: 90%;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    /* Typography */
    .range-value {
        font-size: 18px;
    }

    .accordion-button {
        font-size: 16px;
    }

    .card h6,
    .resource-card .card-title {
        font-size: 16px;
    }

    .sticky {
        font-size: 16px;
        max-width:82%;
    }

    h1 {
        font-size: 36px;
        max-width: 460px;
        padding-right:100px;
    }

    .main-heading {
        font-size: 24px;
    }

    .hero-section {
        font-size: 18px;
    }

    .accordion-body {
        line-height: 1.3;
    }

    .thank-you {
        font-size: 50px;
        margin: 0 auto 20px auto;
        
        width: fit-content;
    }

    /* Buttons */
   

    .download-file-btn {
        width: 100%;
        border-radius: 0;
        text-align: center;
    }

    /* Images & Logos */
    img.logo {
        width: 150px;
    }

    .eye-mark {
        margin: 0 !important;
        padding: 0 !important;
        width: 140px;
    }

    .hero-section .eye-mark {
        margin-left: 0;
        top: -65px;
        right: 0px;
        width: 105px;
    }

    .nfo-badge {
        top: -40px !important;
        right: 0;
    }

    .nfo-badge img {
        width: 280px;
    }

    .team-sticky {
        width: 250px;
    }

    .sticky-left {
        top: 10px;
        left: 20px;
        width: 100px;
    }

    .thank-u-img {
        width: 100%;
    }

    .nfo-unit img {
        max-width: 45%;
    }

    /* Layout Components */
    .suitability-list {
        grid-template-columns: auto;
    }

    .other-team {
        display: inline-block;
    }

    .other-team li {
        display: inline-block;
    }

    .highlight-section {
        padding: 20px;
        border-radius: 20px;
    }

    .fund-info-box {
        padding: 20px;
        border-radius: 5px;
    }

    .pr-suite {
        border-right: none !important;
        border-bottom: solid 1px #000000;
    }

    .mob-gap-4 {
        gap: 10px;
    }

    .download-fixed-btns {
        bottom: 0 !important;
        transform: none !important;
        top: unset !important;
        width: 100% !important;
        gap: 0 !important;
    }

    .asset-card-box::before {
        content: '';
        border: 1px solid #000000;
        position: absolute;
        left: 15px;
        height: calc(100% - 59.8px);
        top: 0;
        bottom: 0;
        margin-top: 35px;
    }

    .nfo-card-header::before {
        content: '';
        width: 9px;
        height: 9px;
        border: 1px solid #5DF3ED;
        position: absolute;
        background: #000;
        border-radius: 50%;
        left: -37px;
        top: 33px;
    }

    .mob-block {
        display: block !important;
        text-align: center;
    }

    .mob-block a {
        display: inline-block;
        margin-top: 10px;
    }

    .d-first {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .mob-column-reverse {
        flex-direction: column-reverse;
    }

    .mob-mt-20 {
        margin-top: 20px;
    }

    .text-center-mob {
        text-align: center;
        padding-top: 70px;
    }

    .text-center-mob .dsp-multi-asset-heading {
        font-size: 34px;
        border-top: 3px solid;
        border-bottom: 3px solid;
        width: auto;
    }

    /* Thank You Section */
    
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .main-heading {
        font-size: 20px;
    }

    .btn {
        padding: 5px 10px;
        font-size: 17px;
        border-radius: 5px;
    }

    h1 {
        font-size: 30px;
        max-width: 100%;
        padding-right: 105px;
    }
     .thank-you {font-size:40px;}
     .hero-section .btn{margin-bottom: 5px !important;}
}

/* Extra Small Mobile (max-width: 424px) */
@media (max-width: 424px) {
    h1 {
        font-size: 24px;
        max-width: 100%;
        
    }
}

/* Ultra Small Mobile (max-width: 359px) */
@media (max-width: 359px) {
    .btn {
        padding: 5px;
        font-size: 16px;
        border-radius: 5px;
    }
   

    .lead-form {
        font-size: 14px;
    }

    h1 {
        font-size: 20px;
    }

    .hero-section {
        font-size: 16px;
    }
}

/* Utility classes for inline style replacement */
.mb-5px { margin: 0 0 5px 0; }
.sup-text { line-height: 0; font-size: 70%; }
.loader-img { display: none; width: 36px; position: relative; top: -12px; }
.disclaimer-text { font-size: 0.75rem; line-height: 1.6; }
.disclaimer-text-sm { font-size: 0.75rem; }
.disclaimer-text-xs { font-size: 0.7rem; margin-top: 20px; }

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Utility classes for inline style replacement */
.mb-5px { margin-bottom: 5px; }
.sup-text { line-height: 0; font-size: 70%; }
.loader-img { display: none; width: 36px; position: relative; top: -12px; }
.disclaimer-text { font-size: 0.75rem; line-height: 1.6; }
.disclaimer-text-sm { font-size: 0.75rem; }
.disclaimer-text-xs { font-size: 0.7rem; margin-top: 20px; }