/* Import SF UI Display Font Locally */
@font-face {
    font-family: 'SF UI Display';
    src: url('sf-ui-display-thin-58646e9b26e8b.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'SF UI Display';
    src: url('sf-ui-display-ultralight-58646b19bf205.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'SF UI Display';
    src: url('sf-ui-display-light-58646b33e0551.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'SF UI Display';
    src: url('sf-ui-display-medium-58646be638f96.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'SF UI Display';
    src: url('sf-ui-display-semibold-58646eddcae92.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'SF UI Display';
    src: url('sf-ui-display-black-58646a6b80d5a.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'SF UI Display';
    src: url('sf-ui-display-bold-58646a511e3d9.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* Root Variables */
:root {
    --main-bg-color: #fff;
    --main-text-color: #365EFC;
    --dark-text-color: #052353;
    --dark-text2-color: #032196;
    --light-text-color: #c7c7c7;
    --border-color: #555555;
    --brand-primary-color: #DC4814;
    --light-bg-color: #ededee;
    --dark-bg-color: #404040;
}

/* Global Styles */
body {
    font-family: 'SF UI Display', sans-serif;
    background-color: #f8f8f8;
    color: #000f26;
}
a, a:hover, a:active, a:visited {
    text-decoration: none !important;
}


/* Custom styles for form feedback */
.form-control.is-invalid,
.form-check-input.is-invalid {
    border-color: #dc3545;
}

.form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545;
}

/* Loading spinner animation */
.spinner-border {
    width: 1rem;
    height: 1rem;
}

#formError {
    margin-bottom: 1rem;
}

/* Success state */
.alert-success {
    margin-top: 1rem;
}

/* Navbar Styling */
.navbar-brand {
    color: #2563eb !important;
    display: flex;
    align-items: center;
    line-height: 1.2;
    flex-direction: column;
}
.navbar-brand img {
    width: 100px;
}

.navbar-brand span {
    display: block;
}
.nav-link {
    color: #555 !important;
    margin: 0 0.5rem !important;
    font-size: 1.1rem;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
    padding: 20px !important;
}
.nav-link.active,
.nav-link:hover {
    color: var(--main-text-color) !important;
    text-decoration: underline;
}
.custom-dropdown {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    min-width: 200px;
}
.custom-dropdown .dropdown-item {
    margin: 6px 0;
    padding: 12px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.2s ease;
}
.custom-dropdown .dropdown-item:hover  {
    background-color: #f8f9fa;
    border-color: #2563eb;
    color: #2563eb;
}

.custom-dropdown a.dropdown-item.active {
    background-color: #f8f9fa;
    border-color: #2563eb;
    color: #2563eb;
}

/* Button Styling */
.consult-btn {
    background-color: #0a1733;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
}
.consult-btn:hover {
    background: linear-gradient(to right, #0a1733 0%, #2a3e7b 100%); /* Gradient from original to lighter blue */
    color: #fff;
}
@media (max-width: 1200px) {
    .consult-btn {
        background-color: #0a1733;
        color: #fff;
        padding: 8px 15px;
        border-radius: 8px;
        font-weight: 400;
        font-size: 14px;
        text-decoration: none;
    }
}

@media (max-width: 1070px) {
    .consult-btn {
        background-color: #0a1733;
        color: #fff;
        padding: 8px 15px;
        border-radius: 8px;
        font-weight: 400;
        font-size: 12px;
        text-decoration: none;
    }
}
.btn-primary-custom {
    background-color: #0a0a0a;
    border: none;
    border-radius: 6px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
.btn-primary-custom:hover {
    background: linear-gradient(to right, #0a1733 0%, #2a3e7b 100%); /* Gradient from original to lighter blue */
    color: #fff;
}
.btn-primary-custom::after {
    content: "→";
    font-size: 16px;
}
.btn-dark-custom {
    background-color: #010F26;
    border: none;
    border-radius: 6px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-dark-custom:hover {
    background: linear-gradient(to right, #0a1733 0%, #2a3e7b 100%); /* Gradient from original to lighter blue */
    color: #ffffff;
}
.btn-dark-custom span {
    font-size: 16px;
}
.btn-secondary-custom {
    background: #010F26;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 400;
}
.btn-secondary-custom:hover {
    background: #f1f1f1;
    color: #010F26;
}

/* Hero Section */
.hero-section {
    padding: 50px 0;
}
.hero-section h2 {
    font-size: 70px;
    font-weight: 700;
}
.hero-section h2 span {
    color: var(--dark-text2-color);
}
.hero-section p {
    font-size: 24px !important;
    padding: 10px 0 !important;
    margin: 1rem 0 2rem !important;
    width: 80% !important;
    font-weight: 300 !important;
}
.hero-section .calculator-btn,
.hero-section .help-btn {
    position: fixed; /* Sticks to viewport */
    bottom: 20px; /* Distance from bottom */
    z-index: 1000; /* Stay above other content */
    cursor: pointer;
}

.hero-section .calculator-btn {
    right: 80px; /* Calculator on right */
}

.hero-section .help-btn {
    right: 150px; /* Help button left of calculator */
}

.hero-section .calculator-btn img,
.hero-section .help-btn img {
    width: 70px;
    padding: 0;
    transition: transform 0.3s ease;
}

.hero-section .calculator-btn img:hover,
.hero-section .help-btn img:hover {
    transform: scale(1.1);
}


/* About Calculator Modal */
.about-calculator h4 {
    color: #010F26;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-calculator .para {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #010F26;
    padding: 5px;
}

/* Investment & Tax Calculator Modal */
.calculator-modal .modal-xl {
    max-width: 80vw;
}
.calculator-modal .modal-content {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.calculator-modal .modal-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Align vertically */
    position: relative; /* Ensure close button positioning works */
}
.calculator-modal .nav-tabs {
    flex-grow: 1; /* Make tabs take up available space */
    display: flex;
    justify-content: center; /* Center tabs within the nav */
    border-bottom: none; /* Keep border-0 from HTML */
}


.calculator-modal .nav-tabs .nav-link {
    text-decoration: none;
    color: #6b7280;
    border: none;
    width: 100%; /* Ensure each tab button takes full width of nav-item */
    font-size: 1.1rem; /* Adjust font size if needed */
    padding: 0.5rem 1rem; /* Bootstrap default padding for nav-link */
    font-weight: 500;
    border-bottom: 2px solid transparent;
}
.calculator-modal .nav-tabs .nav-link.active {
    color: #1a2e5a;
    border-bottom-color: #3b82f6;
    border-radius: 0.25rem;
}
.calculator-modal .nav-tabs .nav-link:hover {
    color: #1a2e5a;
    border-bottom-color: #bfdbfe;
}
.calculator-modal .btn-close {
    filter: invert(0.5);
    position: absolute; /* Keep close button in top-right corner */
    right: 1rem;
    top: 1rem;
}
.calculator-modal .investment-form {
    background-color: #fdf2f8;
    border-right: 1px solid #e5e7eb;
    height: 100%;
}
.calculator-modal .investment-form h5 {
    color: #1a2e5a;
    font-size: 1.1rem;
}
.calculator-modal .investment-form .form-label {
    color: #374151;
    font-size: 0.875rem;
}
.calculator-modal .investment-form .form-control,
.calculator-modal .investment-form .form-select {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}
.calculator-modal .investment-form .form-control:focus,
.calculator-modal .investment-form .form-select:focus {
    border-color: #0a1733;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}
.calculator-modal .investment-form .input-group-text {
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    color: #6b7280;
    border-radius: 6px 0 0 6px;
}
.calculator-modal .investment-form .form-check-input:checked {
    background-color: #0a1733;
    border-color: #0a1733;
}
.calculator-modal .investment-form .form-check-label {
    color: #374151;
    font-size: 0.875rem;
}
.calculator-modal .investment-form .btn {
    background-color: #0a1733;
    border-color: #3b82f6;
    border-radius: 6px;
    font-weight: 500;
    padding: 0.75rem;
}
.calculator-modal .investment-form .btn:hover {
    background: linear-gradient(to right, #0a1733 0%, #2a3e7b 100%); /* Gradient from original to lighter blue */
    border-color: #0a1733;
}
.calculator-modal #totalBalance {
    color: #3b82f6;
}
.calculator-modal #investmentChart {
    max-height: 250px;
    width: 100%;
}
.calculator-modal .text-muted span {
    font-size: 0.75rem;
}
.calculator-modal .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-size: 1rem;
    color: #212529;
}
.calculator-modal .form-control[readonly] {
    background-color: #e9ecef;
    color: #495057;
}
.calculator-modal .bg-light {
    background-color: #f8f9fa !important;
}
.calculator-modal .btn-primary {
    background-color: #0a1733;
    border-color: #0a1733;
    padding: 0.375rem 1rem;
}
.calculator-modal .table th,
.calculator-modal .table td {
    text-align: center;
    vertical-align: middle;
    font-size: 0.875rem;
}
.calculator-modal .table thead th {
    background-color: #e9ecef;
    color: #495057;
}
.calculator-modal .progress {
    background-color: #e9ecef;
    border-radius: 0.25rem;
}
.calculator-modal .progress-bar.bg-success {
    background-color: #28a745 !important;
}
.calculator-modal .progress-bar.bg-danger {
    background-color: #dc3545 !important;
}
.calculator-modal .card {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}
.calculator-modal .row.mb-3 {
    align-items: center;
}
.calculator-modal .col-form-label {
    font-weight: 500;
    color: #212529;
}
@media (max-width: 768px) {
    .calculator-modal .modal-dialog {
        margin: 0.5rem;
    }
    .calculator-modal .investment-form {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    .calculator-modal .row.g-0 > div {
        padding-bottom: 0 !important;
    }

    .hero-section .calculator-btn {
    right: 80px; /* Calculator on right */
    bottom: 80px !important;
    }

    .hero-section .help-btn {
        /* right: 150px; */
        bottom: 120px !important;
    }
}

/* Services Section */
.services-bg {
    background-color: #ffffff;
}
.card-custom {
    background-color: #F3F6FF;
    border-radius: 10px;
    padding: 40px 30px 60px;
    text-align: center;
}
.card-custom .underline {
    width: 105px;
    height: 3px;
    background-color: #365efc;
    margin: 10px auto;
    border-radius: 10px;
}
.card-custom p {
    font-size: 14px;
    font-weight: 400;
}

/* Stats and CTA Section */
.cash-card-custom {
    border: none;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    height: 590px;
    width: 100%;
    max-width: 1225px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease-in-out;
}
.card-bg-img:hover {
    transform: scale(1.5);
}

/* Your provided CSS here */
.cash-account {
    position: absolute;
    top: 30px;
    right: 30px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    /* background: linear-gradient(180deg, #f4f6fb 0%, #ffffff 100%); */
}

/* Card wrapper to replicate image's container offset + subtle background image */
.scene {
    width: 450px;
    position: relative;
    /* optional soft background image like the screenshot */
    background-image: url(''); /* leave empty or put a soft blurred photo if desired */
    border-radius: 20px;
    padding: 8px;
}

.scene .cash-card {
    position: relative;
    border-radius: 18px;
    padding: 28px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    box-shadow:
    0 10px 30px rgba(15,30,60,0.12),
    inset 0 1px 0 rgba(255,255,255,0.6);
    overflow: visible;
    border: 1px solid rgba(255,255,255,0.6);
}

/* gradient outline/glow using pseudo element */
.scene .cash-card::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    margin: -1.8px; /* makes the gradient border visible outside */
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(43,107,255,0.12), rgba(103,192,255,0.12));
    filter: blur(6px);
    pointer-events:none;
}

/* subtle sharp gradient stroke using ::after */
.scene .cash-card::after{
    content:"";
    position:absolute;
    left:8px;
    right:8px;
    bottom:8px;
    height:6px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(43,107,255,0.95), rgba(103,192,255,0.9));
    opacity: 0.18;
    transform: translateY(6px);
    z-index: -1;
}

.scene .card-title {
    font-weight: 600;
    color: #263247;
    font-size: 18px;
    margin-bottom: 12px;
}

.scene .balance {
    font-weight: bold;
    font-size: 34px;
    color: #0f1724;
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: 0.6px;
}

.scene .divider {
    height:1px;
    background: rgba(80,95,120,0.08);
    margin: 8px 0 18px 0;
}

.scene .tx-section {
    margin-bottom: 18px;
}

.scene .tx-label {
    color: #536070;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.scene .transaction {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 4px 3px;
    border-radius: 8px;
}

.scene .tx-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.scene .icon-circle{
    width:40px;
    height:40px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background: linear-gradient(180deg, rgba(240,248,255,0.9), rgba(230,245,255,0.85));
    box-shadow: 0 3px 8px rgba(43,107,255,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
    border: 1px solid rgba(43,107,255,0.12);
    color: #2b6bff;
    font-weight:700;
    font-size:18px;
    line-height:1;
}

.scene .tx-meta {
    display:flex;
    flex-direction:column;
}

.scene .tx-title {
    font-weight:600;
    color: #1f2b3a;
    font-size:15px;
    line-height:1;
}

.scene .tx-sub {
    color: #536070;
    font-size:13px;
    margin-top:3px;
}

.scene .tx-amount {
    text-align:right;
    font-weight:700;
    color: #0f1724;
    font-size:15px;
    min-width:120px;
}

.scene .tx-amount .currency {
    font-weight:500;
    font-size:12px;
    color: rgba(15,23,36,0.65);
    margin-left:6px;
}

.scene .tx-amount.negative {
    color: #c93b3b;
}

/* small responsive tweak */
@media (max-width:540px){
    .scene{ width: 90vw; }
    .scene .balance{ font-size:28px; }
    .scene .tx-amount{ min-width:90px; font-size:14px; }
}

/* Additional CSS for animations */
.tx-container {
    position: relative;
    overflow: hidden;
    min-height: 200px; /* Adjust based on content height */
}

.tx-list {
    position: absolute;
    width: 100%;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.tx-list.slide-out {
    transform: translateY(-100%);
    opacity: 0;
}

.tx-list.slide-in {
    transform: translateY(0);
    opacity: 1;
}

.tx-list.slide-prepare {
    transform: translateY(100%);
    opacity: 0;
}

.balance {
    display: inline-block;
    position: relative;
}

.balance span {
    display: inline-block;
    transition: transform 0.5s ease;
}

.balance.animate span {
    animation: scroll-number 0.8s ease-out;
}

@keyframes scroll-number {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); opacity: 0; }
    51% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.stats-container {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 3;
}
.stat-box {
    text-align: center;
}
.stat-icon {
    display: block;
    margin: 0 auto 10px;
    width: 32px;
    height: 32px;
}
.stat-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.stat-box h3 .highlight {
    color: #0052ff;
}
.stat-box p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
    margin: 0;
}
.counter {
    display: inline-block;
    min-width: 50px; /* Adjust based on your max number width to prevent layout shift */
    text-align: center;
}
.cash-account-text .btn-button {
    background-color: #0a1733;
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    transform: translateY(200%);
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease;
}
.cash-account-text .btn-button:hover {
    background: linear-gradient(to right, #0a1733 0%, #2a3e7b 100%); /* Gradient from original to lighter blue */
    color: #fff;
}

/* Trusted Partners Section */
.trusted-partners {
    margin-top: 10px;
}
.partners-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.partners-carousel img {
    max-height: 70px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}
.partners-carousel img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Expert Guidance Section */
section.expert .text-container {
    width: 100%;
    padding: 2rem 3rem;
}
section.expert .text-container h2 {
    max-width: 470px;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 1.5rem;
    color: #000f26;
}
section.expert .text-container p {
    max-width: 490px;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: #000f26;
}
section.expert .form-section {
    background-color: #EAEAEA;
    border-radius: 6px;
    padding: 40px 30px;
    max-width: 480px;
    margin: 0 auto;
}
section.expert .form-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}
section.expert .form-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}
section.expert .form-control {
    border: none;
    border-bottom: 1px solid #d1d5db;
    border-radius: 0;
    padding: 10px 0;
    font-size: 15px;
    color: #111827;
    background-color: transparent;
}
section.expert .form-control::placeholder {
    color: #9ca3af;
    font-size: 15px;
}
section.expert .form-control:focus {
    border-color: none;
    box-shadow: none;
    background-color: transparent;
}
section.expert .form-check-input {
    border: 1px solid #000f26;
    border-radius: 5px;
}
section.expert .form-check-input[type="radio"] {
    border-radius: 20%;
    width: 20px;
    height: 20px;
}
section.expert .form-check-input[type="radio"]:checked,
section.expert .form-check-input[type="radio"]:focus {
    box-shadow: none;
    background-color: #0a0a0a;
    border-color: #0a0a0a;
}
section.expert .form-check {
    margin-bottom: 6px;
}
section.expert .form-check-label {
    font-size: 14px;
    color: #111827;
    margin-left: 10px;
}
section.expert .small {
    font-size: 12px;
    font-weight: 300;
    color: #6b7280;
    margin-top: 15px;
    line-height: 1.5;
}

/* Meeting Section */
.meeting-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.meeting-title {
    color: #010F26;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 450px;
}
.meeting-card {
    background: #EDEDED;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}
.meeting-card:hover {
    background: #eef2f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.meeting-card h5 {
    color: #010F26;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}
.meeting-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #010F26;
    max-width: 350px;
}

/* Benefits Section */
.benefits-section {
    background-color: #000f26;
    color: #fff;
}
.benefits-title {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 400px;
}
.benefits-text {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    max-width: 350px;
}
.benefit-card {
    position: relative;
    border-radius: 12px;
    padding: 24px 24px 12em;
    height: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
}
.ribbon-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/ribbon.png");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
    transition: transform 0.5s ease-in-out;
    z-index: 0; /* Ensure ribbon is behind card content */
}

.ribbon-bg:hover {
    transform: scale(1.1); /* Scale up to 110% on hover */
}

/* Stretch arrow horizontally on card hover */
.benefit-card:hover .arrow {
    transform: scaleX(2.0); /* Stretch arrow width by 110% */
    display: inline-block; /* Ensure transform works */
    transition: transform 0.5s ease-in-out; /* Match ribbon transition */
    padding-left: 5px;
}

/* Ensure card content is above ribbon */
.benefit-card > *:not(.ribbon-bg) {
    position: relative;
    z-index: 1;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 12px 0 18px;
}
.benefit-card .arrow {
    font-size: 20px;
    margin-left: 6px;
}
.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 275px;
}
.benefit-card ul li {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.benefit-card ul li i.colored {
    color: #f8f8f8;
    margin-top: 3px;
    background-color: #011A41;
    padding: 3px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}
.benefit-card ul li i.no-color {
    color: #011A41;
    margin-top: 3px;
    background-color: #f8f8f8;
    padding: 3px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}
.light-card {
    background-color: #fff;
    color: #010F26;
}
.dark-card {
    background-color: #0037b3;
    color: #fff;
}
.terces-badge-colored {
    background: #011A4170;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    padding: 4px 10px;
    border-radius: 8px;
}
.terces-badge-light {
    background: #F3F3F3;
    color: #010F26;
    font-size: 16px;
    font-weight: 300;
    padding: 4px 10px;
    border-radius: 8px;
}

/* Why Choose Us Section */
.why-choose {
    background: #fff;
    color: #111827;
}
.why-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}
.feature-item {
    padding: 0 15px;
}
.feature-icon {
    width: 48px;
    height: auto;
    margin-bottom: 20px;
}
.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}
.feature-item p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}
.border-col {
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

/* CTA Hero Section */
.cta-hero {
    height: 650px;
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
}

.cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the section without distortion */
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 2, 7, 0.55); /* Blue overlay with 90% opacity */
    z-index: 2;
}

.cta-hero .container {
    position: relative;
    z-index: 3; /* Ensures content is above video and overlay */
}

.cta-hero h2 {
    max-width: 450px;
    margin: 30px auto;
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.cta-hero p {
    max-width: 400px;
    margin: 20px auto;
    font-size: 18px;
    font-weight: 100;
    color: #fff;
    line-height: 1.8;
}

/* About Us Page */
section.about-us {
    background-color: #E9EDFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    margin: 0;
}
section.about-us .content {
    text-align: center;
}
section.about-us .content h1 {
    color: #010F26;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px auto;
    max-width: 80%;
}
section.about-us span {
    background-color: #032196;
    border-color: #032196;
    border-radius: 6px;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
}

section.who-we-are {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 40px;
    background-color: #f9f9f9;
}

.who-we-are .image-section {
    flex: 1;
    text-align: center;
    object-fit: cover;
}
.who-we-are .image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.who-we-are .text-section {
    flex: 1;
    padding-left: 20px;
<<<<<<< HEAD
    color: #1e3a8a;
}
.who-we-are .text-section h1 {
    font-size: 2.5rem;
=======
    color: #010F26;
}
.who-we-are .text-section h1 {
    font-size: 3.5rem;
>>>>>>> 48db45eda3d8477d33fa1435d58079a48b7ed275
    font-weight: bold;
}
.who-we-are .text-section p {
    margin: 10px auto;
    font-size: 1rem;
    line-height: 1.8;
}

section.stat-section h1 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #010F26;
}

section.stat-section p {
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 auto 40px;
    max-width: 520px;
    color: #010F26;
}

section.stat-section .stat-card-custom {
    border: none;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    height: 400px;
    width: 100%;
    max-width: 1225px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

section.stat-section .card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease-in-out;
}
section.stat-section .card-bg-img:hover {
    transform: scale(1.1);
}

section.stat-section .stats-container-1 {
    position: absolute;
    bottom: -40px; /* pulls outside card */
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

section.stat-section .stat-box {
    text-align: center;
}

section.stat-section .stat-icon {
    display: block;
    margin: 0 auto 10px;
    width: 32px;
    height: 32px;
}
section.stat-section .stat-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}
section.stat-section .stat-box h3 .highlight {
    color: #0052ff;
}
section.stat-section .stat-box p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
    margin: 0;
}
section.stat-section .counter {
    display: inline-block;
    min-width: 50px;
    text-align: center;
}

/* FAQs */
.faq-section {
    padding: 60px 0;
}
.faq-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #010F26;
}
.faq-subtitle {
    color: #555;
    margin-top: 10px;
}
.faq-subtitle a {
    color: #1a3aff;
    text-decoration: none;
    font-weight: 600;
}
.faq-subtitle a:hover {
    text-decoration: underline;
}
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: none;
    background: #fff;
    padding: 15px;
}
.accordion-button {
    border-radius: 10px !important;
    font-size: 0.95rem;
    color: #111;
    font-weight: 400;
    background: #fff;
    box-shadow: none !important;
    padding: 18px 20px;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23010F26' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/ %3E%3C/svg%3E");
    transform: scale(1.2);
}
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg) scale(1.2);
    color: #000f26;
}
.accordion-button:focus {
    box-shadow: none;
    border: none;
}
.accordion-body {
    padding: 15px 20px;
    font-size: 0.9rem;
    color: #444;
}

/* Blog */

.blog-section {
    padding: 60px 0;
}
.blog-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0a1633;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    background: #f9f9f9;
}
.title-wrapper {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}
.title-wrapper::before,
.title-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    height: 2px;
    background: #0a1633;
}
.title-wrapper::before {
    left: 0;
}
.title-wrapper::after {
    right: 0;
}
.blog-card img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}
.blog-card h3 {
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: 400;
    color: #010F26;
}

.blog-card p {
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: 300;
    color: #8F8F8F;
}


/* Refers */

.refer-section {
    padding: 60px 0;
}
.refer-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0a1633;
    margin-bottom: 40px;
}
.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid #010F26;
    padding: 20px 25px;
    font-size: 0.95rem;
    font-weight: 300;
    color: #010F26;
}
.form-control:focus, .form-select:focus {
    border-color: #010F26;
    box-shadow: none;
}
.btn-refer {
    background-color: #010F26;
    color: #fff;
    padding: 10px 40px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 300;
    border: none;
}
.btn-refer:hover {
    background-color: #000d26;
}

/* Contact Page */
/* Contact Section Styling */
.contact-section {
  background: #E9EDFF; /* soft background color */
  padding: 8rem 1rem 8rem; /* extra bottom padding so overlap has room */
  text-align: center;
  position: relative;
  margin-bottom: 8rem; /* space below for the overlap */
  height: 400px;
}

.contact-title {
    max-width: 550px;
    font-size: 2.8rem;
    font-weight: 700;
    color: #010F26;
    margin: 0 auto;
    display: inline-flexbox;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .consult-btn {
        background-color: #0a1733;
        color: #fff;
        padding: 8px 15px;
        border-radius: 8px;
        font-weight: 400;
        font-size: 14px;
        text-decoration: none;
    }
}

@media (max-width: 580px) {
    .contact-title {
        max-width: 100% !important;
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #010F26;
        margin: 0 auto;
        display: inline-flexbox;
        justify-content: center;
        align-items: center;
    }
}

.contact-title span {
  color: #0f172a;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-content: center;
  position: relative;
  z-index: 2; /* sit above the section background */
  top: 50px;
  bottom: 0;
}


.contact-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 3.8rem 2rem 1.5rem;
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.icon-wrapper {
  background: #ECF7FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.icon-wrapper img {
  width: 28px;
  height: 28px;
}

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.contact-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #2563eb;
}

.contact-card span img {
  width: 12px;
  height: 12px;
}

/* Blog Section */
section.our-blog {
    background-color: #E9EDFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    margin: 0;
}
section.our-blog .content {
    text-align: center;
}
section.our-blog .content h1 {
    color: #010F26;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px auto;
    max-width: 80%;
}
section.our-blog span {
    background-color: #032196;
    border-color: #032196;
    border-radius: 6px;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
}

/* Card Container */
.news-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1300px;
  margin: 1rem auto;
  border-radius: 6px;
  overflow: hidden;
}

/* Left Content */
.news-content {
  background: #003da5; /* deep blue */
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-content h3 {
    max-width: 4050px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.news-content p {
    max-width: 400px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #dbeafe;
}

/* Meta Section */
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.news-meta .date {
  color: #e2e8f0;
}

.news-meta .read-more {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.news-meta .read-more:hover {
  color: #93c5fd;
}

.blog-card span.meta {
    margin-top: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #8F8F8F;
}

/* Right Image */
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .news-card {
    grid-template-columns: 1fr;
  }

  .news-image {
    order: -1; /* show image first on mobile */
  }
}

/* Single Blog */
.blog-container {
    max-width: 1200px;
    padding: 50px 15px;
    margin: 40px auto;
}
.blog-container .back-btn {
    background-color: #0a1633;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.blog-container .back-btn:hover {
    background-color: #000d26;
}
.blog-container .blog-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: #0a1633;
    line-height: 1.4;
}
.blog-container .blog-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}
.blog-container .blog-content h5 {
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 30px;
}
.blog-container .blog-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
    color: #222;
}

.share-section h6 {
    color: #0a1633; /* dark navy like your screenshot */
}

.share-icons {
    background: rgba(59, 130, 246, 0.09); /* light blue background */
    gap: 12px;
}

.share-icon {
    background-color: rgba(14, 104, 248, 0.137);
    fill: 1px solid #365EFC; /* blue outline style */
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.share-icon.facebook:hover {
    background: #3b82f6;
    color: #fff;
}

.share-icon.twitter:hover{
    background-color: #000000;
    color: #fff;
}

.share-icon.instagram:hover{
    background-color: #8a49a1;
    color: #fff;
}

.share-icon.linkedin:hover{
    background-color: #0a66c2;
    color: #fff;
}

/* Finance */
section.finance {
    background-color: #010F26;
    color: #fff;
    max-width: 100%;
}

section.finance .header-text {
    max-width: 95%;
    margin: 0 auto;
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    padding: 2rem 0;
}
section.finance .btn-custom {
    background-color: #010F26;
    color: #ffffff;
    border: 1px solid #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
}
section.finance .btn-custom:hover {
    background-color: #1c86ee;
}
section.finance .image-section img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 2rem;
}
section.finance .info-section {
    padding: 2rem 0;
}
section.finance .info-section h2 {
    padding: 2rem 0;
    max-width: 400px;
}
section.finance .card-custom {
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin: 1rem 0;
}

section.finance .card-custom h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
section.finance .card-custom p {
    font-size: 1rem;
    font-weight: 300;
    color: #ffffff;
}

section.finance .card-custom img {
    width: 20%;
}

/* Border Up with fading background */
section.finance .border-up {
  position: relative;
  padding: 2rem;
  border-top: 2px solid #ffffff;
  background: linear-gradient(to bottom, #02388C, #010F26 60%);
  transition: background 0.6s ease-in-out;
}

section.finance .border-up::before,
section.finance .border-up::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #ffffff 0%, #010F26 100%);
  transition: background 0.6s ease-in-out;
}

section.finance .border-up::before { left: 0; }
section.finance .border-up::after { right: 0; }

/* Hover effect - flip background and border gradients */
section.finance .border-up:hover {
  background: linear-gradient(to top, #02388C, #010F26 60%);
}
section.finance .border-up:hover::before,
section.finance .border-up:hover::after {
  background: linear-gradient(to top, #ffffff 0%, #010F26 100%);
}


/* Border Down with fading background */
section.finance .border-down {
  position: relative;
  padding: 2rem;
  border-bottom: 2px solid #ffffff;
  background: linear-gradient(to top, #02388C, #010F26 60%);
  transition: background 0.6s ease-in-out;
}

section.finance .border-down::before,
section.finance .border-down::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to top, #ffffff 0%, #010F26 100%);
  transition: background 0.6s ease-in-out;
}

section.finance .border-down::before { left: 0; }
section.finance .border-down::after { right: 0; }

/* Hover effect - flip background and border gradients */
section.finance .border-down:hover {
  background: linear-gradient(to bottom, #02388C, #010F26 60%);
}
section.finance .border-down:hover::before,
section.finance .border-down:hover::after {
  background: linear-gradient(to bottom, #ffffff 0%, #010F26 100%);
}

@media (max-width: 768px) {
    section.finance .header-text {
        font-size: 1.5rem !important;
    }

    section.finance .info-section {
        padding: 1rem 0 !important;
    }
    section.finance .info-section h2 {
        padding: 1rem 0 !important;
        max-width: 100% !important;
        font-size: 1.9rem !important;
    }
}

@media (max-width: 576px) {
    section.finance .header-text {
        font-size: 1.1rem !important;
    }

    section.finance .btn-custom {
        padding: 10px 15px !important;
        border-radius: 8px;
        font-weight: 400 !important;
    }
    section.finance .info-section {
        padding: 1rem 0 !important;
    }
    section.finance .info-section h2 {
        padding: 1rem 0 !important;
        max-width: 100% !important;
        font-size: 1.3rem !important;
    }
}

section.career {}

/* Masonry layout */
section.career .masonry {
    column-count: 4; /* Number of columns */
    column-gap: 1rem;
    padding: 0 8rem;
}
section.career .masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    /* border-radius: 3.5rem; */
    overflow: hidden;
}
section.career .masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive columns */
@media (max-width: 992px) {
    section.career .masonry {
    column-count: 2;
    }
}
@media (max-width: 576px) {
    section.career .masonry {
        column-count: 2;
        display: none;
    }
}

/* Text section */
section.career .team-text {
    margin-top: 3rem;
    text-align: center;
}
section.career .team-text h2 {
    font-weight: 700;
    color: #010F26;
    font-size: 2.5rem;
}
section.career .team-text p {
    max-width: 90%;
    font-size: 20px;
    font-weight: 400;
    margin: 0 auto;
    color: #010F26;
}

section.careers {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1rem;
}

section.careers .benefits-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%;
}
section.careers .benefits-card h5 {
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0d6efd; /* Bootstrap blue underline */
    display: inline-block;
}
section.careers .benefits-card p {
    max-width: 90%;
    color: #333;
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 1.9;
}

/* Contact Card */
section.careers .contact-card {
    background: #010F26; /* Dark navy */
    color: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}
section.careers .contact-card h5 {
    font-weight: 400;
    font-size: 2.5rem;
    margin-bottom: 10rem;
}
section.careers .contact-icon {
    width: 48px;
    height: 48px;
    background: #02388C;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
section.careers .contact-icon i {
    font-size: 1.2rem;
    color: #fff;
}
section.careers .contact-card p {
    margin: 0;
    font-size: 0.95rem;
}

.looking-section {
    padding: 60px 0;
    text-align: center;
}

.looking-section h2 {
    font-weight: 700;
    color: #0a1a33;
    margin-bottom: 30px;
}

.looking-section .looking-box {
    border-radius: 10px;
    padding: 40px 50px;
    background: #fff;
    max-width: 100%;
    margin: 0 auto;
}

.looking-section .looking-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.looking-section .looking-box li {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
    color: #0a1a33;
}

.looking-section .looking-box li:last-child {
    margin-bottom: 0;
}

.looking-section .check-icon {
    width: 22px;
    height: 22px;
    background-color: #3b5bfd; /* bright blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Consultation */
.consult-hero {
    position: relative;
    background-color: #010F26;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.consult-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('../images/consultation.png') no-repeat center left;
    background-size: cover;
    z-index: 0;
}

.consult-hero .form-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    border-radius: 10px;
    padding-top: 20px;
}

/* Responsive iframe container */
.responsive-iframe {
    width: 100% !important;
    max-width: 100%;
    height: 800px !important;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.responsive-iframe button {
    background-color: #010F26 !important;
}


/* Assume Bootstrap is loaded or add minimal styles */
@media (max-width: 768px) {
    .responsive-iframe {
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .responsive-iframe {
        max-width: 600px;
    }
}

/* Benefits */
.benefits-hero-section {
    background-image: url('../images/benefit-hero.png');
    background-size: cover;
    background-position: center center;
    /* color: white; */
    padding-top: 15rem;
    position: relative;
    overflow: hidden;
    height: 800px;
}
.benefits-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(1, 15, 38, 0.9) 70%, rgba(1, 15, 38, 0.9) 30%);
    /* background-image: url('../images/benefit-hero.png'); */
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}
.benefits-hero-section .hero-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(1, 15, 38, 0.9) 100%);
    border: none;
    position: relative;
    z-index: 2;
    text-align: center;
    height: 100%;
    padding-top: 5rem;
    padding-bottom: 25rem;
}
.benefits-hero-section .hero-title {
    font-size: 2.5rem;
    max-width: 500px;
    font-weight: 700;
    margin: 0 auto;
    margin-bottom: 1rem;
    color: white;
}
.benefits-hero-section .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}
.benefit-section {
    background-color: #010F26;
    padding: 4rem 0;
    border: none;
}

.benefit-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    text-align: start;
    margin-bottom: 3rem;
}

.benefit-section .benefit-card-1 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.2s ease;
}

.benefit-section .benefit-card-1:hover {
    transform: translateY(-4px);
}

.benefit-section .benefit-card-1 img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Text overlay container — full cover */
.benefit-section .benefit-card-1 .benefit-card-body {
    position: absolute;
    inset: 0; /* top: 0; right: 0; bottom: 0; left: 0; shorthand */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* places title at top, subtitle at bottom */
    background: rgba(1, 15, 38, 0.2); /* transparent dark overlay */
    color: #fff;
    padding-top: .5rem;
    padding-left: .5rem;
    padding-bottom: .5rem;
}

/* Title at the top */
.benefit-section .benefit-card-1 .benefit-title {
    font-size: 1.5rem;
    width: 50%;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

/* Subtitle at the bottom */
.benefit-section .benefit-card-1 .benefit-subtitle {
    color: #e2e8f0;
    width: 400px;
    background: linear-gradient(180deg, rgba(1, 15, 38, 0.4) 10%, rgba(2, 56, 140, 0.4) 90%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* for Safari support */
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 1rem;
}

.benefit-bg {
    background-color: #fff !important;
    color: #010F26 !important;
    height: auto !important;
    padding-bottom: 5rem;
}

.benefit-bg .section-title {
    position: relative;
    color: #010F26 !important;
    text-align: center;
    padding-bottom: 2rem;
    padding-top: 25rem;
    font-weight: 700;
    font-size: 3rem;
}

.benefit-ribbon {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/ribbon-up.png") !important;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    transition: transform 0.5s ease-in-out;
    z-index: 0;
}


@media (max-width: 768px) {
    .benefit-hero-section .hero-title {
        font-size: 2.5rem;
    }
    .benefit-section .section-title {
        font-size: 2rem;
    }
    .benefit-section .benefit-card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .form-container .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Footer Styling */
footer {
    background: #f8f8f8;
    font-size: 14px;
    color: #333;
    padding: 100px 0;
}
footer h6 {
    font-weight: 600;
    font-size: 16px;
    color: #1a2e5a;
    margin-bottom: 15px;
}
footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
footer ul li {
    margin-bottom: 25px;
    color: #4a5b7c;
    display: flex;
    align-items: center;
}
footer ul li i {
    color: #4a5b7c;
    font-size: 18px;
    margin-right: 8px;
}
footer a {
    font-weight: 400;
    color: #4a5b7c;
}
footer a:hover {
    color: #2c3e50;
    text-decoration: underline;
}
.terces-footer {
    border-top: 1px solid #D1D2D4;
    max-width: 100%;
    padding: 50px 12rem;
    background-color: #f8f8f8;
    color: #333;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.social-links a {
    display: inline-block;
    margin-right: 14px;
    color: #4a5b7c;
    font-size: 25px;
    transition: color 0.3s ease;
}

.social-links a.facebook {
    color: #3b5998;
}

.social-links a.twitter {
    color: #00acee;
}

.social-links a.linkedin {
    color: #0e76a8;
}

.social-links a.instagram {
    color: #C13584;
}

.social-links a.youtube {
    color: #FF0000;
}