/**/
.hero-block {
    width: 100%;
    height: auto;
    padding: 5rem 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #2459bf;
    background-image: linear-gradient(45deg, #2459bf, #5715a4);
}

/* ===== HERO SECTION ===== */
.hero-block {
    background: linear-gradient(135deg, #2459bf, #5715a4);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Add soft overlay effect */
.hero-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Content container */
.hero-block .container {
    position: relative;
    z-index: 2;
}

/* Title styling */
.hero-block .title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #fff;
}

/* Subtitle styling */
.hero-block .subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* List styling */
.hero-block ul {
    padding-left: 20px;
    margin-bottom: 25px;
        list-style: none;
}
.hero-block ul li {
    font-size: 1rem;
    margin-bottom: 8px;
    position: relative;
}
.hero-block ul li::before {
    content: "✔";
    position: absolute;
    left: -20px;
    color: #00ffb3;
}

/* CTA Button */
.hero-block .btn-light {
        color: #fff;
    background-color: #0000;
        background-image: linear-gradient(to right, #015fc9 0, #00a2ce 100%);
    border-radius: 30px;
    font-weight: 600;
    padding: 12px 25px;
    transition: all 0.3s ease;
}
.hero-block .btn-light:hover {
    background-color: #00d999;
    transform: translateY(-2px);
}

/* ===== FORM ===== */
.form-primary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid #fff3;
}
.form-primary h2 {
        font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
}

/* Inputs */
.form-primary .form-control {
    border-radius: 8px;
    border: none;
    padding: 12px;
    font-size: 1rem;
}
.form-primary .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 255, 179, 0.5);
}

/* Submit button */
.form-primary button {
    background-color: #00ffb3;
    color: #111;
    border-radius: 30px;
    font-weight: bold;
    padding: 12px 0;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}
.form-primary button:hover {
    background-color: #00d999;
    transform: scale(1.03);
}


/* Form Secondary*/
/* -------------------------
   Sticky Sidebar Form Styles
-------------------------- */

/* Make form sticky for large screens */
@media (min-width: 992px) {
    .form-secondary {
                position: sticky;
        top: 200px;
    }
}

/* General Form Styling */
.form-secondary {
    background: linear-gradient(135deg, #2459bf, #5715a4); /* Brand gradient */
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* Heading */
.form-secondary h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
}

/* Input fields */
.form-secondary .form-control {
        background-color: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 1rem;
    color: #fff;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-secondary .form-control:focus {
    background-color: rgba(255, 255, 255, 0.25);
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

/* Placeholder text */
.form-secondary .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Submit Button */
.form-secondary .btn-outline {
        background: #fff;
    color: #2459bf;
    font-weight: 600;
    border-radius: 2rem;
    border: none;
    padding: 0.75rem 1.25rem;
    width: 100%;
    transition: all 0.3s ease;
}

.form-secondary .btn-outline:hover {
    background: #5715a4;
    color: #fff;
}

/* Spacing for smaller devices */
@media (max-width: 991px) {
    .form-secondary {
        position: static;
        margin-top: 2rem;
    }
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-block {
        text-align: center;
        padding: 40px 0;
    }
    .hero-block .title {
        font-size: 2rem;
    }
}

/* Page Navigator */
.page-navigator-block {
    width: 100%;
    height: auto;
    padding: 1rem 0;
    margin: 0;
    display: flex
;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 100px;
    z-index: 9;
    background-color: #efefef;
    border-bottom: 1px solid #0001;
    box-shadow: 0px 10px 10px -10px #0005;
}

.page-navigator-block .nav-pills {
    margin: 0;
}

.page-navigator-block .nav-pills .nav-link {
    border-radius: 3rem;
    color: #5715a4;
    background-color: #0000;
}

.page-navigator-block .nav-pills .nav-link.active {
    color: #fff;
    background-color: #0000;
    background-image: linear-gradient(45deg, #2459bf, #5715a4);
}

/* Page Content */
.page-content {
    background: linear-gradient(135deg, #2459bf33, #5715a433);
}

.page-content .tab-content {
        color: #333;
    background-color: #efefef;
    border-radius: 1rem !important;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid #fff3;
    border-radius: 1rem;
}

/* Content - Heading & Subheading */
.page-content h2.heading {
    width: auto;
    height: auto;
    padding: 0 0 0 1rem;
    margin: 0 0 1rem 0;
    position: relative;
    color: #5715a4;
    font-size: 2.25rem;
    font-weight: 600;
}

.page-content h2.heading::before {
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 1rem;
    background-color: #0000;
    background-image: linear-gradient(45deg, #2459bf, #5715a4);
}

.page-content h2.subheading {
    width: auto;
    height: auto;
    padding: 0 0 0 1rem;
    margin: 0 0 1rem 0;
    position: relative;
    color: #5715a4;
    font-size: 1.75rem;
    font-weight: 600;
}

.page-content h2.subheading::before {
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 1rem;
    background-color: #0000;
    background-image: linear-gradient(45deg, #2459bf, #5715a4);
}


.page-content p {
    color: #333;
    margin-bottom: 1rem;
}

/* Table UI */
table.table-primary {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
    border: none !important;
    border-radius: 1rem;
    overflow: hidden;
}

table.table-primary > thead {
    background-color: #2459bf;
}

table.table-primary > thead > tr {
    border-top: none !important;
    border-bottom: none !important;
}

table.table-primary > tbody > tr {
    border-top: none !important;
    border-bottom: none !important;
}

table.table-primary > tbody > tr:nth-child(even) {
    background-color: #2459bf11 !important;
}

table.table-primary > tbody > tr:nth-child(odd) {
    background-color: #5715a411;
}

table.table-primary > tbody > tr > th,
table.table-primary > tbody > tr > td {
    padding: 1rem;
    border: none !important;
}

table.table-primary > thead > tr > th {
    padding: 1rem;
    margin: 0;
    color: #fff;
    white-space: nowrap;
}

table.table-primary > tbody > tr > th {
    white-space: nowrap;
}

table.table-primary > tbody > tr > td:last-child {
    border-right: none !important;
}

/**/
.accordion-primary .accordion-item {
    margin-top: .5rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.accordion-primary .accordion-item .accordion-button {
    box-shadow: none;
}

.accordion-primary .accordion-item .accordion-button[aria-expanded="true"] {
    color: #2459bf !important;
    background-color: #5715a411;
}


/* Minimal Stepper CSS */
		/* ===== Stepper Form Styling ===== */

/* Hide inactive steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}
.form-step.active {
    display: block;
}

/* Step Indicator */
.step-indicator {
    counter-reset: step;
    padding: 0;
    margin: 0;
}
.step-indicator .step {
    position: relative;
    text-align: center;
    flex: 1;
    font-weight: 500;
    font-size: 14px;
    color: #ccc;
}
.step-indicator .step.active {
    color: #fff;
    font-weight: 600;
}
.step-indicator .step.completed {
    color: #4ade80; /* green */
}

/* Step indicator circles & line */
.step-indicator .step::before {
    content: counter(step);
    counter-increment: step;
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}
.step-indicator .step.active::before {
    background: linear-gradient(135deg, #2459bf, #5715a4);
}
.step-indicator .step.completed::before {
    background: #4ade80;
}

/* Connector line between steps */
.step-indicator .step::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    height: 3px;
    width: 100%;
    background: #ccc;
    z-index: -1;
}
.step-indicator .step:last-child::after {
    display: none;
}
.step-indicator .step.completed::after {
    background: #4ade80;
}
.step-indicator .step.active::after {
    background: linear-gradient(90deg, #2459bf, #5715a4);
}

/* Form container */
#stepperForm {
    background: linear-gradient(135deg, #2459bf, #5715a4);
    padding: 25px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Labels */
#stepperForm .form-label {
    font-weight: 500;
    margin-bottom: 6px;
}

/* Inputs */
.modal.popup-modal-stepper .modal-dialog .modal-content {
    border-radius: 1rem !important;
}

.testimonial-carousel {
    background: linear-gradient(135deg, #2459bf, #5715a4);
}

#stepperForm .form-control {
    border-radius: 12px;
    border: none;
    padding: 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
#stepperForm .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
#stepperForm .form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

/* Input group */
#stepperForm .input-group-text {
   margin-right: .5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
}

/* Buttons */
#stepperForm .btn {
    bor
