/* Custom CSS for Indeed Prime Redesign */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #007bff; /* Adjust to match brand color */
    --secondary-color: #6c757d;
    --accent-color: #28a745;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: 'Poppins', sans-serif !important;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    padding-top: 64px; /* Prevent fixed navbar overlap without leaving a visible gap */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #2c3e50;
}

/* Navbar Improvements */
.w3l-bootstrap-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 123, 255, 0.08);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.w3l-bootstrap-header::after {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #007bff 0%, #3ea0ff 45%, #7cc5ff 100%);
}

.w3l-bootstrap-header .navbar {
    padding: 10px 0;
}

.w3l-bootstrap-header .container {
    gap: 14px;
    align-items: center;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 18px;
    color: #163a63 !important;
}

.w3l-bootstrap-header a.navbar-brand span {
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    color: var(--primary-color);
    margin-right: 5px;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 22px rgba(0, 123, 255, 0.18);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.brand-title {
    font-weight: 700;
    font-size: 1.12rem;
    color: #163a63;
}

.brand-subtitle {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6c7a89;
    margin-top: 4px;
}

.nav-link {
    font-weight: 600;
    color: #405267 !important;
    font-size: 0.88rem;
    padding: 0.55rem 0.85rem !important;
    border-radius: 999px;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--primary-color) !important;
    background-color: rgba(0, 123, 255, 0.07);
}

.dropdown-menu {
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    margin-top: 14px;
    padding: 10px;
    min-width: 260px;
    background: rgba(255, 255, 255, 0.98);
}

.dropdown-item {
    padding: 11px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 10px;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(0, 123, 255, 0.08);
    color: var(--primary-color);
    transform: translateX(3px);
}

.navbar-nav {
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}

.navbar-nav .nav-item {
    margin: 0 1px;
}

.header-actions {
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    background: #fff;
    color: #0f4c9c !important;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
}

.header-login:hover {
    background: rgba(0, 123, 255, 0.08);
    color: #0056b3 !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.header-register {
    min-width: 132px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
}

/* Buttons */
.btn-theme {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 10px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 22px rgba(0, 123, 255, 0.28), 0 6px 14px rgba(0, 0, 0, 0.12);
}

.btn-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 123, 255, 0.35), 0 10px 18px rgba(0, 0, 0, 0.14);
    background-color: #0069d9; /* Darker shade */
}

.navbar-toggler {
    border: none;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(0, 123, 255, 0.08);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.w3l-bootstrap-header .navbar-collapse {
    align-items: center;
}

@media (max-width: 1399.98px) {
    .w3l-bootstrap-header .navbar > .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .w3l-bootstrap-header .navbar-expand-xl .navbar-toggler {
        display: block;
        margin-left: auto;
    }

    .w3l-bootstrap-header .navbar-expand-xl .navbar-collapse {
        display: none !important;
        width: 100%;
        flex-basis: 100%;
    }

    .w3l-bootstrap-header .navbar-expand-xl .navbar-collapse.show,
    .w3l-bootstrap-header .navbar-expand-xl .navbar-collapse.collapsing {
        display: block !important;
    }

    .w3l-bootstrap-header .navbar-expand-xl .navbar-collapse {
        order: 3;
    }

    .w3l-bootstrap-header .navbar-expand-xl .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .w3l-bootstrap-header .navbar-expand-xl .header-actions {
        width: 100%;
    }

    .w3l-bootstrap-header .navbar-expand-xl .dropdown-menu {
        position: static;
        float: none;
        transform: none !important;
    }
}

@media (max-width: 1199.98px) {
    body {
        padding-top: 70px;
    }

    .w3l-bootstrap-header .navbar {
        padding: 12px 0;
    }

    .w3l-bootstrap-header .container {
        gap: 10px;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .navbar-collapse {
        margin-top: 16px;
        padding: 18px;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .navbar-nav {
        align-items: stretch;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .navbar-nav .nav-item {
        margin: 0;
    }

    .nav-link {
        border-radius: 12px;
        padding: 0.75rem 0.95rem !important;
    }

    .dropdown-menu {
        margin-top: 8px;
        padding: 8px;
        min-width: 100%;
        box-shadow: none;
        border-radius: 14px;
        border-color: rgba(15, 23, 42, 0.08);
    }

    .dropdown-item {
        white-space: normal;
    }

    .header-actions {
        margin-left: 0;
        margin-top: 14px;
        flex-direction: column;
        align-items: stretch;
    }

    .header-login,
    .header-register {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }

    .brand-subtitle {
        font-size: 0.66rem;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 66px;
    }

    .w3l-bootstrap-header a.navbar-brand span {
        vertical-align: middle;
        margin-right: 0;
    }

    .w3l-bootstrap-header .navbar {
        padding: 8px 0;
        min-height: 62px;
    }

    .w3l-bootstrap-header .navbar > .container {
        gap: 0;
        row-gap: 0;
        align-items: center;
        justify-content: space-between;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: 0.74rem;
    }

    .brand-title {
        font-size: 0.78rem;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.1;
    }

    .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 52px);
        gap: 6px;
        align-items: center;
    }

    .brand-copy {
        display: flex;
        align-items: center;
        min-width: 0;
        justify-content: center;
    }

    .navbar-toggler {
        width: 40px;
        height: 40px;
        padding: 7px 9px;
        margin-left: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.7rem 0.85rem !important;
    }

    .dropdown-item {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .header-login,
    .header-register {
        min-width: 100%;
    }
}

@media (max-width: 420px) {
    .brand-mark {
        width: 30px;
        height: 30px;
        font-size: 0.68rem;
    }

    .navbar-brand {
        max-width: calc(100% - 48px);
        gap: 5px;
    }

    .brand-title {
        font-size: 0.72rem;
        line-height: 1.05;
    }

    .navbar-toggler {
        width: 36px;
        height: 36px;
        margin-left: 8px;
    }
}

/* Hero Section */
.w3l-index-block1 .content {
    background: transparent;
    padding: 0 !important;
}

/* Shared Inner Service Pages */
.w3l-about2 .features-main {
    background:
        radial-gradient(circle at top left, rgba(0, 123, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #f4f8fc 100%);
}

/* Login Page */
.login-page-section .features-main {
    background:
        radial-gradient(circle at top right, rgba(0, 123, 255, 0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(0, 123, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

.login-shell {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.login-showcase {
    height: 100%;
    padding: 54px 42px;
    background: linear-gradient(135deg, #0f4c9c 0%, #007bff 55%, #49a4ff 100%);
    color: #fff;
}

.login-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.login-title {
    color: #fff;
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 18px;
}

.login-copy {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 28px;
}

.login-points {
    display: grid;
    gap: 14px;
}

.login-point {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 500;
}

.login-card {
    height: 100%;
    padding: 54px 42px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.login-card-head {
    margin-bottom: 28px;
}

.login-form-copy {
    color: #6b7b8d;
    font-size: 0.98rem;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    color: #15365e;
    font-weight: 600;
    font-size: 0.95rem;
}

.login-input {
    height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(21, 54, 94, 0.12);
    background: #f8fbff;
    box-shadow: none;
    padding: 0 16px;
}

.login-input:focus {
    border-color: rgba(0, 123, 255, 0.45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.08);
}

.login-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 4px 0 24px;
}

.login-form .form-check-label {
    margin-bottom: 0;
    color: #617286;
    font-weight: 500;
}

.login-helper-link {
    color: #0f4c9c;
    font-weight: 600;
    text-decoration: none !important;
}

.login-helper-link:hover {
    color: #0056b3;
}

.login-submit {
    min-width: 170px;
    height: 50px;
    padding: 0 28px;
}

@media (max-width: 991.98px) {
    .login-showcase,
    .login-card {
        padding: 38px 28px;
    }
}

@media (max-width: 575.98px) {
    .login-shell {
        border-radius: 22px;
    }

    .login-showcase,
    .login-card {
        padding: 30px 20px;
    }

    .login-title {
        font-size: 1.9rem;
    }

    .login-form-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-submit {
        width: 100%;
    }
}

/* Registration Page */
.registration-page-section .features-main {
    background:
        radial-gradient(circle at top left, rgba(0, 123, 255, 0.11), transparent 28%),
        radial-gradient(circle at bottom right, rgba(15, 76, 156, 0.08), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #edf5fb 100%);
}

.registration-shell {
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.registration-showcase {
    height: 100%;
    padding: 54px 42px;
    background: linear-gradient(135deg, #15365e 0%, #0f4c9c 48%, #1782ff 100%);
    color: #fff;
}

.registration-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.registration-title {
    color: #fff;
    font-size: 2.15rem;
    line-height: 1.3;
    margin-bottom: 18px;
}

.registration-copy {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 28px;
}

.registration-points {
    display: grid;
    gap: 14px;
}

.registration-point {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 500;
}

.registration-card {
    height: 100%;
    padding: 54px 42px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.registration-card-head {
    margin-bottom: 24px;
}

.registration-form-copy {
    color: #6b7b8d;
    font-size: 0.98rem;
}

.registration-alert {
    border-radius: 16px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.registration-form .form-group {
    margin-bottom: 20px;
}

.registration-form label {
    display: block;
    margin-bottom: 8px;
    color: #15365e;
    font-weight: 600;
    font-size: 0.95rem;
}

.registration-input {
    height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(21, 54, 94, 0.12);
    background: #f8fbff;
    box-shadow: none;
    padding: 0 16px;
}

select.registration-input {
    padding-right: 42px;
}

.registration-input:focus {
    border-color: rgba(0, 123, 255, 0.45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.08);
}

.registration-form .form-check-label {
    margin-bottom: 0;
    color: #617286;
    font-weight: 500;
}

.registration-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 4px 0 24px;
}

.registration-helper-link {
    color: #0f4c9c;
    font-weight: 600;
    text-decoration: none !important;
}

.registration-helper-link:hover {
    color: #0056b3;
}

.registration-submit {
    min-width: 190px;
    height: 50px;
    padding: 0 28px;
}

@media (max-width: 991.98px) {
    .registration-showcase,
    .registration-card {
        padding: 38px 28px;
    }
}

@media (max-width: 575.98px) {
    .registration-shell {
        border-radius: 22px;
    }

    .registration-showcase,
    .registration-card {
        padding: 30px 20px;
    }

    .registration-title {
        font-size: 1.85rem;
    }

    .registration-form-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .registration-submit {
        width: 100%;
    }
}

/* Information Page */
.information-page-section .features-main {
    background:
        radial-gradient(circle at top right, rgba(0, 123, 255, 0.11), transparent 28%),
        radial-gradient(circle at bottom left, rgba(15, 76, 156, 0.08), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #edf5fb 100%);
}

.information-shell {
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.information-showcase {
    height: 100%;
    padding: 54px 42px;
    background: linear-gradient(135deg, #163a63 0%, #0f4c9c 50%, #1891ff 100%);
    color: #fff;
}

.information-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.information-title {
    color: #fff;
    font-size: 2.1rem;
    line-height: 1.3;
    margin-bottom: 18px;
}

.information-copy {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 28px;
}

.information-summary {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.information-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.information-summary-row span {
    color: rgba(255, 255, 255, 0.82);
}

.information-summary-row strong {
    color: #fff;
}

.information-summary-row.total {
    background: rgba(255, 255, 255, 0.18);
}

.information-points {
    display: grid;
    gap: 14px;
}

.information-point {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 500;
}

.information-card {
    height: 100%;
    padding: 54px 42px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.information-card-head {
    margin-bottom: 24px;
}

.information-form-copy {
    color: #6b7b8d;
    font-size: 0.98rem;
}

.information-alert {
    border-radius: 16px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.information-form .form-group {
    margin-bottom: 20px;
}

.information-form label {
    display: block;
    margin-bottom: 8px;
    color: #15365e;
    font-weight: 600;
    font-size: 0.95rem;
}

.information-input {
    height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(21, 54, 94, 0.12);
    background: #f8fbff;
    box-shadow: none;
    padding: 0 16px;
}

.information-input:focus {
    border-color: rgba(0, 123, 255, 0.45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.08);
}

.information-total-box {
    margin: 8px 0 24px;
    padding: 20px 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.information-total-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    color: #617286;
}

.information-total-line strong {
    color: #15365e;
}

.information-total-line.total {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.information-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 4px 0 24px;
}

.information-form .form-check-label {
    margin-bottom: 0;
    color: #617286;
    font-weight: 500;
}

.information-helper-link {
    color: #0f4c9c;
    font-weight: 600;
    text-decoration: none !important;
}

.information-helper-link:hover {
    color: #0056b3;
}

.information-submit {
    min-width: 210px;
    height: 50px;
    padding: 0 28px;
}

@media (max-width: 991.98px) {
    .information-showcase,
    .information-card {
        padding: 38px 28px;
    }
}

@media (max-width: 575.98px) {
    .information-shell {
        border-radius: 22px;
    }

    .information-showcase,
    .information-card {
        padding: 30px 20px;
    }

    .information-title {
        font-size: 1.85rem;
    }

    .information-summary-row,
    .information-total-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .information-form-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .information-submit {
        width: 100%;
    }
}

.w3l-index-block1 img {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    display: block;
}

/* Who We Are Section */
.w3l-who-we-are {
    background-color: #fff;
}

.w3l-who-we-are .head {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.w3l-who-we-are .sub-title {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.w3l-who-we-are p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.w3l-who-we-are img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

/* Attention Box */
.attention-box {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.attention-box strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #533f03;
}

.attention-box::before {
    content: '!';
    position: absolute;
    left: -10px;
    top: -20px;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
    pointer-events: none;
}

/* Services Section */
.w3l-index-block2 {
    background:
        radial-gradient(circle at top left, rgba(0, 123, 255, 0.08), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.services-heading {
    max-width: 760px;
    margin-bottom: 14px;
}

.services-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(0, 123, 255, 0.1);
    color: #0f4c9c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.services-heading .head {
    font-size: 2.45rem;
    font-weight: 700;
    color: #15365e;
    margin-bottom: 12px;
}

.services-intro {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5b6b7e;
}

.services-grid {
    margin-top: 12px;
}

.s-block {
    background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    position: relative;
}

.s-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 48px rgba(15, 23, 42, 0.14);
    border-color: rgba(0, 123, 255, 0.18);
}

.service-card-link {
    height: 100%;
    color: inherit;
    text-decoration: none !important;
    position: relative;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 123, 255, 0.08);
    color: #0f4c9c;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.s-block img {
    border-radius: 16px;
    margin-bottom: 18px;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-title {
    font-size: 1.35rem;
    line-height: 1.35;
    margin-bottom: 14px;
    color: #15365e;
}

.service-copy {
    font-size: 0.96rem;
    color: #627387;
    line-height: 1.8;
    margin-bottom: 22px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f4c9c;
    letter-spacing: 0.03em;
}

.service-cta::after {
    content: "\2192";
    margin-left: 8px;
    transition: transform 0.25s ease;
}

.s-block:hover .service-cta::after {
    transform: translateX(4px);
}

@media (max-width: 767.98px) {
    .services-heading .head {
        font-size: 2rem;
    }

    .services-intro {
        font-size: 0.98rem;
    }

    .s-block img {
        height: 200px;
    }
}

/* Features / Benefits Section */
.w3l-index-block4 {
    background:
        radial-gradient(circle at top right, rgba(0, 123, 255, 0.09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.benefits-heading {
    max-width: 820px;
    margin-bottom: 22px;
}

.benefits-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(0, 123, 255, 0.1);
    color: #0f4c9c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.benefits-heading .head {
    font-size: 2.35rem;
    color: #15365e;
    margin-bottom: 14px;
}

.benefits-intro {
    max-width: 720px;
    margin: 0 auto;
    color: #5b6b7e;
    font-size: 1.03rem;
    line-height: 1.8;
}

.benefits-grid {
    margin-top: 18px;
}

.features15-col-text {
    margin-bottom: 30px;
}

.feature-unit {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding: 26px 22px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.feature-unit:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 48px rgba(15, 23, 42, 0.14);
    border-color: rgba(0, 123, 255, 0.16);
}

.benefits-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 123, 255, 0.03), transparent 45%);
    pointer-events: none;
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 32px;
    border-radius: 999px;
    background: rgba(0, 123, 255, 0.08);
    color: #0f4c9c;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.features15-para img {
    max-width: 54px;
    margin-bottom: 0;
    filter: drop-shadow(0 8px 14px rgba(0,0,0,0.08));
}

.benefit-icon-wrap {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.12) 0%, rgba(0, 123, 255, 0.04) 100%);
    margin-bottom: 18px;
}

.features15-para h6 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    color: #15365e;
}

.benefit-copy {
    margin: 0;
    color: #617286;
    font-size: 0.94rem;
    line-height: 1.75;
}

@media (max-width: 767.98px) {
    .benefits-heading .head {
        font-size: 1.95rem;
    }

    .benefits-intro {
        font-size: 0.98rem;
    }

    .feature-unit {
        padding: 22px 18px;
    }
}

/* Clients Section */
.w3l-index-block6 {
    background-color: #fff;
}

.w3l-index-block6 img {
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 100px; /* Ensure logos are uniform */
    filter: grayscale(100%);
}

.w3l-index-block6 img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Call to Action / Info Section */
.w3l-index-block10 {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #0f4c9c 0%, #007bff 55%, #2a8cff 100%);
}

.w3l-index-block10 .new-block {
    background: transparent;
    padding: 72px 0;
}

.w3l-index-block10 .middle-section {
    background: transparent;
    color: #fff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}

.timebound-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 42px 40px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 50px rgba(8, 34, 74, 0.2);
}

.timebound-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.w3l-index-block10 h2 {
    color: #fff;
    font-size: 2.55rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.w3l-index-block10 p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.timebound-copy {
    max-width: 840px !important;
    line-height: 1.9;
}

.timebound-points {
    margin-top: 18px;
    text-align: left;
}

.timebound-point {
    height: 100%;
    padding: 22px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 30px rgba(8, 34, 74, 0.14);
}

.timebound-point-title {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.timebound-point p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 767.98px) {
    .w3l-index-block10 .new-block {
        padding: 56px 0;
    }

    .timebound-shell {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .w3l-index-block10 h2 {
        font-size: 2rem;
    }

    .w3l-index-block10 p {
        font-size: 0.98rem;
    }
}

/* Footer */
.w3l-market-footer footer.footer-28 {
    background:
        radial-gradient(circle at top left, rgba(0, 123, 255, 0.15), transparent 26%),
        linear-gradient(180deg, #07111f 0%, #040b16 100%) !important;
    color: #c8d4e3;
    padding-top: 46px;
}

.footer-top-panel {
    padding: 22px 0 6px;
}

.footer-brand-box {
    padding: 10px 8px 0 0;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    margin-bottom: 18px;
}

.footer-brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.28);
}

.footer-brand-text {
    color: #fff;
    font-size: 1.22rem;
    font-weight: 700;
}

.footer-brand-copy {
    color: rgba(216, 226, 238, 0.82);
    font-size: 0.98rem;
    line-height: 1.9;
    max-width: 360px;
    margin-bottom: 18px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-list span {
    color: rgba(216, 226, 238, 0.9);
    font-size: 0.92rem;
}

.w3l-market-footer h6.footer-title-28 {
    color: #fff !important;
    font-size: 1.05rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.w3l-market-footer h6.footer-title-28::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #007bff 0%, #60b2ff 100%);
}

.w3l-market-footer .footer-list-28 ul li {
    list-style: none;
    margin-bottom: 11px;
}

.w3l-market-footer .footer-list-28 ul li a {
    color: rgba(216, 226, 238, 0.78) !important;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    padding-left: 0;
    font-size: 0.93rem;
    line-height: 1.6;
}

.w3l-market-footer .footer-list-28 ul li a:hover {
    color: #fff !important;
    padding-left: 5px;
}

.midd-footer-28 {
    margin-top: 32px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-shell {
    padding-top: 8px;
}

.copy-footer-28 {
    margin: 0;
    color: rgba(216, 226, 238, 0.72);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

@media (max-width: 991.98px) {
    .footer-brand-copy {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .w3l-market-footer footer.footer-28 {
        padding-top: 34px;
    }

    .footer-top-panel {
        padding-top: 10px;
    }

    .footer-brand-text {
        font-size: 1.1rem;
    }

    .w3l-market-footer .footer-list-28 {
        margin-top: 32px !important;
    }
}
