/*==================================================*
*GENERAL SANS FONT*
*==================================================*/

@font-face {
    font-family: 'General Sans';
    src: url('../fonts/GeneralSans-Variable.woff2') format('woff2');
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}

:root {

    --primary: #1E5AA8;
    --primary-dark: #11448A;
    --primary-light: #EDF5FF;
    --secondary: #2C78E8;
    --white: #ffffff;
    --dark: #172033;
    --text: #212121;
    --border: #E5E7EB;
    --light: #F8FAFD;
    --shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'General Sans', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    transition: .35s;
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button:focus,
.btn:focus,
.form-control:focus,
input:focus {
    box-shadow: none !important;
    outline: none;
}

/* HEADER  */

.main-header {
    position: relative;
    z-index: 9999;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

/* TOP BAR  */

.top-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}

.top-link {
    color: #fff;
    font-weight: 500;
}

.top-link i {
    margin-right: 8px;
}

.top-link:hover {
    color: #fff;
    opacity: .85;
}

.rbi-tag {
    font-weight: 600;
    letter-spacing: .3px;
}

.rbi-tag i {
    margin-right: 8px;
}

/* NAVBAR  */

.logo {
    max-height: 45px;
    transition: .35s;
}

.navbar-nav {
    gap: 14px;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    padding: 10px 18px !important;
    border-radius: 30px;
    transition: .35s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-link.active {
    background: var(--primary-light);
    color: var(--primary);
}


/*==================================================
        PRIMARY BUTTON
==================================================*/

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, #1E5AA8, #2C78E8);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: .35s;
    border: none;
    box-shadow: 0 12px 30px rgba(30, 90, 168, .22);
}

.btn-primary-custom:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(30, 90, 168, .30);
}

.btn-primary-custom i {
    transition: .35s;
}

.btn-primary-custom:hover i {
    transform: translateX(5px);
}

/*==================================================
            MOBILE CALL
==================================================*/

.mobile-call {
    display: flex;
    align-items: center;
}

.mobile-call a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}


/*==================================================
            TOGGLER
==================================================*/

.navbar-toggler {
    padding: 0;
}

.navbar-toggler i {
    font-size: 34px;
    color: var(--primary);
}

/*==================================================
            STICKY HEADER
==================================================*/
.navbar {
    position: relative;
    width: 100%;
    padding: 18px 0;
    transition: .35s;
    background: #fff;
}

.navbar.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: var(--shadow);
}

/*==================================================
            SECTION DEFAULT
==================================================*/
.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.section-text {
    color: var(--text);
    font-size: 16px;
    line-height: 1.9;
}

.navbar-collapse {
    transition: .35s;
}

.navbar-nav .nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    padding: 10px 18px !important;
    border-radius: 30px;
    transition: .35s;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-link.active {
    background: var(--primary);
    color: var(--white) !important;
}

.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.rounded-xl {
    border-radius: 22px;
}

.rounded-xxl {
    border-radius: 30px;
}

.card-box {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    border: 1px solid var(--border);
    transition: .35s;
}

.card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.shadow-soft {
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.bg-light-blue {
    background: var(--primary-light);
}

.text-primary {
    color: var(--primary) !important;
}

.text-dark {
    color: var(--dark) !important;
}

@media (max-width: 991px) {

    .main-header {
        top: 0;
        border-bottom: none;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo {
        max-height: 40px;
    }

}

@media(max-width:767px) {

    .section-title {
        font-size: 30px;
    }

    section {
        padding: 70px 0;
    }

    .card-box {
        padding: 25px;
    }

    .hero-btn-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        padding: 14px 20px;
        justify-content: center;
        font-size: 15px;
    }

    .hero-image-wrapper .floating-card {
        display: none;
    }
}

@media(max-width:575px) {

    .logo {
        max-height: 35px;
    }

    .navbar-toggler i {
        font-size: 30px;
    }

    .mobile-call a {
        width: 40px;
        height: 40px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-text {
        font-size: 14px;
    }

}

@media(min-width:992px) {

    .navbar-nav {
        align-items: center;
        margin-left: auto !important;
        margin-right: 0 !important;
    }

    .navbar-collapse {
        /* justify-content: space-between; */
        justify-content: flex-end;

    }
}

.fade-up {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* Header section css end  */

/* Hero section css start   */

.hero-section {
    min-height: calc(100vh - 100px);
    background: url("../images/home-hero-bg.png") center bottom / 100% 100% no-repeat;
    padding: 70px 0;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(38px, 4.2vw, 64px);
    line-height: 1.12;
    color: var(--dark);
    letter-spacing: -1.5px;
}

.hero-description {
    max-width: 900px;
    color: var(--dark);
    font-size: 16px;
    line-height: 1.5;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.90);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(30, 90, 168, 0.08);
    backdrop-filter: blur(8px);
}

.hero-feature i {
    color: var(--primary);
}

@media (max-width: 767px) {

    .hero-section {
        min-height: 700px;
        background-size: cover;
        background-position: center bottom;
        padding: 45px 0;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-feature {
        font-size: 12px;
    }
}

/* Hero section css end   */
/* About section css start  */
.about-section {
    position: relative;
    min-height: 760px;
    padding: 80px 0 180px;
    background: #fff;
}

.about-wave {
    height: 48%;
    background: url("../images/about-wave-bg.png") center bottom / 100% 100% no-repeat;
    z-index: 0;
    pointer-events: none;
}

.about-section .container {
    z-index: 2;
}

.about-title {
    color: var(--dark);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
}

.about-card {
    position: relative;
    z-index: 2;
    height: 100%;
    border: 1px solid rgba(44, 120, 232, 0.22);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92));
    color: var(--dark);
    font-size: 14px;
    line-height: 1.9;
    box-shadow: 0 10px 35px rgba(30, 90, 168, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(.22, 1, .36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.about-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -100px;
    right: -80px;
    background: rgba(44, 120, 232, 0.12);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: 0.45s ease;
    pointer-events: none;
}

.about-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 120px;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 120, 232, 0.10);
    border-radius: 50%;
    filter: blur(35px);
    opacity: 0;
    transition: 0.45s ease;
    pointer-events: none;
}

.about-card:hover {
    transform: translateY(-12px);
    border-color: rgba(44, 120, 232, 0.55);
    box-shadow: 0 25px 55px rgba(30, 90, 168, 0.13), 0 0 0 1px rgba(44, 120, 232, 0.04);
}

.about-card:hover::before,
.about-card:hover::after {
    opacity: 1;
}

.about-icon {
    position: relative;
    width: 94px;
    height: 94px;
    border-radius: 30px;
    background: linear-gradient(145deg, #2C78E8, #1458B0);
    box-shadow: 0 12px 30px rgba(30, 90, 168, 0.20);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(.22, 1, .36, 1), box-shadow 0.45s ease;
}

.about-icon::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 180px;
    top: -60px;
    left: -100px;
    background: rgba(255, 255, 255, 0.20);
    transform: rotate(25deg);
    transition: 0.6s ease;
    pointer-events: none;
}

.about-card:hover .about-icon {
    transform: translateY(-5px) scale(1.06) rotate(-2deg);
    box-shadow: 0 18px 40px rgba(30, 90, 168, 0.28);
}

.about-card:hover .about-icon::before {
    left: 130px;
}

.about-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.about-decoration,
.about-squiggle {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.about-decoration-left {
    top: 105px;
    left: 15%;
    width: 22px;
}

.about-decoration-right {
    top: 105px;
    right: 15%;
    width: 18px;
}

.about-decoration img,
.about-squiggle img {
    width: 100%;
    height: auto;
    display: block;
}

.about-squiggle-left {
    top: 120px;
    left: 10%;
    width: 38px;
}

.about-squiggle-right {
    top: 120px;
    right: 10%;
    width: 38px;
}

@media (max-width: 991px) {

    .about-section {
        min-height: auto;
        padding: 70px 0 150px;
    }

    .about-wave {
        height: 42%;
    }

    .about-decoration-left {
        left: 6%;
    }

    .about-decoration-right {
        right: 6%;
    }

    .about-squiggle-left {
        left: 10%;
    }

    .about-squiggle-right {
        right: 10%;
    }

}


@media (max-width: 767px) {

    .about-section {
        min-height: auto;
        padding: 55px 0 120px;
    }

    .about-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .about-wave {
        height: 30%;
        background-size: auto 100%;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    .about-card {
        border-radius: 24px;
        font-size: 14px;
        line-height: 1.75;
    }

    .about-icon {
        width: 78px;
        height: 78px;
        border-radius: 24px;
    }

    .about-icon img {
        width: 44px;
        height: 44px;
    }

    .about-decoration-left,
    .about-decoration-right,
    .about-squiggle-left,
    .about-squiggle-right {
        display: none;
    }

}

@media (max-width: 575px) {

    .about-section {
        padding: 45px 0 45px;
    }

    .about-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .about-card {
        padding: 25px !important;
        border-radius: 22px;
    }

    .about-wave {
        height: 25%;
    }

}

/* About section css end  */

/* Our approach section start  */
.principles-section {
    padding: 100px 0;
    background: #f8fbff;
}

.principle-text {
    max-width: 650px;
}

.principle-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    overflow: hidden;
    transition: .35s;
    border: 1px solid #e9eef7;
}

.principle-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(30, 90, 168, .12);
    border-color: var(--primary);
}

.principle-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.principle-icon i {
    font-size: 30px;
    color: var(--primary);
}

.principle-card h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 18px;
    font-weight: 700;
}

.principle-card p {
    line-height: 30px;
    margin-bottom: 30px;
}

@media(max-width:991px) {
    .principle-card {
        padding: 30px;
    }

}

/* Our approach section end  */

/* Mission Vission Support Start    */
.reason-section {
    background: #ffffff;
    position: relative;
}

.reason-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    background: #fff;
    border: 1px solid rgba(30, 90, 168, .08);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .08);
}

.reason-bg-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #dcecff 0%, transparent 70%);
    right: -200px;
    top: -220px;
    opacity: .55;
}

.reason-box1 {
    padding: 70px;
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.left-box {
    border-right: 1px solid rgba(30, 90, 168, .08);
}

.reason-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1E5AA8, #2C78E8);
    color: #fff;
    font-size: 38px;
    margin-bottom: 28px;
    transition: .4s;
}

.reason-box1:hover .reason-icon {
    transform: rotate(-10deg) scale(1.1);
}

.reason-box1 h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.reason-box1 p {
    font-size: 16px;
    line-height: 32px;
    margin: 0;
    color: var(--text);
}

.divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.divider-line {
    width: 2px;
    height: 110px;
    background: linear-gradient(#2C78E8, transparent);
}

.divider-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1E5AA8;
    box-shadow: 0 15px 40px rgba(30, 90, 168, .18);
    margin: 15px 0;
    animation: glow 2.2s infinite;
}

@keyframes glow {

    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(30, 90, 168, .15);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 35px rgba(30, 90, 168, .28);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(30, 90, 168, .15);
    }

}

.reason-box1::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -60px;
    bottom: -60px;
    border-radius: 50%;
    background: rgba(30, 90, 168, .04);
    z-index: 0;
    pointer-events: none;
}

.reason-box1:hover {
    background: #fcfdff;
}

@media(max-width:991px) {

    .reason-wrapper {
        overflow: hidden;
    }

    .reason-box1 {
        padding: 40px;
    }

    .left-box {
        border-right: none;
        border-bottom: 1px solid rgba(30, 90, 168, .08);
    }

    .divider {
        display: none;
    }

    .reason-bg-circle {
        display: none;
    }

    .reason-box1::after {
        display: none;
    }

}

@media(max-width:576px) {
    .reason-box1 {
        padding: 30px;
    }

    .reason-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .reason-box1 h3 {
        font-size: 28px;
    }

    .reason-box1 p {
        font-size: 15px;
        line-height: 28px;
    }

}

/* Mission Vission Support End   */

/* Why Customers Choose Devmuni Section start  */

.why-devmuni-section {
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.bento-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bento-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.bento-row.reverse {
    grid-template-columns: 1fr 2fr;
}

.large-card {
    min-height: 340px;
}

.small-card {
    min-height: 160px;
}

.bento-card:nth-child(1) {
    grid-column: 1;
}

.bento-card:nth-child(2) {
    grid-column: 2;
}

.bento-card:nth-child(3) {
    grid-column: 1;
}

.bento-card:nth-child(4) {
    grid-column: 2;
}

.bento-card:nth-child(1),
.bento-card:nth-child(4) {
    min-height: 278px;
}

.bento-card:nth-child(2),
.bento-card:nth-child(3) {
    min-height: 155px;
    padding: 28px;
}

.bento-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 38px;
    border: 1px solid rgba(30, 90, 168, .08);
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
}

.bento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(30, 90, 168, .12);
}

.bento-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: rgba(30, 90, 168, .05);
    transition: .4s;
}

.bento-card:hover::before {
    transform: scale(1.12);
}

.bento-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, #1E5AA8, #2C78E8);
    transition: .4s;
}

.bento-card:hover::after {
    width: 100%;
}

.bento-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #1E5AA8, #2C78E8);
    color: #fff;
    font-size: 30px;
    margin-bottom: 25px;
    transition: .35s;
}

.bento-card:hover .bento-icon {
    transform: rotate(-8deg) scale(1.08);
}

.bento-card:nth-child(2) .bento-icon,
.bento-card:nth-child(3) .bento-icon {
    width: 58px;
    height: 58px;
    font-size: 24px;
    margin-bottom: 18px;
}

.bento-card span {
    position: absolute;
    right: 27px;
    top: 0px;
    font-size: 52px;
    font-weight: 700;
    color: rgba(30, 90, 168, .09);
    transition: all .4s ease;
    transform-origin: center;
    z-index: 1;
}

.bento-card:hover span {
    font-size: 56px;
    color: var(--primary);
    transform: scale(1.03);
}

.bento-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text);
    line-height: 1.3;
}

.bento-card h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #172033;
    line-height: 1.35;
}

.bento-card p {
    margin: 0;
    color: var(--text);
    line-height: 29px;
    font-size: 16px;
}

.bento-card:nth-child(2) p,
.bento-card:nth-child(3) p {
    line-height: 25px;
    font-size: 16px;
}

@media(max-width:991px) {

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card:nth-child(1),
    .bento-card:nth-child(2),
    .bento-card:nth-child(3),
    .bento-card:nth-child(4) {
        grid-column: auto;
        min-height: auto;
        padding: 30px;
    }

    .bento-row,
    .bento-row.reverse {
        grid-template-columns: 1fr;
    }

    .large-card,
    .small-card {
        min-height: auto;
    }

    .bento-card span {
        font-size: 48px;
    }

}

@media(max-width:576px) {

    .bento-card {
        padding: 25px !important;
    }

    .bento-card h3 {
        font-size: 24px;
    }

    .bento-card h4 {
        font-size: 20px;
    }

    .bento-card p {
        font-size: 14px;
        line-height: 26px;
    }

    .bento-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

}

/* Why Customers Choose Devmuni Section End  */

/* TESTIMONIAL Section start  */

.testimonial-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
            #0f1f3d 0%,
            #1E5AA8 100%);
}

.testimonial-section::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    top: -220px;
    left: -220px;
    pointer-events: none;
}

.testimonial-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    bottom: -180px;
    right: -180px;
    pointer-events: none;
}

.testimonial-section .section-title {
    color: var(--white);
}

.testimonial-section .section-title .text-primary {
    color: #8fc8ff !important;
}

.testimonial-section .section-text {
    color: #fff;
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    max-width: 740px;
    min-height: 374px;
    margin: 0 auto;
    padding: 60px 65px;
    text-align: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 35px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    transition: .45s;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .12);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    right: -100px;
    top: -100px;
    pointer-events: none;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    right: -50px;
    bottom: -130px;
    pointer-events: none;
}

.rating {
    position: relative;
    z-index: 2;
    font-size: 28px;
    color: #FFD54A;
    letter-spacing: 5px;
    margin-bottom: 28px;
}

.review-text {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 auto 35px;
    font-size: 21px;
    line-height: 1.8;
    color: var(--white);
    font-weight: 500;
}

.testimonial-name {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #8fc8ff;
    font-size: 24px;
    font-weight: 700;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .75);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    z-index: 5;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
}

.testimonial-prev {
    left: 0;
    top: 184px;
}

.testimonial-next {
    right: 0;
    top: 184px;
}

.testimonial-arrow:hover {
    background: var(--white);
    color: var(--primary);
    transform:
        translateY(-50%) scale(1.08);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, .20);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 38px;
    position: relative;
    z-index: 4;
}

.person {
    width: 80px;
    height: 80px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .40);
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition:
        transform .35s ease,
        border .35s ease,
        box-shadow .35s ease,
        opacity .35s ease;
}

.person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    transition: .35s;
}

.person:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, .85);
}

.person.active {
    width: 94px;
    height: 94px;
    border: 6px solid #fff;
    box-shadow:

        0 15px 35px rgba(255, 255, 255, .25);

    transform: scale(1.05);
}

.person.active img {
    transform: scale(1.02);
}

/*==================================================*
* MOBILE ARROWS
*==================================================*/

@media (max-width: 991px) {

    .testimonial-wrapper {
        max-width: 850px;
    }

    .testimonial-prev {
        left: 5px;
    }

    .testimonial-next {
        right: 5px;
    }

}

/* TABLET */

@media (max-width: 767px) {

    .testimonial-section {
        padding: 70px 0 !important;
    }

    .testimonial-card {
        min-height: 330px;
        padding: 45px 45px;
        border-radius: 28px;
    }

    .review-text {
        font-size: 17px;
        line-height: 1.75;
    }

    .testimonial-name {
        font-size: 20px;
    }

    .rating {
        font-size: 23px;
        letter-spacing: 3px;
        margin-bottom: 22px;
    }

    .testimonial-arrow {
        width: 48px;
        height: 48px;
        font-size: 23px;
    }

    .testimonial-prev {
        left: 0;
    }

    .testimonial-next {
        right: 0;
    }

    .testimonial-nav {
        gap: 12px;
        margin-top: 30px;
    }

    .person {
        width: 62px;
        height: 62px;
    }

    .person.active {
        width: 76px;
        height: 76px;
        border-width: 5px;
    }

}

/* SMALL MOBILE */


@media (max-width: 575px) {

    .testimonial-card {
        min-height: 365px;
        padding: 40px 35px;
    }

    .review-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .testimonial-arrow {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .testimonial-nav {
        gap: 9px;
    }

    .person {
        width: 52px;
        height: 52px;
    }

    .person.active {
        width: 66px;
        height: 66px;
    }

}

/* TESTIMONIAL Section End  */

/* FAQ Section Start  */
.faq-section {
    background: var(--white);
}

.custom-faq .accordion-item {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 18px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    transition: .35s;
}

.custom-faq .accordion-item:hover {
    transform: translateY(-4px);
}

.custom-faq .accordion-button {
    background: var(--white);
    padding: 22px 26px;
    font-size: 18px;
    font-weight: 600;
    color: #172033;
    box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1E5AA8, #2C78E8);
    color: var(--white);
}

.custom-faq .accordion-button::after {
    transition: .4s;
}

.custom-faq .accordion-body {
    padding: 22px 26px;
    font-size: 15px;
    line-height: 30px;
    color: var(--text);
}

@media(max-width:991px) {

    .custom-faq .accordion-button {
        font-size: 16px;
        padding: 18px 20px;
    }

    .custom-faq .accordion-body {
        padding: 18px 20px;
        line-height: 28px;
    }

}

.custom-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23172033'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: .35s;
}

.custom-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transform: rotate(-180deg);
}

/* FAQ Section End  */

/* Footer section start css  */
.main-footer {
    position: relative;
    background: #07192f;
    color: #fff;
    padding: 90px 0 0;
    overflow: hidden;
}

.main-footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(44, 120, 232, .08);
    border-radius: 50%;
    top: -180px;
    left: -180px;
}

.main-footer::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, .03);
    border-radius: 50%;
    right: -150px;
    bottom: -150px;
}

.main-footer .container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: 170px;
    background: var(--white);
    border-radius: 12px;
    padding: 12px;
}

.footer-desc {
    color: #b6c4d6;
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 0;
}

.footer-widget h5 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
}

.footer-widget h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg, #2c78e8, #64b5ff);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 15px;
}

.footer-widget ul li a {
    color: #b6c4d6;
    text-decoration: none;
    transition: .35s;
    display: inline-block;
}

.footer-widget ul li a:hover {
    color: #fff;
    transform: translateX(8px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 120, 232, .15);
    color: #4aa3ff;
    font-size: 18px;
}

.footer-contact span,
.footer-contact a {
    color: #b6c4d6;
    text-decoration: none;
    line-height: 28px;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0;
}

.footer-bottom p {
    margin: 0;
    color: #9eb0c4;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9eb0c4;
    text-decoration: none;
    transition: .3s;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-company {
    padding-right: 60px;
}

@media(max-width:991.98px) {
    .main-footer {
        padding: 70px 0 0;
    }

    .footer-company {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo {
        margin: auto;
    }

    .footer-widget {
        margin-top: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 15px;

    }

    .footer-bottom {
        text-align: center;
    }

}

@media(max-width:767.98px) {

    .main-footer {
        padding: 60px 0 0;
    }

    .footer-widget h5 {
        font-size: 18px;
    }

    .footer-desc {
        font-size: 14px;
        line-height: 26px;
    }

    .footer-contact i {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 16px;
    }

}

@media(max-width:575.98px) {

    .footer-logo {
        width: 150px;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h5::after {
        left: 50%;
        transform: translateX(-50%);

    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;

    }

    .footer-bottom-links {
        gap: 15px;
    }

}

/* Footer section start css  */

/* About us page start  */
/* About us Hero section start  */
.about-hero {
    min-height: 380px;
    background: #12366b;
    isolation: isolate;
    display: flex;
    align-items: center;
}

.about-hero-bg {
    /* z-index: -2;
    object-fit: cover; */
    object-position: center;
    pointer-events: none;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 47, 96, 0.20), rgba(12, 48, 100, 0.05), rgba(18, 58, 118, 0.18));
    z-index: -1;
    pointer-events: none;
}

.about-hero .container {
    z-index: 2;
}

.about-hero-title {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.about-hero-description {
    max-width: 970px;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 400;
    line-height: 1.35;
}

.about-title-squiggle img {
    width: 115px;
    height: auto;
    display: block;
}

.about-hero-shape,
.about-hero-squiggle {
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.about-hero-circle {
    width: 150px;
    top: -30px;
    left: -30px;
    opacity: 0.45;
}

.about-hero-arrow-left {
    width: 78px;
    top: 66px;
    left: 13%;
    opacity: 0.55;
}

.about-hero-arrow-right {
    width: 82px;
    top: 222px;
    right: 13%;
    opacity: 0.55;
}

.about-hero-circle-right {
    width: 175px;
    right: -30px;
    bottom: -30px;
    opacity: 0.40;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(44, 120, 232, 0.08);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 991px) {

    .about-hero {
        min-height: 360px;
    }

    .about-hero-title {
        font-size: clamp(36px, 5vw, 48px);
    }

    .about-hero-arrow-left {
        left: 7%;
    }

    .about-hero-arrow-right {
        right: 7%;
    }

    .about-hero-circle {
        width: 120px;
    }

    .about-hero-circle-right {
        width: 140px;
    }

}

@media (max-width: 767px) {

    .about-hero {
        min-height: 330px;
    }

    .about-hero-title {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -0.8px;
    }

    .about-hero-description {
        max-width: 90%;
        font-size: 16px;
        line-height: 1.5;
    }


    .about-title-squiggle img {
        width: 90px;
    }

    .about-hero-arrow-left,
    .about-hero-arrow-right {
        display: none;
    }

    .about-hero-circle {
        width: 100px;
        top: -20px;
        left: -25px;
    }

    .about-hero-circle-right {
        width: 110px;
        right: -30px;
        bottom: -15px;
    }

}

@media (max-width: 575px) {

    .about-hero {
        min-height: 310px;
    }

    .about-hero-title {
        font-size: 29px;
    }

    .about-hero-description {
        font-size: 15px;
    }

}

/* About us Hero section end  */

/* WHO WE ARE SECTION  START */

.who-we-are-section {
    background: url("../images/who-we-are-bg.png") center center / cover no-repeat;
}

.who-we-are-image-wrapper {
    width: 100%;
    max-width: 445px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0 0 130px 0;
}

.who-we-are-image-wrapper img {
    object-fit: cover;
    object-position: center;
}

.who-we-are-content {
    max-width: 850px;
}

.who-we-are-title {
    color: var(--dark);
    font-size: clamp(34px, 3vw, 46px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.who-we-are-text {
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
}

.who-we-are-text p {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {

    .who-we-are-section {
        padding: 65px 0;
    }

    .who-we-are-image-wrapper {
        max-width: 400px;
    }

    .who-we-are-content {
        max-width: 100%;
    }

    .who-we-are-title {
        font-size: 38px;
    }

    .who-we-are-text {
        font-size: 16px;
        line-height: 1.65;
    }

}

@media (max-width: 767.98px) {

    .who-we-are-section {
        padding: 55px 0;
    }

    .who-we-are-image-wrapper {
        max-width: 350px;
        border-radius: 0 0 90px 0;
    }

    .who-we-are-content {
        text-align: left;
    }

    .who-we-are-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .who-we-are-text {
        font-size: 15px;
        line-height: 1.7;
    }

}

@media (max-width: 575.98px) {

    .who-we-are-section {
        padding: 45px 0;
    }

    .who-we-are-image-wrapper {
        max-width: 100%;
        border-radius: 0 0 70px 0;
    }

    .who-we-are-title {
        font-size: 29px;
    }

    .who-we-are-text {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* WHO WE ARE SECTION  end */

/* HOW WE WORK SECTION START  */
.how-we-work-section {
    background:
        url("../images/how-we-work-bg.png") center center / cover no-repeat;
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.how-we-work-content {
    width: 100%;
}

.how-we-work-title {
    color: var(--dark);
    font-size: clamp(34px, 3vw, 46px);
    line-height: 1.15;
    letter-spacing: -1px;
}


.how-we-work-description {
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
    max-width: 760px;
}

.how-we-work-image {
    width: 100%;
    aspect-ratio: 1.75 / 1;
    border-radius: 24px;
    background: var(--primary-light);
    overflow: hidden;
}

.how-we-work-image img {
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .6s ease;
}

.how-we-work-image:hover img {
    transform: scale(1.03);
}

.how-we-work-card {
    position: relative;
    padding: 30px 38px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(237, 245, 255, .88));
    border: 1px solid rgba(30, 90, 168, .08);
    box-shadow: 0 18px 45px rgba(30, 90, 168, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.how-we-work-item {
    position: relative;
    display: flex;
    gap: 22px;
    padding: 20px 18px;
    border-radius: 14px;
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), background-color 0.35s ease, box-shadow 0.35s ease;
}

.how-we-work-item+.how-we-work-item {
    border-top: 1px solid rgba(23, 32, 51, .08);
}

.how-we-work-item:hover {
    transform: translateY(-5px);
    background: rgba(237, 245, 255, 0.85);
    box-shadow: 0 12px 28px rgba(30, 90, 168, 0.10);
}

.how-we-work-line {
    flex: 0 0 2px;
    width: 2px;
    min-height: 72px;
    border-radius: 10px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));

    transition:
        width 0.35s ease,
        box-shadow 0.35s ease;
}

.how-we-work-item:hover .how-we-work-line {
    width: 3px;
    box-shadow: 0 0 12px rgba(44, 120, 232, 0.35);
}

.how-we-work-item-content {
    flex: 1;
}

.how-we-work-item-content h3 {
    color: var(--dark);
    font-size: 24px;
    line-height: 1.25;
    transition: color 0.3s ease, transform 0.3s ease;
}

.how-we-work-item:hover .how-we-work-item-content h3 {
    color: var(--primary);
    transform: translateX(3px);
}

.how-we-work-item-content p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.55;
    transition: color 0.3s ease;
}

.how-we-work-item:hover .how-we-work-item-content p {
    color: #253B5A;
}

@media (max-width: 991.98px) {

    .how-we-work-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .how-we-work-title {
        font-size: 38px;
    }

    .how-we-work-description {
        font-size: 16px;
    }

    .how-we-work-card {
        padding: 25px 30px;
    }

    .how-we-work-item-content h3 {
        font-size: 21px;
    }

    .how-we-work-item-content p {
        font-size: 15px;
    }

}

@media (max-width: 767.98px) {

    .how-we-work-section {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .how-we-work-title {
        font-size: 32px;
        letter-spacing: -.5px;
    }

    .how-we-work-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px !important;
    }

    .how-we-work-image {
        aspect-ratio: 1.5 / 1;
    }

    .how-we-work-card {
        padding: 20px 22px;
        border-radius: 20px;
    }

    .how-we-work-item {
        gap: 16px;
        padding: 18px 14;
    }

    .how-we-work-line {
        min-height: 65px;
    }

    .how-we-work-item-content h3 {
        font-size: 19px;
    }

    .how-we-work-item-content p {
        font-size: 14px;
        line-height: 1.6;
    }

}

@media (max-width: 575.98px) {

    .how-we-work-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .how-we-work-title {
        font-size: 29px;
    }

    .how-we-work-description {
        font-size: 14px;
    }

    .how-we-work-image {
        aspect-ratio: 1.4 / 1;
    }

    .how-we-work-card {
        padding: 16px 18px;
        border-radius: 18px;
    }

    .how-we-work-item {
        gap: 13px;
        padding: 16px 12px;
    }

    .how-we-work-item-content h3 {
        font-size: 18px;
    }

    .how-we-work-item-content p {
        font-size: 13.5px;
        line-height: 1.6;
    }

}

/* HOW WE WORK SECTION END  */
/* About us page end  */

/* Contact us page Start */

.contact-section {
    position: relative;
    background: var(--light);
    overflow: hidden;
}

.contact-heading {
    max-width: 900px;
    margin: 0 auto 45px;
}

.contact-title {
    margin: 0;
    color: var(--dark);
    font-size: clamp(34px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.contact-subtitle {
    margin: 12px auto 0;
    max-width: 850px;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.contact-main {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    position: relative;
    padding: 40px 35px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(30, 90, 168, 0.07);
    border: 1px solid rgba(30, 90, 168, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -120px;
    right: -100px;
    border-radius: 50%;
    background: rgba(44, 120, 232, 0.08);
    filter: blur(25px);
    pointer-events: none;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(30, 90, 168, 0.11);
}

.contact-info-title {
    position: relative;
    margin-bottom: 35px;
    color: var(--secondary);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--primary-light);
    color: var(--secondary);
    font-size: 21px;
    transition: transform 0.35s ease, background 0.35s ease;
}

.contact-info-item:hover .contact-info-icon {
    transform: translateY(-3px) scale(1.05);
    background: #e2efff;
}

.contact-info-content {
    padding-top: 2px;
}

.contact-info-content h3 {
    margin: 0 0 5px;
    color: var(--dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.contact-info-content p,
.contact-info-content a {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    text-decoration: none;
}

.contact-info-content a {
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary);
}

.contact-form-card {
    position: relative;
    padding: 28px 28px 25px;
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(30, 90, 168, 0.06);
    border: 1px solid rgba(30, 90, 168, 0.035);
}

.contact-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.upload-icon i {
    font-size: 24px;
    font-weight: 700;
    -webkit-text-stroke: 0.8px currentColor;
}

.contact-field label .optional {
    color: var(--text);
    font-weight: 400;
}

.contact-field .form-control,
.contact-field .form-select {
    width: 100%;
    min-height: 51px;
    padding: 12px 14px;
    border: 1px solid #cbd2df;
    border-radius: 12px;
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 400;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-field .form-control::placeholder {
    color: #a9afb9;
    opacity: 1;
}

.contact-field .form-control:focus,
.contact-field .form-select:focus {
    border-color: var(--secondary);
    background: var(--white);
}

.contact-select-wrapper.select-open::after {
    transform: translateY(-50%) rotate(180deg);
}

.contact-field .form-select {
    cursor: pointer;
}

.contact-message {
    min-height: 115px !important;
    resize: vertical;
}

.contact-upload-box {
    position: relative;
    width: 100%;
    height: 106px;
    min-height: 106px;
    border: 1px dashed rgba(44, 120, 232, 0.45);
    border-radius: 12px;
    background: var(--primary-light);
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.contact-upload-box:hover {
    background: #e7f1ff;
    border-color: var(--secondary);
}

.contact-upload-box input[type="file"] {
    display: none !important;
}

.contact-upload-box .upload-label {
    width: 100%;
    height: 100%;
    min-height: 106px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px;
    margin: 0 !important;
    padding: 12px;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.contact-upload-box .upload-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--primary);
    font-size: 22px;
    line-height: 1;
}

.contact-upload-box .upload-link {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.contact-upload-box .upload-label small {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    color: #4b5563;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
}

.uploaded-file-box {
    position: relative;
    width: 100%;
    padding: 18px 18px 14px;
    border: 1px solid #86efac;
    border-radius: 16px;
    background: #f0fdf4;
    overflow: hidden;
    box-sizing: border-box;
}

.uploaded-file-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: 62px;
    padding-right: 200px;
}

.uploaded-file-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.uploaded-success-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #16a34a;
    border-radius: 50%;
    color: #16a34a;
    font-size: 19px;
    line-height: 1;
}

.uploaded-file-details {
    min-width: 0;
    padding-top: 1px;
}

.uploaded-file-name {
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.uploaded-file-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
}

.upload-success-badge {
    position: absolute;
    top: 1px;
    right: 0;
    padding: 8px 13px;
    border-radius: 20px;
    background: #16a34a;
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.file-action-btn:hover {
    transform: translateY(-2px);
    color: var(--primary);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.10);
}

.file-action-btn.delete:hover {
    color: #dc2626;
}

.upload-progress-wrapper {
    width: 100%;
    margin-top: 2px;
}

.upload-progress {
    width: 100%;
    height: 4px;
    overflow: hidden;
    border-radius: 10px;
    background: #bbf7d0;
}

.upload-progress-bar {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #16a34a;
    transition: width 0.5s ease;
}

.uploaded-file-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 9px;
}

.upload-complete-text {
    color: #16a34a;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.upload-secure-text {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #8a94a3;
    font-size: 10px;
    font-weight: 500;
}

.upload-secure-text i {
    font-size: 10px;
}

.uploaded-file-actions {
    position: absolute;
    right: 14px;
    top: 48px;
    display: flex;
    gap: 5px;
}

.file-action-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.90);
    color: #6b7280;
    font-size: 13px;
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.file-action-btn:hover {
    transform: translateY(-2px);
    background: var(--white);
    color: var(--primary);
}

.file-action-btn.delete:hover {
    color: #dc2626;
}

.contact-submit-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.contact-select-wrapper {
    position: relative;
}

.contact-select-wrapper::after {
    content: "\F282";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-family: "bootstrap-icons";
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.contact-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 42px !important;
}

/* =========================================
   UPLOADED FILE ICON STACK
========================================= */

.uploaded-icon-stack {
    flex: 0 0 34px;
    width: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

/* Success Tick */

.uploaded-icon-stack .uploaded-success-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
}

/* Document Icon */

.uploaded-document-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--white);
    color: var(--primary-dark);
    font-size: 12px;
    line-height: 1;
    position: relative;
    top: -8px;
    left: 8px;
}

@media (max-width: 991.98px) {

    .contact-section {
        padding: 70px 0 80px;
    }

    .contact-heading {
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .contact-title {
        font-size: clamp(32px, 4.5vw, 42px);
    }

    .contact-subtitle {
        font-size: 15px;
        max-width: 700px;
    }

    .contact-info-card {
        padding: 32px 28px;
    }

    .contact-info-title {
        font-size: 23px;
        margin-bottom: 30px;
    }

    .contact-info-item {
        gap: 16px;
        margin-bottom: 25px;
    }

    .contact-form-card {
        padding: 25px;
    }

    .contact-field label {
        font-size: 14px;
    }

    .contact-field .form-control,
    .contact-field .form-select {
        min-height: 50px;
        font-size: 14px;
    }

    .contact-message {
        min-height: 115px !important;
    }

    .contact-upload-box {
        height: 106px;
        min-height: 106px;
    }

    .uploaded-file-box {
        padding: 16px 16px 13px;
    }

    .uploaded-file-top {
        padding-right: 170px;
        min-height: 62px;
    }

    .uploaded-file-name {
        font-size: 15px;
    }

    .uploaded-file-meta {
        font-size: 10px;
    }

    .upload-success-badge {
        padding: 7px 11px;
        font-size: 8px;
    }

    .uploaded-file-actions {
        top: 38px;
        right: 0;
        gap: 6px;
    }

    .file-action-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .uploaded-file-bottom {
        margin-top: 8px;
    }

    .upload-complete-text,
    .upload-secure-text {
        font-size: 9px;
    }

    .contact-submit-wrapper {
        padding-top: 8px;
    }
}

@media (max-width: 767.98px) {

    .contact-section {
        padding: 55px 0 65px;
    }

    .contact-heading {
        margin-bottom: 30px;
        padding: 0 12px;
    }

    .contact-title {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.7px;
    }

    .contact-subtitle {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.65;
    }

    .contact-info-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .contact-info-title {
        margin-bottom: 28px;
        font-size: 22px;
    }

    .contact-info-item {
        gap: 14px;
        margin-bottom: 24px;
    }

    .contact-info-icon {
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        border-radius: 13px;
        font-size: 19px;
    }

    .contact-info-content h3 {
        font-size: 16px;
    }

    .contact-info-content p,
    .contact-info-content a {
        font-size: 13px;
        line-height: 1.55;
    }

    .contact-form-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .contact-field label {
        font-size: 13px;
        margin-bottom: 7px;
    }

    .contact-field .form-control,
    .contact-field .form-select {
        min-height: 48px;
        padding: 11px 13px;
        font-size: 13px;
        border-radius: 10px;
    }

    .contact-message {
        min-height: 110px !important;
    }

    .contact-upload-box {
        width: 100%;
        height: 100px;
        min-height: 100px;
        border-radius: 11px;
    }

    .contact-upload-box .upload-label {
        min-height: 100px;
        padding: 10px;
        gap: 4px;
    }

    .contact-upload-box .upload-icon {
        font-size: 22px;
    }

    .contact-upload-box .upload-link {
        font-size: 13px;
    }

    .contact-upload-box .upload-label small {
        font-size: 10px;
    }

    .uploaded-file-box {
        padding: 15px;
        border-radius: 14px;
    }

    .uploaded-file-top {
        display: flex;
        align-items: flex-start;
        width: 100%;
        padding-right: 0;
        min-height: auto;
    }

    .uploaded-file-left {
        width: 100%;
        gap: 10px;
        min-width: 0;
        padding-right: 0;
    }

    .uploaded-success-icon {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
        font-size: 17px;
    }

    .uploaded-file-details {
        min-width: 0;
        flex: 1;
    }

    .uploaded-file-name {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        line-height: 1.35;
    }

    .uploaded-file-meta {
        margin-top: 4px;
        gap: 4px;
        font-size: 9px;
        line-height: 1.4;
    }

    .upload-success-badge {
        position: static;
        display: inline-flex;
        width: fit-content;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 20px;
        font-size: 8px;
    }

    .uploaded-file-actions {
        position: static;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        margin-top: 10px;
    }

    .file-action-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .upload-progress-wrapper {
        width: 100%;
        margin-top: 12px;
    }

    .upload-progress {
        height: 4px;
    }

    .uploaded-file-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-top: 8px;
    }

    .upload-complete-text,
    .upload-secure-text {
        font-size: 9px;
    }

    .upload-secure-text {
        text-align: right;
    }

    .contact-submit-wrapper {
        padding-top: 8px;
    }

}


@media (max-width: 575.98px) {

    .contact-section {
        padding: 45px 0 55px;
    }

    .contact-heading {
        margin-bottom: 28px;
        padding: 0 10px;
    }

    .contact-title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .contact-subtitle {
        font-size: 13px;
        line-height: 1.6;
    }

    .contact-info-card {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .contact-info-title {
        margin-bottom: 25px;
        font-size: 20px;
    }

    .contact-info-item {
        gap: 12px;
        margin-bottom: 22px;
    }

    .contact-info-icon {
        flex: 0 0 43px;
        width: 43px;
        height: 43px;
        border-radius: 12px;
        font-size: 18px;
    }

    .contact-info-content h3 {
        font-size: 15px;
    }

    .contact-info-content p,
    .contact-info-content a {
        font-size: 12px;
        line-height: 1.5;
    }

    .contact-form-card {
        padding: 18px 15px;
        border-radius: 18px;
    }

    .contact-field label {
        font-size: 13px;
    }

    .contact-field .form-control,
    .contact-field .form-select {
        min-height: 47px;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    .contact-message {
        min-height: 105px !important;
    }

    .contact-upload-box {
        height: 96px;
        min-height: 96px;
    }

    .contact-upload-box .upload-label {
        min-height: 96px;
        padding: 8px;
    }

    .contact-upload-box .upload-icon {
        font-size: 21px;
    }

    .contact-upload-box .upload-link {
        font-size: 13px;
    }

    .contact-upload-box .upload-label small {
        font-size: 9px;
    }

    .uploaded-file-box {
        padding: 13px;
        border-radius: 13px;
    }

    .uploaded-file-top {
        padding-right: 0;
        min-height: auto;
    }

    .uploaded-file-left {
        gap: 8px;
    }

    .uploaded-success-icon {
        flex: 0 0 29px;
        width: 29px;
        height: 29px;
        font-size: 15px;
    }

    .uploaded-file-name {
        max-width: 100%;
        font-size: 13px;
    }

    .uploaded-file-meta {
        font-size: 8.5px;
        gap: 3px;
    }

    .upload-success-badge {
        margin-top: 9px;
        padding: 5px 8px;
        font-size: 7px;
    }

    .uploaded-file-actions {
        margin-top: 8px;
        gap: 5px;
    }

    .file-action-btn {
        width: 29px;
        height: 29px;
        font-size: 12px;
    }

    .upload-progress-wrapper {
        margin-top: 10px;
    }

    .upload-progress {
        height: 3px;
    }

    .uploaded-file-bottom {
        margin-top: 7px;
    }

    .upload-complete-text,
    .upload-secure-text {
        font-size: 8px;
    }

}

@media (max-width: 380px) {

    .contact-title {
        font-size: 25px;
    }

    .contact-subtitle {
        font-size: 12px;
    }

    .contact-info-card {
        padding: 22px 17px;
    }

    .contact-form-card {
        padding: 16px 12px;
    }

    .uploaded-file-box {
        padding: 12px;
    }

    .uploaded-file-name {
        font-size: 12px;
    }

    .uploaded-file-meta {
        font-size: 8px;
    }

    .upload-success-badge {
        font-size: 6.5px;
    }

    .upload-complete-text,
    .upload-secure-text {
        font-size: 7.5px;
    }
}

/* Contact us page End */

/* LSP page start  */
.lsp-page {
    width: 100%;
    min-height: 100vh;
    padding: 70px 24px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 45% at 50% 0%, rgba(235, 244, 255, 0.55) 0%, rgba(245, 249, 253, 0.35) 35%, transparent 70%), linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 55%, #FFFFFF 100%);
}

.lsp-page::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -280px;
    left: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 120, 232, 0.15) 0%, rgba(44, 120, 232, 0.06) 35%, transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}

.lsp-page::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -310px;
    bottom: -320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 90, 168, 0.14) 0%, rgba(44, 120, 232, 0.06) 35%, transparent 72%);
    filter: blur(10px);
    pointer-events: none;
}

.lsp-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image: radial-gradient(rgba(30, 90, 168, 0.10) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.lsp-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(20, 36, 65, 0.18), 0 10px 30px rgba(20, 36, 65, 0.08);
}

.lsp-header {
    min-height: 120px;
    padding: 25px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid #edf0f5;
}

.lsp-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.lsp-brand-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    background: #edf4ff;
    font-size: 21px;
}


.lsp-brand h1 {
    margin: 0;
    color: var(--dark);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.loan112-logo {
    width: 210px;
    height: 72px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 40px;
    background: linear-gradient(135deg, #ffffff, #edf2fb);
    box-shadow: 0 10px 25px rgba(31, 61, 105, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loan112-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(31, 61, 105, 0.14);
}

.loan112-logo img {
    display: block;
    width: auto;
    max-width: 110px;
    height: auto;
    max-height: 38px;
    object-fit: contain;
}

.lsp-content {
    padding: 28px 32px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.lsp-column {
    min-width: 0;
}

.lsp-section-title {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #4e5563;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.lsp-section-title i {
    color: var(--dark);
    font-size: 22px;
}

.lsp-section-title i.bi-cash-stack,
.lsp-section-title i.bi-shield-check {
    -webkit-text-stroke: 0.6px currentColor;
}

.loan-info-card {
    padding: 18px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(244, 246, 253, 0.96), rgba(239, 243, 251, 0.85));
}

.loan-info-card p {
    margin: 0 0 10px;
    display: flex;
    align-items: flex-start;
    color: #454b58;
    font-size: 14px;
    line-height: 1.55;
}


.loan-info-card p:last-child {
    margin-bottom: 0;
}

.loan-info-card strong {
    flex: 0 0 250px;
    color: var(--dark);
    font-weight: 800;
}

.customer-care-card {
    margin-top: 22px;
    padding: 28px 30px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(245, 247, 253, 0.96), rgba(238, 242, 251, 0.88));
    position: relative;
    overflow: hidden;
}

.customer-care-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 120, 232, 0.06), transparent 70%);
    pointer-events: none;
}

.care-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.care-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    background: #D6E3FF;
    font-size: 20px;
}

.care-heading h2 {
    margin: 0 0 2px;
    color: var(--dark);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.care-heading p {
    margin: 0;
    color: #303642;
    font-size: 14px;
    font-weight: 500;
}

.care-contact {
    min-height: 42px;
    margin-top: 12px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}

.care-contact:hover {
    color: var(--primary);
    background: #ffffff;
    transform: translateX(2px);
}

.care-contact i {
    flex-shrink: 0;
    font-size: 16px;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legal-links>a {
    min-height: 45px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245, 247, 253, 0.96), rgba(238, 242, 251, 0.88));
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.legal-links>a:hover {
    transform: translateX(4px);
    border-color: rgba(30, 90, 168, 0.20);
    background: #f5f8ff;
}

.legal-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.legal-left i {
    color: var(--dark);
    font-size: 17px;
    flex-shrink: 0;
}

.legal-left span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.legal-arrow {
    color: #777f8d;
    font-size: 18px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.legal-links>a:hover .legal-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

.grievance-card-lsp {
    margin-top: 22px;
    padding: 28px 30px 30px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(245, 247, 253, 0.96), rgba(238, 242, 251, 0.88));
    position: relative;
    overflow: hidden;
}

.grievance-card-lsp::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -110px;
    top: -110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 120, 232, 0.055), transparent 70%);
    pointer-events: none;
}

.grievance-top-lsp {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.officer-avatar {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #125196, #2372c7);
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(30, 90, 168, 0.20);
}

.officer-info {
    min-width: 0;
}

.officer-info h2 {
    margin: 0 0 2px;
    color: var(--dark);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.officer-info p {
    margin: 0;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 1199.98px) {

    .lsp-page {
        padding: 50px 20px;
    }

    .lsp-header {
        padding: 24px 26px;
    }

    .lsp-content {
        padding: 26px;
        gap: 22px;
    }

    .lsp-brand h1 {
        font-size: 19px;
    }

    .loan112-logo {
        width: 185px;
        height: 66px;
    }

    .loan112-logo img {
        max-width: 140px;
        max-height: 44px;
    }

    .customer-care-card,
    .grievance-card-lsp {
        padding: 24px;
    }

}

@media (max-width: 991.98px) {

    .lsp-page {
        padding: 35px 18px;
    }

    .lsp-container {
        border-radius: 25px;
    }

    .lsp-header {
        min-height: 100px;
        padding: 22px;
    }

    .lsp-brand {
        gap: 12px;
    }

    .lsp-brand-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 19px;
    }

    .lsp-brand h1 {
        font-size: 17px;
    }

    .loan112-logo {
        width: 165px;
        height: 60px;
        padding: 8px 18px;
    }

    .loan112-logo img {
        max-width: 125px;
        max-height: 40px;
    }

    .lsp-content {
        padding: 24px 22px 32px;
        gap: 18px;
    }

    .loan-info-card p {
        font-size: 13px;
    }

    .customer-care-card,
    .grievance-card-lsp {
        padding: 22px;
    }

    .care-heading h2,
    .officer-info h2 {
        font-size: 20px;
    }

}

@media (max-width: 767.98px) {

    .lsp-page {
        min-height: 100vh;
        padding: 18px 10px;
        background: radial-gradient(circle at 0% 5%, rgba(44, 120, 232, 0.15), transparent 35%), radial-gradient(circle at 100% 95%, rgba(30, 90, 168, 0.11), transparent 38%), linear-gradient(145deg, #f7faff 0%, #eef4fc 50%, #f9fbff 100%);
    }

    .lsp-page::before {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -130px;
    }

    .lsp-page::after {
        width: 350px;
        height: 350px;
        right: -180px;
        bottom: -180px;
    }

    .lsp-bg-pattern {
        background-size: 22px 22px;
        opacity: 0.22;
    }

    .lsp-container {
        border-radius: 20px;
    }

    .lsp-header {
        min-height: auto;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .lsp-brand {
        width: 100%;
        align-items: center;
    }

    .lsp-brand-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 18px;
    }

    .lsp-brand h1 {
        font-size: 14px;
        line-height: 1.35;
    }

    .loan112-logo {
        width: 100%;
        height: 60px;
        min-width: 0;
        min-height: 0;
        padding: 8px 20px;
        border-radius: 18px;
    }

    .loan112-logo img {
        width: auto;
        max-width: 145px;
        max-height: 42px;
    }

    .lsp-content {
        padding: 20px 16px 28px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lsp-section-title {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .loan-info-card {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .loan-info-card p {
        font-size: 12px;
        line-height: 1.55;
        display: flex;
        align-items: flex-start;
    }

    .loan-info-card strong {
        flex: 0 0 180px;
    }

    .customer-care-card {
        margin-top: 18px;
        padding: 20px 17px;
        border-radius: 15px;
    }

    .care-heading {
        gap: 11px;
        margin-bottom: 18px;
    }

    .care-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 18px;
    }

    .care-heading h2 {
        font-size: 19px;
    }

    .care-heading p {
        font-size: 12px;
    }

    .care-contact {
        min-height: 40px;
        padding: 0 13px;
        font-size: 11px;
    }

    .care-contact i {
        font-size: 14px;
    }

    .legal-links {
        gap: 8px;
    }

    .legal-links>a {
        min-height: 43px;
        padding: 0 12px;
        border-radius: 12px;
        font-size: 12px;
    }

    .legal-left {
        gap: 8px;
    }

    .legal-left i {
        font-size: 15px;
    }

    .legal-arrow {
        font-size: 16px;
    }

    .grievance-card-lsp {
        margin-top: 18px;
        padding: 20px 17px;
        border-radius: 15px;
    }

    .grievance-top-lsp {
        gap: 11px;
        margin-bottom: 18px;
    }

    .officer-avatar {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 16px;
    }

    .officer-info h2 {
        font-size: 19px;
    }

    .officer-info p {
        font-size: 12px;
    }

}

@media (max-width: 575.98px) {

    .lsp-page {
        padding: 10px 7px;
    }

    .lsp-container {
        border-radius: 17px;
    }

    .lsp-header {
        padding: 15px;
    }

    .lsp-brand {
        gap: 9px;
    }

    .lsp-brand-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
        font-size: 15px;
    }

    .lsp-brand h1 {
        font-size: 12px;
    }

    .loan112-logo {
        width: 100%;
        height: 56px;
        padding: 7px 16px;
        border-radius: 16px;
    }

    .loan112-logo img {
        max-width: 135px;
        max-height: 38px;
    }

    .lsp-content {
        padding: 17px 13px 22px;
        gap: 21px;
    }

    .lsp-section-title {
        font-size: 10px;
    }

    .loan-info-card {
        padding: 14px 12px;
    }

    .loan-info-card p {
        font-size: 11px;
    }

    .loan-info-card strong {
        flex: 0 0 155px;
    }

    .customer-care-card,
    .grievance-card-lsp {
        padding: 17px 14px;

    }

    .care-heading h2,
    .officer-info h2 {
        font-size: 17px;
    }

    .care-heading p,
    .officer-info p {
        font-size: 11px;
    }

    .care-contact {
        min-height: 38px;
        padding: 0 11px;
        font-size: 10px;
    }

    .legal-links>a {
        min-height: 41px;
        padding: 0 10px;
        font-size: 11px;
    }

    .legal-left i {
        font-size: 14px;
    }

    .legal-arrow {
        font-size: 15px;
    }

    .officer-avatar {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
        font-size: 15px;
    }

}

@media (max-width: 380px) {

    .lsp-brand h1 {
        font-size: 11px;
    }

    .loan-info-card p {
        font-size: 10.5px;
    }

    .care-contact {
        font-size: 9.5px;
    }

    .legal-links>a {
        font-size: 10.5px;
    }


    .loan112-logo img {
        max-width: 125px;
        max-height: 35px;
    }

}

/* LSP page end  */

/* Grievance page start  */
.grievance-mechanism-section {
    position: relative;
    padding: 90px 0 120px;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfdff 0%, #ffffff 50%, #fbfdff 100%);
}

.grievance-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image: linear-gradient(rgba(30, 90, 168, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 90, 168, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

.grievance-timeline {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.grievance-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent 0%, rgba(30, 90, 168, 0.22) 4%, rgba(30, 90, 168, 0.22) 96%, transparent 100%);
    pointer-events: none;
}

.grievance-step {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
    align-items: center;
    min-height: 390px;
    margin-bottom: 78px;
}

.grievance-step:last-child {
    margin-bottom: 0;
}

.grievance-side {
    min-width: 0;
}

.grievance-card-side {
    padding-right: 32px;
}

.grievance-step:nth-child(even) .grievance-card-side {
    padding-right: 0;
    padding-left: 32px;
}

.grievance-image-side {
    padding-left: 32px;
}

.grievance-step:nth-child(even) .grievance-image-side {
    padding-left: 0;
    padding-right: 32px;
}

.grievance-card {
    position: relative;
    width: 100%;
    max-width: 410px;
    min-height: 326px;
    margin-left: auto;
    padding: 27px 27px 24px;
    border: 1px solid rgba(30, 90, 168, 0.10);
    border-right: 3px solid #2C78E8;
    border-radius: 15px;
    background: radial-gradient(circle at 100% 0%, rgba(44, 120, 232, 0.07), transparent 32%), #ffffff;
    box-shadow: 0 16px 35px rgba(31, 61, 105, 0.09), 0 4px 12px rgba(31, 61, 105, 0.045);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.grievance-step:nth-child(even) .grievance-card {
    margin-left: 0;
}

.grievance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(31, 61, 105, 0.13), 0 6px 16px rgba(31, 61, 105, 0.06);
}

.grievance-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 17px;
}

.grievance-level {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 21px;
    padding: 0 11px;
    border: 1px solid #4f8ff5;
    border-radius: 50px;
    color: #2872e8;
    background: #f8fbff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.45px;
}

.grievance-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(44, 120, 232, 1);
    border-radius: 7px;
    color: var(--secondary);
    background: #E1ECFA;
    font-size: 22px;
}

.grievance-card h3 {
    margin: 0 0 17px;
    color: #172033;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}

.grievance-contact-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 13px;
}

.grievance-contact-list a,
.grievance-contact-list span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #526071;
    font-size: 15px;
    line-height: 1.4;
    text-decoration: none;
}

.grievance-contact-list a:hover {
    color: #1E5AA8;
    text-decoration: none;
}

.grievance-contact-list i {
    width: 12px;
    flex: 0 0 12px;
    color: #172033;
    font-size: 13px;
}

.grievance-days {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 22px;
    margin-bottom: 11px;
    padding: 0 9px;
    border: 1px solid rgba(44, 120, 232, 1);
    border-radius: 50px;
    color: var(--secondary);
    background: #EDF5FF;
    font-size: 10px;
    font-weight: 600;
}

.grievance-days i {
    color: #1E5AA8;
    font-size: 9px;
}

.grievance-status {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 27px;
    margin-top: 6px;
    padding: 2px 9px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.grievance-status i {
    flex-shrink: 0;
    font-size: 12px;
}

.grievance-warning {
    color: #b77a09;
    background: #fff8e8;
}

.grievance-success {
    color: #22a878;
    background: #eafaf4;
    border: 1px solid rgba(209, 250, 229, 1);
}

.grievance-neutral {
    color: #667085;
    background: #f4f6f8;
    border: 1px solid rgba(226, 232, 240, 1);
}

.grievance-escalate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 28px;
    margin-top: 11px;
    border: 1px solid rgba(239, 91, 91, 0.20);
    border-radius: 6px;
    color: #dc6464;
    background: #fff5f5;
    font-size: 14px;
    font-weight: 700;
}

.grievance-escalate i {
    font-size: 12px;
}

.grievance-image {
    width: 100%;
    max-width: 410px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: #edf4ff;
    box-shadow: 0 12px 30px rgba(31, 61, 105, 0.10);
}


.grievance-step:nth-child(even) .grievance-image {
    margin-left: auto;
}

.grievance-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.grievance-image:hover img {
    transform: scale(1.025);
}

.grievance-center {
    position: relative;
    z-index: 10;
    width: 76px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grievance-node {
    position: relative;
    z-index: 5;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    background: #286fe4;
    box-shadow: 0 0 0 7px rgba(40, 111, 228, 0.09), 0 0 0 3px rgba(40, 111, 228, 0.18), 0 7px 18px rgba(40, 111, 228, 0.24);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.grievance-center::before {
    content: "Complaint Raised";
    position: absolute;
    top: calc(50% + 224px);
    left: 100%;
    z-index: 8;
    transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 85px;
    min-height: 19px;
    padding: 0 13px;
    border: 1px solid rgba(30, 90, 168, 0.28);
    border-radius: 50px;
    color: #1E5AA8;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(30, 90, 168, 0.08);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.grievance-center::after {
    content: "";
    position: absolute;
    top: calc(50% + 228px);
    left: 50%;
    z-index: 7;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #286fe4;
    box-shadow: 0 0 0 2px rgba(40, 111, 228, 0.22);
}


.grievance-step:not(:last-child) .grievance-center .grievance-node::after {
    content: "";
    position: absolute;
    top: calc(100% + 238px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #286fe4;

}

.grievance-step-blue .grievance-card {
    border-right-color: #2C78E8;
}

.grievance-step-navy .grievance-card {
    border-right-color: #212B5E;
}

.grievance-step-navy .grievance-level {
    border-color: #212B5E;
    color: #212B5E;
    background: #F7F8FC;
}

.grievance-step-navy .grievance-card-icon {
    border-color: rgba(33, 43, 94, 0.45);
    color: #212B5E;
    background: #EEF0F8;
}

.grievance-step-navy .grievance-node {
    background: #212B5E;
    box-shadow: 0 0 0 7px rgba(33, 43, 94, 0.09), 0 0 0 3px rgba(33, 43, 94, 0.18), 0 7px 18px rgba(33, 43, 94, 0.24);
}

.grievance-step:nth-child(2) .grievance-center::after {
    background: #212B5E;
    box-shadow: 0 0 0 2px rgba(33, 43, 94, 0.22);
}

.grievance-step:nth-child(2) .grievance-center::before {
    content: "Under Review";
    border-color: rgba(33, 43, 94, 0.28);
    color: #212B5E;
}

.grievance-step:nth-child(2) .grievance-center .grievance-node::after {
    border-top-color: #212B5E;
}

.grievance-step-orange .grievance-card {
    border-right-color: #f3a51d;
}

.grievance-step-orange .grievance-level {
    border-color: #f1ad35;
    color: #e9950d;
}

.grievance-step-orange .grievance-card-icon {
    border-color: rgba(243, 165, 29, 0.45);
    color: #e9950d;
    background: #fffaf0;
}

.grievance-step-orange .grievance-node {
    background: #f3a51d;
    box-shadow: 0 0 0 7px rgba(243, 165, 29, 0.09), 0 0 0 3px rgba(243, 165, 29, 0.18), 0 7px 18px rgba(243, 165, 29, 0.24);
}

.grievance-step:nth-child(3) .grievance-center::before {
    content: "Escalated";
    border-color: rgba(243, 165, 29, 0.35);
    color: #df930d;
}


.grievance-step:nth-child(3) .grievance-center::after {
    background: #f3a51d;
    box-shadow: 0 0 0 2px rgba(243, 165, 29, 0.22);
}

.grievance-step:nth-child(3) .grievance-center .grievance-node::after {
    border-top-color: #f3a51d;
}

.grievance-rbi-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 29px;
    margin-top: 11px;
    border: 1px solid #d69b48;
    border-radius: 6px;
    color: #8f6730;
    background: #fffaf3;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.grievance-rbi-btn:hover {
    color: #8f6730;
    background: #fff6e8;
}

.grievance-step-red .grievance-card {
    border-right-color: #ef4444;
}

.grievance-step-red .grievance-level {
    border-color: #ff7a7a;
    color: #ef4444;
    background: #fff8f8;
}

.grievance-step-red .grievance-card-icon {
    border-color: rgba(239, 68, 68, 0.35);
    color: #ef4444;
    background: #fff5f5;
}

.grievance-step-red .grievance-node {
    background: #ef4444;
    box-shadow: 0 0 0 7px rgba(239, 68, 68, 0.09), 0 0 0 3px rgba(239, 68, 68, 0.18), 0 7px 18px rgba(239, 68, 68, 0.24);
}

.grievance-final-labels {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}


.grievance-external {
    display: inline-flex;
    align-items: center;
    min-height: 19px;
    padding: 0 8px;
    border-radius: 50px;
    color: #ef6a6a;
    background: #ffecec;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.grievance-step:nth-child(4) .grievance-center::before {
    display: none;
}


.grievance-step:nth-child(4) .grievance-center::after {
    display: none;
}

.grievance-step:nth-child(4) .grievance-center .grievance-node::after {
    display: none;
}

.grievance-visit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 35px;
    margin-top: 13px;
    border: 0;
    border-radius: 7px;
    color: #ffffff;
    background: #286fe4;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 7px 15px rgba(40, 111, 228, 0.18);
    transition: 0.3s ease;
}

.grievance-visit-btn:hover {
    color: #ffffff;
    background: #1E5AA8;
    transform: translateY(-1px);
}

.grievance-mechanism-section .bi {
    -webkit-text-stroke: 0.5px currentColor;
}

@media (max-width: 1199.98px) {

    .grievance-timeline {
        max-width: 920px;
    }

    .grievance-step {
        grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr);
        min-height: 370px;
        margin-bottom: 72px;
    }

    .grievance-center {
        width: 68px;
    }

    .grievance-card-side {
        padding-right: 24px;
    }

    .grievance-step:nth-child(even) .grievance-card-side {
        padding-left: 24px;
    }

    .grievance-image-side {
        padding-left: 24px;
    }

    .grievance-step:nth-child(even) .grievance-image-side {
        padding-right: 24px;
    }

    .grievance-card,
    .grievance-image {
        max-width: 390px;
    }

    .grievance-card {
        min-height: 315px;
    }

    .grievance-center::before {
        top: calc(50% + 212px);
        min-width: 85px !important;
    }

    .grievance-center::after {
        top: calc(50% + 218px);
    }

    .grievance-step:not(:last-child) .grievance-center .grievance-node::after {
        top: calc(100% + 228px);
    }

}

@media (max-width: 991.98px) {

    .grievance-mechanism-section {
        padding: 75px 0 90px;
    }

    .grievance-timeline {
        max-width: 760px;
    }

    .grievance-step {
        grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
        min-height: 345px;
        margin-bottom: 65px;
    }

    .grievance-center {
        width: 58px;
    }

    .grievance-card-side {
        padding-right: 18px;
    }

    .grievance-step:nth-child(even) .grievance-card-side {
        padding-left: 18px;
    }

    .grievance-image-side {
        padding-left: 18px;
    }

    .grievance-step:nth-child(even) .grievance-image-side {
        padding-right: 18px;
    }

    .grievance-card,
    .grievance-image {
        max-width: 335px;
    }

    .grievance-card {
        min-height: 295px;
        padding: 23px 21px;
    }

    .grievance-card h3 {
        font-size: 15px;
    }

    .grievance-center::before {
        top: calc(50% + 203px);
        font-size: 6px;
    }

    .grievance-center::after {
        top: calc(50% + 210px);
    }

    .grievance-step:not(:last-child) .grievance-center .grievance-node::after {
        top: calc(100% + 212px);
    }

}

@media (max-width: 767.98px) {

    .grievance-mechanism-section {
        padding: 55px 0 70px;
    }

    .grievance-bg-grid {
        background-size: 42px 42px;
        opacity: 0.25;
    }

    .grievance-timeline {
        width: 100%;
        max-width: 520px;
        padding-left: 30px;
    }

    .grievance-timeline::before {
        left: 13px;
        transform: none;
    }

    .grievance-step {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
        margin-bottom: 65px;
        padding-left: 30px;
    }

    .grievance-center {
        position: absolute;
        left: -33px;
        top: 0;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .grievance-node {
        width: 32px;
        height: 32px;
        border-width: 4px;
        font-size: 8px;
    }

    .grievance-center::before {
        display: none;
    }

    .grievance-center::after {
        display: none;
    }

    .grievance-step:not(:last-child) .grievance-center .grievance-node::after {
        display: none;
    }

    .grievance-card-side,
    .grievance-step:nth-child(even) .grievance-card-side {
        order: 1;
        padding: 0;
    }

    .grievance-image-side,
    .grievance-step:nth-child(even) .grievance-image-side {
        order: 2;
        padding: 18px 0 0;
    }

    .grievance-card {
        width: 100%;
        max-width: none;
        min-height: 0;
        margin: 0;
        padding: 21px 18px;
        border-right-width: 3px;
        border-radius: 14px;
    }

    .grievance-step:nth-child(even) .grievance-card {
        margin: 0;
    }

    .grievance-card-top {
        margin-bottom: 15px;
    }

    .grievance-card h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .grievance-contact-list a,
    .grievance-contact-list span {
        font-size: 9px;
    }

    .grievance-status {
        min-height: 28px;
        font-size: 7.5px;
    }

    .grievance-image {
        width: 100%;
        max-width: none;
        aspect-ratio: 1 / 1;
        border-radius: 14px;
    }

    .grievance-step:not(:last-child)::after {
        content: "Complaint Raised";
        position: absolute;
        left: 43px;
        bottom: -45px;
        transform: none;
        min-width: 86px;
        min-height: 18px;
        padding: 0 10px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border: 1px solid rgba(30, 90, 168, 0.25);
        border-radius: 50px;
        background: #ffffff;
        color: #1E5AA8;
        font-size: 6px;
        font-weight: 700;
        white-space: nowrap;
        box-sizing: border-box;
    }

    .grievance-step:nth-child(2)::after {
        content: "Under Review";
    }

    .grievance-step:nth-child(3)::after {
        content: "Escalated";
        border-color: rgba(243, 165, 29, 0.35);
        color: #df930d;
    }

    .grievance-step:not(:last-child)::before {
        content: "";
        position: absolute;
        left: -16px;
        bottom: -41px;
        transform: translateX(-50%);
        z-index: 5;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 8px solid #286fe4;
    }

    .grievance-step:nth-child(3)::before {
        border-top-color: #f3a51d;
    }

}

@media (max-width: 575.98px) {

    .grievance-mechanism-section {
        padding: 45px 0 60px;
    }

    .grievance-timeline {
        padding-left: 25px;
    }

    .grievance-step {
        padding-left: 25px;
        margin-bottom: 60px;
    }

    .grievance-timeline::before {
        left: 11px;
    }

    .grievance-center {
        left: -30px;
    }

    .grievance-card {
        padding: 18px 15px;
        border-radius: 13px;
    }

    .grievance-card h3 {
        font-size: 15px;
    }

    .grievance-card-icon {
        width: 31px;
        height: 31px;
        font-size: 12px;
    }

    .grievance-level {
        font-size: 7px;
    }

    .grievance-days {
        font-size: 7px;
    }

    .grievance-status {
        min-height: 27px;
        font-size: 7px;
    }

    .grievance-image {
        border-radius: 12px;
    }

    .grievance-step:not(:last-child)::after {
        left: 20px;
        bottom: -43px;
    }

    .grievance-step:not(:last-child)::before {
        left: -13px;
        bottom: -38px;
    }

}

@media (max-width: 380px) {

    .grievance-timeline {
        padding-left: 22px;
    }

    .grievance-step {
        padding-left: 23px;
    }

    .grievance-card {
        padding: 16px 13px;
    }

    .grievance-card h3 {
        font-size: 14px;
    }

    .grievance-contact-list a,
    .grievance-contact-list span {
        font-size: 8.5px;
    }

    .grievance-status {
        font-size: 6.5px;
    }

    .grievance-image {
        border-radius: 11px;
    }

    .grievance-step:not(:last-child)::before {
        left: -11px;
        bottom: -38px;
    }

}

/* Grievance page end  */

/* Privacy policy page start  */
/* .pp-wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 16px 80px;
} */

.pp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 28px 32px;
    margin-bottom: 22px;
}

.pp-card p {
    margin-bottom: 14px;
}

.pp-card p:last-child {
    margin-bottom: 0;
}

.pp-updated {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 14px;
}

.pp-reg-office {
    color: #4B5563;
    font-size: 14.5px;
}

.pp-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.pp-badge-dark {
    display: inline-block;
    background: rgba(255, 255, 255, .16);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.pp-compliance-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pp-compliance-line .pp-badge {
    margin-bottom: 0;
}

.pp-sec-head {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--primary-light);
    padding: 12px 16px;
    border-radius: 10px;
    margin: -4px -6px 4px;
}

.pp-sec-num {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
}

.pp-sec-title {
    margin: 0;
    color: var(--dark);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.pp-sec-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 16px 0 18px;
}

.pp-sub-title {
    margin-top: 18px;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 15.5px;
    font-weight: 700;
}

.pp-sub-title:first-of-type {
    margin-top: 0;
}

.pp-card ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.pp-card ul li {
    position: relative;
    list-style: none;
    margin-bottom: 6px;
    padding-left: 4px;
}

.pp-card ul li::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    left: -14px;
    top: 7px;
    background: var(--primary);
    border-radius: 50%;
}

.pp-panel {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 14.5px;
    padding: 18px 20px;
    border-radius: 10px;
}

.pp-panel strong {
    color: var(--primary-dark);
}

.pp-panel ul {
    margin-bottom: 0;
}

.pp-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14.5px;
}

.pp-muted-note {
    color: #6B7280;
    font-size: 14px;
}

.pp-card-dark {
    margin-bottom: 22px;
    padding: 30px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.pp-card-dark h2 {
    margin-bottom: 12px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .02em;
}

.pp-card-dark p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .9);
}

.pp-officer-box,
.pp-contact-box {
    margin-bottom: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .12);
    border-radius: 10px;
}

.pp-officer-label {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .65);
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pp-officer-name {
    margin-bottom: 2px;
    font-size: 17px;
    font-weight: 700;
}

.pp-officer-role {
    color: rgba(255, 255, 255, .8);
    font-size: 13.5px;
}

.pp-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14.5px;
}

.pp-contact-row:last-child {
    margin-bottom: 0;
}

.pp-contact-row i {
    width: 18px;
    text-align: center;
    color: rgba(255, 255, 255, .85);
}

.pp-fine-print {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    font-style: italic;
}

h1.pp-page-title {
    display: none;
}

.pp-dark-sec-head {
    background: rgba(255, 255, 255, .12);
    margin: -6px -6px 18px;
}

.pp-dark-sec-num {
    background: rgba(255, 255, 255, .18);
    color: var(--white);
}

.pp-dark-sec-title {
    color: var(--white);
}

@media (max-width: 576px) {

    .pp-card,
    .pp-card-dark {
        padding: 20px 18px;
    }

    .pp-sec-head {
        gap: 10px;
        padding: 10px 12px;
        margin: -2px -4px 4px;
    }

    .pp-sec-num {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .pp-sec-title {
        font-size: 15px;
    }

    body {
        font-size: 14.5px;
    }
}

/* Privacy policy page end  */