/* Local Fonts */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Urbanist-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Urbanist-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Urbanist-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Epilogue';
    src: url('../fonts/Epilogue-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Epilogue';
    src: url('../fonts/Epilogue-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

:root {
    --tp-black: #000000;
    --tp-white: #ffffff;
    --tp-gray: #f8f9fa;
    --tp-text-secondary: #6C7278;
}

body {
    background-color: #ffffff;
    font-family: 'Urbanist', sans-serif;
    color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Specificity boost to override Bootstrap */
body .main-heading, 
body .main-heading h1 {
    font-family: 'Urbanist', sans-serif !important;
    font-size: 44px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    font-weight: 600 !important;
    margin-bottom: 2.5rem !important;
    color: #000 !important;
}

body .sub-text,
body .sub-text p {
    font-family: 'Urbanist', sans-serif !important;
    font-size: 26px !important;
    line-height: 1.5 !important;
    color: #666666 !important;
    font-weight: 400 !important;
    margin-bottom: 1.5rem !important;
}

body .sub-text ul,
body .feature-list {
    margin-top: 2rem !important;
    list-style: none !important;
    padding-left: 0 !important;
}

body .sub-text ul li,
body .feature-list li {
    margin-bottom: 1rem !important;
    font-size: 22px !important;
    color: #666666 !important;
    display: flex !important;
    align-items: flex-start !important;
    line-height: 1.4 !important;
}

body .sub-text ul li::before,
body .dot {
    content: "·";
    font-size: 1.2rem !important;
    line-height: 1 !important;
    margin-right: 1.2rem !important;
    color: #888 !important;
    margin-top: -2px !important;
    display: inline-block;
}

body .btn-black {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 1rem 2.5rem !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: capitalize !important;
    transition: all 0.2s ease !important;
}

body .btn-black:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
    transform: none !important;
}

body .home-hero-img {
    width: 719px !important;
    height: 499px !important;
    object-fit: cover !important;
    max-width: 100% !important; /* Ensure it stays responsive on smaller screens */
    border-radius: 24px !important;
}

.image-wrapper {
    display: flex;
    justify-content: flex-end;
}

/* Modal Styling */
.step-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 30px;
    line-height: 1.2;
    margin-top: 1rem;
    text-align: left!important;
    font-weight: 600;
}

.step-subtitle {
    color: #6C7278 !important;
    font-size: 1.1rem;
    font-family: 'Epilogue', sans-serif;
    text-align: left;
}

/* Question Styles */
.modal-body .step-content p:not(.step-subtitle) {
    font-size: 18px !important;
    color: #000000 !important;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.custom-input {
    background-color: #00000005 !important;
    border: 1px solid #0000001A;
    border-radius: 4px;
    padding: 16px;
    font-size: 16px;
    color: #6C7278;
    line-height: 20px;
    font-family: 'Urbanist', sans-serif;
}

.custom-input::placeholder {
    color: #6C7278;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #000000;
    background-color: #0000000A !important;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.nav-buttons-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.nav-buttons-container .btn {
    flex: 1;
    border-radius: 4px;
}

.btn-outline-custom {
    background-color: #fff;
    border: 1px solid #0000000D;
    color: #000;
}

.btn-outline-custom:hover {
    background-color: #f8f9fa;
}

/* Premium Radio Button Styling Overrides */
.modal-body .form-check {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.modal-body .form-check-input[type="radio"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-color: #fff !important;
    margin: 0 !important;
    width: 24px !important;
    height: 24px !important;
    border: 2px solid #6C7278 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: inline-block !important;
    vertical-align: middle !important;
    float: none !important;
    background-image: none !important;
}

.modal-body .form-check-input[type="radio"]:checked {
    background-color: #000 !important;
    border-color: #000 !important;
    position: relative !important;
}

.modal-body .form-check-input[type="radio"]:checked::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 10px !important;
    height: 10px !important;
    background-color: #fff !important;
    border-radius: 50% !important;
}

.modal-body .form-check-label {
    cursor: pointer !important;
    font-size: 1.1rem !important;
    vertical-align: middle !important;
    margin-left: 12px !important;
    padding-left: 0 !important;
}

.d-flex.gap-4 {
    gap: 2rem !important;
}

.btn-black.w-100 {
    font-size: 18px;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .main-heading {
        font-size: 2rem;
        text-align: center;
    }
    .sub-text {
        text-align: center;
    }
    .pe-lg-5 {
        text-align: center;
    }
    .feature-list {
        display: inline-block;
        text-align: left;
    }
}
