:root {
    --blue: #0b2c75;
    --red: #dc2626;
    --bg: #ddd;
}



.soft-contact {
    padding: 80px 0;
    background: var(--bg);
}

.soft-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.soft-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.soft-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 992px) {
    .soft-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .soft-row {
        grid-template-columns: 1fr;
    }
}


.soft-form-card input,
.soft-form-card textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 14px 18px;
    margin-bottom: 15px;
    font-size: 14px;
}

.soft-form-card input:focus,
.soft-form-card textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.soft-form-card textarea {
    border-radius: 18px;
    min-height: 110px;
}

.soft-form-card button {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 34px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.soft-info-card {
    background: var(--blue);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    height: fit-content;
}

.soft-info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.soft-info-card p {
    font-size: 14px;
    line-height: 1.6;
}

.soft-hours {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.soft-hours strong {
    color: #fff;
}

.soft-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.soft-mini {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
}

.soft-mini h4 {
    color: var(--blue);
    font-size: 16px;
    font-weight: 600;
}

.soft-mini p {
    font-size: 13px;
    margin-top: 6px;
}

.soft-map iframe {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    border: none;
}

@media (max-width: 900px) {
    .soft-top {
        grid-template-columns: 1fr;
    }

    .soft-info-grid {
        grid-template-columns: 1fr;
    }
}

.ui-line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(11, 44, 117, .08);
}

.ui-line-left {
    left: 6%;
}

.ui-line-right {
    right: 6%;
}

.ui-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    opacity: .25;
}

.ui-dot-1 {
    top: 120px;
    left: 12%;
}

.ui-dot-2 {
    bottom: 180px;
    right: 14%;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 20px;
    padding-bottom: 14px;
    position: relative;
}

.form-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: var(--blue);
}

.ui-card-accent {
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 80px;
    background: var(--red);
    border-radius: 6px 0 0px 0;
}

.soft-info-card {
    position: relative;
}

.ui-divider {
    display: flex;
    justify-content: center;
    margin: 50px 0 30px;
}

.ui-divider span {
    width: 150px;
    height: 3px;
    background: var(--blue);
    position: relative;
}

.ui-divider span::after {
    content: "";
    position: absolute;
    right: -10px;
    top: -4px;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
}


.soft-card-info {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.soft-card-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.soft-icon {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.soft-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--red);
    stroke-width: 1.8;
    fill: none;
}

.soft-card-item small {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    letter-spacing: .3px;
}

.soft-card-item p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
}

.soft-hours {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    align-items: flex-start;
}

.soft-hours-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.soft-hours-text strong {
    color: var(--red);
    font-size: 13px;
    margin-bottom: 4px;
}

.soft-hours-text span {
    color: #fff;
    line-height: 1.4;
}

.soft-hours .soft-icon svg {
    stroke: var(--red);
    stroke-width: 1.8;
    fill: none;
}

.soft-consent {
    margin: 20px 0 25px;
    font-size: 13px;
    color: #333;
}

.soft-check {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.soft-check input {
    margin-top: 3px;
    width: auto;
}

.soft-legal {
    font-size: 12px;
    color: #555;
}

.soft-legal a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

.soft-legal a:hover {
    text-decoration: underline;
}

/* .rs-breadcrumbs::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(220, 38, 38, .15),
            transparent 40%),
        rgba(11, 44, 117, .75);
    z-index: 1;
} */

.rs-breadcrumbs {
    position: relative;
    overflow: hidden;
}

/* .rs-breadcrumbs::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11, 45, 117, 0.38),
            rgba(11, 45, 117, 0.6));
    z-index: 1;
} */

.rs-breadcrumbs .container {
    position: relative;
    z-index: 2;
}

.rs-breadcrumbs .page-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

.rs-breadcrumbs .breadcrumbs-area li,
.rs-breadcrumbs .breadcrumbs-area a {
    color: rgba(255, 255, 255, .85);
}

.rs-breadcrumbs .breadcrumbs-area a:hover {
    color: var(--red);
}

.wishlist-v2 {
    padding: 80px 0;
    background: #f6f7f9;
}

.wishlist-header h2 {
    font-size: 34px;
    color: var(--blue);
}

.wishlist-header p {
    font-size: 14px;
    color: #666;
    margin-top: 6px;
}

.wishlist-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wishlist-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 25px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.wishlist-item:hover {
    transform: translateY(-2px);
}

.item-left {
    position: relative;
}

.item-left img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    background: #f1f1f1;
}

.remove {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.item-center h4 {
    font-size: 18px;
    color: var(--blue);
    margin-bottom: 6px;
}

.item-center span {
    font-size: 13px;
    color: #777;
}

.meta {
    display: flex;
    gap: 30px;
    margin-top: 16px;
}

.meta small {
    font-size: 12px;
    color: #777;
}

.meta strong {
    display: block;
    margin-top: 4px;
    color: var(--blue);
}

.stock {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.stock.in {
    background: rgba(11, 44, 117, .1);
    color: var(--blue);
}

.item-right {
    text-align: right;
}

.btn-cart {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-clear {
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
}

.wishlist-actions-bar {
    margin-top: 40px;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.wishlist-link {
    display: flex;
    gap: 10px;
}

.wishlist-link input {
    width: 260px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #ccc;
}

.wishlist-link button {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
}

.actions {
    display: flex;
    gap: 14px;
}

@media(max-width: 768px) {
    .wishlist-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .meta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .item-right {
        text-align: center;
    }

    .wishlist-actions-bar {
        flex-direction: column;
    }
}

.wishlist-header {
    margin-bottom: 40px;
    position: relative;
}

.wishlist-badge {
    display: inline-block;
    background: rgba(220, 38, 38, .1);
    color: var(--red);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.wishlist-heading {
    font-size: 38px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.2;
    position: relative;
}

.wishlist-heading span {
    color: var(--red);
}

.wishlist-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--blue);
    margin-top: 14px;
    border-radius: 2px;
    position: relative;
}

.wishlist-heading::before {
    content: "";
    position: absolute;
    left: 84px;
    bottom: -6px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}

.wishlist-subtext {
    margin-top: 14px;
    font-size: 15px;
    color: #666;
    max-width: 420px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .wishlist-heading {
        font-size: 30px;
    }

    .wishlist-subtext {
        font-size: 14px;
    }
}

.acc-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px;
}

.acc-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.acc-tab {
    background: none;
    border: none;
    text-align: left;
    padding: 12px 0;
    font-weight: 500;
    color: #666;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.acc-tab.active {
    color: var(--blue);
    border-color: var(--blue);
    padding: 10px;
}

/* CONTENT */
.acc-panel {
    display: none;
}

.acc-panel.active {
    display: block;
}

.acc-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.addr-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    display: none;
    place-items: center;
    z-index: 1000;
}

.addr-modal-card {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 22px;
    padding: 34px;
    position: relative;
    animation: addrFadeUp .35s ease;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .28);
}

.addr-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #777;
    cursor: pointer;
}

.addr-header h4 {
    font-size: 22px;
    color: var(--blue);
    margin-bottom: 6px;
}

.addr-header p {
    font-size: 13px;
    color: #777;
    margin-bottom: 22px;
}

.addr-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.addr-form textarea {
    grid-column: span 2;
    min-height: 90px;
    resize: none;
}

.addr-form input,
.addr-form textarea,
.addr-form select {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
}

.addr-form input:focus,
.addr-form textarea:focus,
.addr-form select:focus {
    outline: none;
    border-color: var(--blue);
}

.addr-save-btn {
    margin-top: 26px;
    width: 100%;
    background: var(--red);
    color: #fff;
    padding: 14px;
    border-radius: 999px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.addr-save-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, .35);
}

@keyframes addrFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media(max-width:480px) {
    .addr-form {
        grid-template-columns: 1fr;
    }

    .addr-form textarea {
        grid-column: span 1;
    }
}

.acc-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid #eee;
}

.acc-avatar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.acc-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.acc-upload {
    font-size: 13px;
    color: var(--blue);
    border: 1px solid var(--blue);
    padding: 6px 16px;
    border-radius: 999px;
    cursor: pointer;
}

.acc-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

.acc-form input,
.acc-form select,
textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.acc-primary {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
}

.acc-outline {
    border: 1px solid var(--blue);
    background: none;
    padding: 10px 24px;
    border-radius: 999px;
}

.acc-danger {
    margin-top: 15px;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
}

.acc-order {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 14px;
    margin-bottom: 12px;
}

.acc-status {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 999px;
}

.acc-status.done {
    background: rgba(11, 44, 117, .1);
    color: var(--blue);
}

.acc-status.wait {
    background: rgba(220, 38, 38, .1);
    color: var(--red);
}

.acc-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    display: none;
    place-items: center;
}

.acc-modal-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    width: 320px;
    position: relative;
}

.acc-close {
    position: absolute;
    top: 10px;
    right: 14px;
    cursor: pointer;
}

.acc-mobile {
    display: none;
}

@media(max-width:768px) {
    .acc-grid {
        grid-template-columns: 1fr;
    }

    /* .acc-nav {
        display: none;
    } */
     .acc-nav {
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        padding: 12px;
        margin-bottom: 15px;
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0,0,0,.08);
        position: sticky;
        top: 70px; /* adjust if header height differs */
        z-index: 99;
        scrollbar-width: none;
    }

    .acc-nav::-webkit-scrollbar {
        display: none;
    }

    .acc-tab {
        flex: 0 0 auto;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 30px;
        background: #f2f2f2;
        white-space: nowrap;
    }

    .acc-tab.active {
        background: linear-gradient(135deg, #000, #333);
        color: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,.25);
    }

    .acc-mobile {
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #ddd;
        justify-content: space-around;
        padding: 12px;
    }
}

.acc-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.acc-form .acc-full {
    grid-column: span 2;
}

.pw-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    place-items: center;
    z-index: 999;
}

.pw-modal-card {
    background: #fff;
    width: 100%;
    max-width: 380px;
    padding: 34px;
    border-radius: 22px;
    position: relative;
    animation: pwFadeUp .35s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}

.pw-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #777;
    cursor: pointer;
}

.pw-header h4 {
    color: var(--blue);
    font-size: 22px;
    margin-bottom: 6px;
}

.pw-header p {
    font-size: 13px;
    color: #777;
    margin-bottom: 22px;
}

.pw-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pw-form input {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.pw-form input:focus {
    border-color: var(--blue);
    outline: none;
}

.pw-submit {
    margin-top: 22px;
    width: 100%;
    background: var(--red);
    color: #fff;
    padding: 14px;
    border-radius: 999px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.pw-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, .35);
}

@keyframes pwFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.acc-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.address-item {
    position: relative;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #ddd;
    background: #fff;
    transition: .25s ease;
}

.address-item:hover {
    border-color: rgba(11, 44, 117, .3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.address-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.address-item.default {
    border-color: var(--blue);
}

.address-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(11, 44, 117, .12);
    color: var(--blue);
    font-weight: 600;
}

.address-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.address-actions button {
    background: transparent;
    border: 1px solid #ccc;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
}

.address-actions button:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.address-actions .danger {
    border-color: var(--red);
    color: var(--red);
}

.address-actions .danger:hover {
    background: rgba(220, 38, 38, .1);
}

@media(max-width:768px) {
    .address-grid {
        grid-template-columns: 1fr;
    }
}

.order-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.order-stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #eee;
    text-align: center;
}

.order-stat-card span {
    font-size: 13px;
    color: #777;
}

.order-stat-card strong {
    display: block;
    margin-top: 6px;
    font-size: 26px;
    color: var(--blue);
    font-weight: 700;
}

.order-stat-card.progress strong {
    color: #f59e0b;
}

.order-stat-card.completed strong {
    color: #16a34a;
}

.acc-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 14px;
    margin-bottom: 14px;
    background: #fff;
}

.acc-order p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #555;
}

.acc-order small {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.acc-status {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
}

.acc-status.done {
    background: rgba(22, 163, 74, .12);
    color: #16a34a;
}

.acc-status.wait {
    background: rgba(220, 38, 38, .12);
    color: var(--red);
}

.acc-status.running {
    background: rgba(11, 44, 117, .12);
    color: var(--blue);
}

.highlight-order {
    border: 2px dashed rgba(11, 44, 117, .25);
    background: linear-gradient(180deg,
            rgba(11, 44, 117, .04),
            transparent);
    margin-bottom: 30px;
}

.acc-order.running {
    border-color: rgba(11, 44, 117, .35);
}

@media(max-width:768px) {
    .order-stats {
        grid-template-columns: 1fr;
    }
}

.order-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0 20px;
    gap: 14px;
}

.order-filter span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.order-filter select {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #ddd;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
}

.order-filter select:focus {
    outline: none;
    border-color: var(--blue);
}

@media(max-width:576px) {
    .order-filter {
        flex-direction: column;
        align-items: flex-start;
    }
}

.acc-wrap {
    padding: 70px 0;
    background: #f7f8fc;
}

.careers-page {
    padding: 90px 0;
    background: #f8f9fb;
}

.careers-header {
    text-align: center;
    margin: 0 auto 20px;
}

.careers-tag {
    background: rgba(220, 38, 38, .1);
    color: var(--red);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 30px;
}

.careers-header h2 {
    font-size: 36px;
    color: var(--blue);
}

.careers-header p {
    font-size: 15px;
    color: #666;
}

.careers-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 15px;
    border-radius: 12px;
    align-items: flex-start;
}

.careers-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.career-feature {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.career-feature.highlight {
    border-top: 4px solid var(--red);
}

.icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(11, 44, 117, .1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}

.career-feature svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue);
    stroke-width: 1.8;
    fill: none;
}

.career-feature h4 {
    color: var(--blue);
    margin-bottom: 8px;
}

.career-feature p {
    font-size: 14px;
    color: #666;
}

.apply-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-soft {
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #dbe1ea;
    font-size: 14px;
}

.form-soft:focus {
    border-color: var(--blue);
    box-shadow: none;
}

.file-input {
    padding: 9px;
}

.btn-started {
    background: var(--red);
    color: #fff;
    border-radius: 999px;
    padding: 14px;
    font-weight: 600;
    margin-top: 0px;
    border: none;
}

.btn-started:hover {
    background: #c81f1f;
}

.form-check-label a {
    color: var(--blue);
    text-decoration: none;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
}

.form-group input {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 8px 4px;
}

.btn-started {
    margin-top: 25px;
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 999px;
    font-weight: 600;
}

@media(max-width:992px) {
    .careers-layout {
        grid-template-columns: 1fr;
    }

    .careers-features {
        grid-template-columns: 1fr;
    }
}

.apply-heading {
    margin-bottom: 25px;
}

.apply-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(220, 38, 38, .12);
    color: var(--red);
    margin-bottom: 8px;
}

.apply-heading h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 6px;
}

.apply-heading p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.enhanced-card {
    position: relative;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
}

.enhanced-card .icon-wrap {
    transition: transform .35s ease, background .35s ease;
}

.enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .14);
}

.enhanced-card:hover .icon-wrap {
    transform: scale(1.15) rotate(6deg);
    background: rgba(220, 38, 38, .15);
}

.enhanced-card svg {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawIcon 1.2s ease forwards;
}

.enhanced-card:hover .card-shape {
    transform: scale(1.2);
    opacity: .9;
}

.enhanced-card h4 {
    position: relative;
}



.enhanced-card:hover h4::after {
    width: 40px;
}

@keyframes drawIcon {
    to {
        stroke-dashoffset: 0;
    }
}

.blog-grid-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fb;
    overflow: hidden;
}

.blog-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.blog-grid-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.blog-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(220, 38, 38, .12);
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.blog-grid-header h2 {
    font-size: 36px;
    color: var(--blue);
    margin-bottom: 12px;
}

.blog-grid-header p {
    font-size: 15px;
    color: #666;
}

.blog-grid-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    transition: .35s ease;
    animation: fadeUp .8s ease both;
}

.blog-grid-card.delay-1 {
    animation-delay: .15s;
}

.blog-grid-card.delay-2 {
    animation-delay: .3s;
}

.blog-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.blog-card-img {
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--red);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 999px;
}

.blog-card-body {
    padding: 26px;
}

.blog-card-body h3 {
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 10px;
}

.blog-card-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #888;
    margin: 14px 0 18px;
}

.blog-read {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.blog-read:hover {
    text-decoration: underline;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media(max-width:992px) {
    .blog-grid-header h2 {
        font-size: 30px;
    }
}

.blog-card-enhanced {
    position: relative;
    overflow: hidden;
}

.blog-card-enhanced .card-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    transition: .4s ease;
}

.shape-ring {
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(11, 44, 117, .25);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

.blog-card-enhanced * {
    position: relative;
    z-index: 1;
}

.blog-card-enhanced .blog-card-img img {
    transition: transform .6s ease;
}

.blog-card-enhanced:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-enhanced:hover .shape-dot {
    transform: scale(1.2);
    opacity: .9;
}

.blog-card-enhanced:hover .shape-ring {
    transform: rotate(25deg);
}

.blog-card-enhanced h3::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--red);
    margin-top: 8px;
    transition: width .4s ease;
}

.blog-card-enhanced:hover h3::after {
    width: 40px;
}

.blog-hero {
    background: linear-gradient(135deg,
            rgba(11, 44, 117, .95),
            rgba(11, 44, 117, .85));
    padding: 120px 0 90px;
    color: #fff;
}

.blog-pill {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 15px;
}

.blog-hero h1 {
    font-size: 46px;
    max-width: 780px;
    line-height: 1.2;
}

.blog-hero-meta {
    margin-top: 15px;
    font-size: 14px;
    opacity: .85;
    display: flex;
    gap: 20px;
}

.blog-editorial {
    padding: 90px 0;
    background: #fff;
}

.article-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
}

.article-content .lead {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

.article-content h2 {
    font-size: 26px;
    color: var(--blue);
    margin: 40px 0 15px;
}

.article-content p {
    font-size: 18px;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
}

blockquote {
    margin: 50px 0;
    padding-left: 30px;
    border-left: 4px solid var(--red);
    font-size: 20px;
    font-style: italic;
    color: #333;
}

.article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.article-tags a {
    background: #f3f4f8;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 16px;
    text-decoration: none;
    color: #333;
    margin-right: 6px;
}

.article-tags a:hover {
    background: var(--red);
    color: #fff;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #333;
}

.article-share a:hover {
    background: var(--red);
    color: #fff;
}

.blog-aside {
    position: relative;
}

.aside-block {
    margin-bottom: 40px;
}

.aside-block h4 {
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 12px;
}

.aside-block p {
    font-size: 14px;
    color: #666;
}

.aside-block.accent {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 12px;
}

.aside-form input {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
}

.aside-form button {
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 999px;
}

.aside-post {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.aside-post span {
    font-size: 12px;
    color: #888;
}

.aside-post strong {
    display: block;
    font-size: 15px;
    color: var(--blue);
}

@media(max-width:992px) {
    .blog-aside {
        position: relative;
        top: 0;
    }

    .blog-hero h1 {
        font-size: 34px;
    }
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-share span {
    font-size: 16px;
    color: #666;
    margin-right: 6px;
}

.article-share a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: grid;
    place-items: center;
    color: var(--blue);
    transition: all .3s ease;
    text-decoration: none;
}

.article-share a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-2px);
}

.aside-post {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    align-items: center;
    transition: .25s ease;
}

.aside-post:last-child {
    border-bottom: none;
}

.aside-post img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.aside-post-content span {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

.aside-post-content strong {
    font-size: 14px;
    color: var(--blue);
    line-height: 1.4;
    font-weight: 600;
}

.aside-post:hover strong {
    color: var(--red);
}

.aside-post:hover {
    transform: translateX(4px);
}