/* ================================
   RO MODELS SECTION
================================ */

.ro-models-section {
    position: relative;
    overflow: hidden;
}

.ro-model-card {
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e8edf2;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    transition: all 0.35s ease;
}

.ro-model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}


/* Image */

.ro-model-image {
    height: 245px;
    overflow: hidden;
    position: relative;
}

.ro-model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ro-model-card:hover .ro-model-image img {
    transform: scale(1.06);
}


/* Content */

.ro-model-content {
    padding: 25px;
    position: relative;
}

.ro-model-number {
    position: absolute;
    top: -22px;
    right: 22px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;
    border: 1px solid #e3e8ed;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.10);
}

.ro-model-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ro-model-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
}


/* Price */

.ro-price {
    padding: 15px 16px;
    margin-bottom: 20px;

    border-radius: 10px;

    background: #f5f8fa;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ro-price span {
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

.ro-price strong {
    font-size: 21px;
    font-weight: 800;
}


/* Button */

.ro-model-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 100%;

    padding: 13px 20px;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.ro-model-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ro-model-btn:hover i {
    transform: translateX(5px);
}


/* Mobile */

@media (max-width: 767px) {

    .ro-model-image {
        height: 220px;
    }

    .ro-model-content {
        padding: 22px;
    }

    .ro-model-content h3 {
        font-size: 22px;
    }

    .ro-price strong {
        font-size: 19px;
    }
}


/* franchise section  */
/* =========================================
   AMRIT JALAM - FRANCHISE CTA
========================================= */

.amrit-franchise-section {
    padding: 90px 0;
    background: #f5faff;
    position: relative;
    overflow: hidden;
}

.amrit-franchise-box {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 67, 130, 0.12);
    border: 1px solid rgba(0, 102, 204, 0.08);
}

/* LEFT CONTENT */

.amrit-franchise-content {
    padding: 55px 50px;
}

.amrit-franchise-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0878d1;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.amrit-franchise-subtitle i {
    font-size: 17px;
}

.amrit-franchise-content h2 {
    font-size: 43px;
    line-height: 1.15;
    font-weight: 800;
    color: #082b52;
    margin: 0 0 18px;
}

.amrit-franchise-content h2 span {
    display: block;
    color: #0788df;
}

.amrit-franchise-text {
    color: #66788c;
    font-size: 16px;
    line-height: 1.8;
    max-width: 570px;
    margin-bottom: 28px;
}

/* POINTS */

.amrit-franchise-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    margin-bottom: 30px;
}

.amrit-franchise-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amrit-franchise-point>span {
    min-width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf6ff;
    color: #087bd1;
    font-size: 18px;
}

.amrit-franchise-point h4 {
    margin: 0 0 3px;
    font-size: 15px;
    color: #173b60;
    font-weight: 700;
}

.amrit-franchise-point p {
    margin: 0;
    font-size: 12px;
    color: #7b8b9c;
}

/* BUTTONS */

.amrit-franchise-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.amrit-franchise-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 8px;
    background: #087fd3;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.amrit-franchise-btn i {
    transition: transform .3s ease;
}

.amrit-franchise-btn:hover {
    background: #0564aa;
    color: #fff !important;
    transform: translateY(-2px);
}

.amrit-franchise-btn:hover i {
    transform: translateX(5px);
}

.amrit-franchise-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border: 1px solid #087fd3;
    border-radius: 8px;
    color: #087fd3 !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.amrit-franchise-outline:hover {
    background: #087fd3;
    color: #fff !important;
}

/* TAGLINE */

.amrit-franchise-tagline {
    margin-top: 22px;
    color: #087fd3;
    font-size: 13px;
    font-weight: 700;
}

.amrit-franchise-tagline i {
    margin-right: 6px;
}

/* RIGHT IMAGE */

.amrit-franchise-image {
    height: 100%;
    min-height: 570px;
    position: relative;
    overflow: hidden;
}

.amrit-franchise-image>img {
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.amrit-franchise-image:hover>img {
    transform: scale(1.03);
}

/* IMAGE OVERLAY */

.amrit-franchise-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(4, 50, 95, .25),
            transparent 55%);
    pointer-events: none;
}

/* FREE BADGE */

.amrit-franchise-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 2;
    min-width: 125px;
    padding: 13px 16px;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #087fd3;
    color: #fff;
}

.amrit-franchise-badge strong {
    display: block;
    color: #087fd3;
    font-size: 18px;
    line-height: 1;
}

.amrit-franchise-badge small {
    display: block;
    color: #60758b;
    font-size: 9px;
    font-weight: 700;
    margin-top: 3px;
}

/* IMAGE BOTTOM LABEL */

.amrit-franchise-image-text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    padding: 12px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .95);
    color: #123c63;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.amrit-franchise-image-text i {
    color: #087fd3;
    margin-right: 7px;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .amrit-franchise-content {
        padding: 45px 35px;
    }

    .amrit-franchise-content h2 {
        font-size: 36px;
    }

    .amrit-franchise-image {
        min-height: 450px;
    }

    .amrit-franchise-image>img {
        min-height: 450px;
    }
}

@media (max-width: 575px) {

    .amrit-franchise-section {
        padding: 55px 0;
    }

    .amrit-franchise-content {
        padding: 35px 22px;
    }

    .amrit-franchise-content h2 {
        font-size: 30px;
    }

    .amrit-franchise-text {
        font-size: 14px;
    }

    .amrit-franchise-points {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .amrit-franchise-image {
        min-height: 350px;
    }

    .amrit-franchise-image>img {
        min-height: 350px;
    }

    .amrit-franchise-badge {
        top: 15px;
        right: 15px;
    }

    .amrit-franchise-image-text {
        left: 15px;
        bottom: 15px;
        font-size: 12px;
    }
}


/* franchise form section ======================== */
/* =========================================================
   AMRIT JALAM FRANCHISE SECTION
========================================================= */

.amrit-franchise-section {
    position: relative;
    padding: 100px 0;
    background:
        linear-gradient(135deg, #eefaff 0%, #ffffff 48%, #eaf8ff 100%);
    overflow: hidden;
}

.amrit-franchise-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(0, 174, 239, 0.08);
    border-radius: 50%;
    top: -180px;
    left: -150px;
}

.amrit-franchise-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0, 102, 204, 0.06);
    border-radius: 50%;
    right: -120px;
    bottom: -150px;
}

.amrit-franchise-section .container {
    position: relative;
    z-index: 2;
}


/* LEFT CONTENT
--------------------------------------------------------- */

.franchise-content {
    padding-right: 35px;
}

.franchise-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    border-radius: 30px;
    background: #e5f8ff;
    color: #008fd0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.franchise-badge i {
    font-size: 15px;
}

.franchise-content h2 {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 800;
    color: #092c52;
    margin-bottom: 20px;
}

.franchise-content h2 span {
    display: block;
    color: #00a6e8;
}

.franchise-lead {
    max-width: 570px;
    color: #607286;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}


/* OFFER BOX
--------------------------------------------------------- */

.franchise-offer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #0069b7, #00a9e8);
    color: #fff;
    margin-bottom: 28px;
    box-shadow: 0 12px 30px rgba(0, 126, 190, 0.18);
}

.offer-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    font-size: 22px;
}

.franchise-offer strong {
    display: block;
    font-size: 16px;
    letter-spacing: 0.4px;
}

.franchise-offer p {
    margin: 3px 0 0;
    font-size: 13px;
    opacity: .9;
}


/* BENEFITS
--------------------------------------------------------- */

.franchise-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.franchise-benefit {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.franchise-benefit>span {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #d9edf7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009bdc;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 100, 150, .07);
}

.franchise-benefit h4 {
    margin: 0 0 4px;
    color: #123c62;
    font-size: 15px;
    font-weight: 700;
}

.franchise-benefit p {
    margin: 0;
    color: #748596;
    font-size: 12px;
    line-height: 1.5;
}

.franchise-tagline {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #0077b8;
    font-size: 15px;
}

.franchise-tagline i {
    color: #00a6e8;
}


/* =========================================================
   FORM
========================================================= */


/* ==========================================
   FRANCHISE SELECT BOX
   ========================================== */

.amrit-franchise-section .select-box {
    position: relative !important;
    width: 100%;
    height: 50px;
}

/* Main Icon */
.amrit-franchise-section .select-box .select-main-icon {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: auto !important;
    height: auto !important;

    color: #009edb !important;
    font-size: 15px !important;

    z-index: 5 !important;
    pointer-events: none !important;
}


/* Select */
.amrit-franchise-section .select-box select {
    position: relative !important;

    width: 100% !important;
    height: 50px !important;

    display: block !important;

    padding: 0 45px 0 43px !important;

    border: 1px solid #dce8ef !important;
    border-radius: 11px !important;

    background-color: #f8fbfd !important;

    color: #20384e !important;

    font-size: 13px !important;
    font-weight: 400 !important;

    outline: none !important;

    cursor: pointer !important;

    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;

    box-sizing: border-box !important;

    transition: all .3s ease !important;
}


/* Select Placeholder */
.amrit-franchise-section .select-box select:invalid {
    color: #9aa9b5 !important;
}


/* Select Focus */
.amrit-franchise-section .select-box select:focus {
    border-color: #00a6e8 !important;
    background-color: #ffffff !important;

    box-shadow: 0 0 0 3px rgba(0, 166, 232, .08) !important;
}


/* Dropdown Arrow */
.amrit-franchise-section .select-box .select-arrow {
    position: absolute !important;

    left: auto !important;
    right: 16px !important;

    top: 50% !important;
    bottom: auto !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateY(-50%) !important;

    color: #65798a !important;

    font-size: 11px !important;
    line-height: 1 !important;

    z-index: 10 !important;

    pointer-events: none !important;

    display: block !important;
}


/* Hover */
.amrit-franchise-section .select-box:hover select {
    border-color: #00a6e8 !important;
}


/* Selected Option */
.amrit-franchise-section .select-box select option {
    color: #20384e;
    background: #ffffff;
    padding: 10px;
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 575px) {

    .amrit-franchise-section .select-box {
        height: 50px !important;
    }

    .amrit-franchise-section .select-box select {
        height: 50px !important;
        font-size: 13px !important;
    }

    .amrit-franchise-section .select-box .select-main-icon {
        left: 15px !important;
    }

    .amrit-franchise-section .select-box .select-arrow {
        right: 15px !important;
    }
}

.franchise-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 55px rgba(0, 71, 110, 0.13);
    border: 1px solid rgba(0, 155, 220, 0.12);
}

.form-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.form-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0075c9, #00b2ed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 143, 210, .2);
}

.form-top span {
    display: block;
    font-size: 13px;
    color: #0099d5;
    font-weight: 600;
}

.form-top h3 {
    margin: 2px 0 0;
    color: #092c52;
    font-size: 27px;
    font-weight: 800;
}

.form-intro {
    color: #78899a;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 22px;
}


/* FORM GROUP
--------------------------------------------------------- */

.franchise-form-group {
    margin-bottom: 17px;
}

.franchise-form-group label {
    display: block;
    font-size: 13px;
    color: #1b344d;
    font-weight: 700;
    margin-bottom: 7px;
}

.franchise-form-group label span {
    color: #e53935;
}

.franchise-form-group label small {
    color: #9aa8b5;
    font-weight: 400;
}


/* INPUT
--------------------------------------------------------- */

.input-box,
.select-box,
.textarea-box {
    position: relative;
}

.input-box>i,
.select-box>i:first-child,
.textarea-box>i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #009edb;
    font-size: 15px;
    z-index: 2;
}

.input-box input,
.select-box select,
.textarea-box textarea {
    width: 100%;
    border: 1px solid #dce8ef;
    background: #f8fbfd;
    border-radius: 11px;
    outline: none;
    color: #20384e;
    font-size: 13px;
    transition: .3s ease;
}

.input-box input,
.select-box select {
    height: 50px;
    padding: 0 15px 0 43px;
}

.input-box input:focus,
.select-box select:focus,
.textarea-box textarea:focus {
    background: #fff;
    border-color: #00a6e8;
    box-shadow: 0 0 0 3px rgba(0, 166, 232, .08);
}

.input-box input::placeholder,
.textarea-box textarea::placeholder {
    color: #9aa9b5;
}


/* SELECT
--------------------------------------------------------- */

.select-box select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-box .select-arrow {
    left: auto;
    right: 16px;
    color: #718596;
    font-size: 11px;
    pointer-events: none;
}


/* TEXTAREA
--------------------------------------------------------- */

.textarea-box textarea {
    min-height: 90px;
    resize: vertical;
    padding: 14px 15px 14px 43px;
}

.textarea-box>i {
    top: 18px;
    transform: none;
}


/* SUBMIT BUTTON
--------------------------------------------------------- */

.franchise-submit {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #0074c5, #00a9e8);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: .3s ease;
    box-shadow: 0 10px 22px rgba(0, 139, 205, .2);
}

.franchise-submit i {
    transition: .3s ease;
}

.franchise-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 139, 205, .28);
}

.franchise-submit:hover i {
    transform: translateX(5px);
}


/* FORM BOTTOM
--------------------------------------------------------- */

.form-bottom {
    text-align: center;
    margin-top: 15px;
    font-size: 11px;
    color: #8a9aa7;
}

.form-bottom i {
    color: #00a16b;
    margin-right: 5px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .franchise-content {
        padding-right: 10px;
    }

    .franchise-content h2 {
        font-size: 40px;
    }

}

@media (max-width: 991px) {

    .amrit-franchise-section {
        padding: 70px 0;
    }

    .franchise-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .franchise-content h2 {
        font-size: 38px;
    }

}

@media (max-width: 575px) {

    .amrit-franchise-section {
        padding: 50px 0;
    }

    .franchise-content h2 {
        font-size: 31px;
    }

    .franchise-lead {
        font-size: 14px;
    }

    .franchise-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .franchise-offer {
        padding: 14px;
    }

    .franchise-offer strong {
        font-size: 14px;
    }

    .franchise-form-wrapper {
        padding: 22px 17px;
        border-radius: 18px;
    }

    .form-top h3 {
        font-size: 23px;
    }

    .form-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

}




/* quality section ==================================== */
/* =========================================
   AMRIT JALAM - QUALITY SECTION
========================================= */

.aj-quality-section {
    position: relative;
    padding: 100px 0;
    background: #f5faff;
    overflow: hidden;
}

/* Soft background circles */
.aj-quality-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 157, 220, 0.06);
    top: -180px;
    left: -180px;
}

.aj-quality-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(0, 104, 190, 0.05);
    bottom: -160px;
    right: -120px;
}

.aj-quality-section .container {
    position: relative;
    z-index: 2;
}


/* ================= HEADING ================= */

.aj-quality-heading {
    max-width: 850px;
    margin: 0 auto 65px;
}

.aj-quality-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #009bdc;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.aj-quality-subtitle i {
    font-size: 17px;
}

.aj-quality-heading h2 {
    margin: 0 0 18px;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #12304a;
}

.aj-quality-heading h2 span {
    color: #009bdc;
}

.aj-quality-heading p {
    margin: 0 auto;
    max-width: 760px;
    color: #667b8d;
    font-size: 16px;
    line-height: 1.8;
}


/* ================= LEFT CONTENT ================= */

.aj-quality-content {
    padding-right: 40px;
}

.aj-quality-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border-radius: 30px;
    background: #e5f7fd;
    color: #009bdc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.aj-quality-label i {
    font-size: 14px;
}

.aj-quality-content h3 {
    font-size: 38px;
    color: #12304a;
    margin: 0 0 8px;
    font-weight: 700;
}

.aj-quality-content h4 {
    font-size: 23px;
    color: #009bdc;
    margin: 0 0 20px;
    font-weight: 600;
}

.aj-quality-content p {
    color: #65798a;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* ================= BUTTON ================= */

.aj-quality-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, #009bdc, #0068be);
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 125, 190, 0.18);
}

.aj-quality-btn i {
    transition: transform 0.3s ease;
}

.aj-quality-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 125, 190, 0.25);
}

.aj-quality-btn:hover i {
    transform: translateX(5px);
}


/* ================= FEATURE CARDS ================= */

.aj-quality-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.aj-quality-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 17px;
    background: #fff;
    border: 1px solid #e2edf4;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(18, 48, 74, 0.04);
}

.aj-quality-card:hover {
    transform: translateY(-5px);
    border-color: #b8e9f7;
    box-shadow: 0 14px 35px rgba(0, 130, 190, 0.10);
}


/* ICON */

.aj-quality-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f8fd;
    color: #009bdc;
    font-size: 19px;
    transition: all 0.3s ease;
}

.aj-quality-card:hover .aj-quality-icon {
    background: linear-gradient(135deg, #009bdc, #0068be);
    color: #fff;
    transform: rotate(5deg);
}

.aj-quality-card h5 {
    margin: 1px 0 5px;
    font-size: 16px;
    line-height: 1.4;
    color: #12304a;
    font-weight: 700;
}

.aj-quality-card p {
    margin: 0;
    color: #788b9a;
    font-size: 13px;
    line-height: 1.55;
}


/* ================= BOTTOM CTA ================= */

.aj-quality-bottom {
    margin-top: 65px;
    padding: 28px 35px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0068be, #009bdc);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: 0 15px 35px rgba(0, 110, 190, 0.18);
}

.aj-quality-bottom span {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 5px;
}

.aj-quality-bottom h3 {
    margin: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 600;
}

.aj-quality-bottom-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 21px;
    background: #fff;
    color: #0068be !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.aj-quality-bottom-btn:hover {
    background: #eaf9ff;
    transform: translateY(-2px);
}

.aj-quality-bottom-btn i {
    transition: transform 0.3s ease;
}

.aj-quality-bottom-btn:hover i {
    transform: translateX(4px);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .aj-quality-section {
        padding: 75px 0;
    }

    .aj-quality-heading h2 {
        font-size: 36px;
    }

    .aj-quality-content {
        padding-right: 0;
        margin-bottom: 25px;
    }

    .aj-quality-bottom {
        margin-top: 45px;
    }
}

@media (max-width: 767px) {

    .aj-quality-section {
        padding: 60px 0;
    }

    .aj-quality-heading {
        margin-bottom: 40px;
    }

    .aj-quality-heading h2 {
        font-size: 30px;
    }

    .aj-quality-heading p {
        font-size: 14px;
    }

    .aj-quality-content h3 {
        font-size: 30px;
    }

    .aj-quality-content h4 {
        font-size: 20px;
    }

    .aj-quality-features {
        grid-template-columns: 1fr;
    }

    .aj-quality-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
    }

    .aj-quality-bottom h3 {
        font-size: 20px;
    }

    .aj-quality-bottom-btn {
        width: 100%;
        justify-content: center;
    }
}

/* why choose us section =============================== */
/* =========================================
   AMRIT JALAM - WHY CHOOSE US
========================================= */

.aj-why-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.aj-why-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(0, 157, 220, 0.045);
    top: -220px;
    right: -150px;
}

.aj-why-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 104, 190, 0.035);
    bottom: -150px;
    left: -120px;
}

.aj-why-section .container {
    position: relative;
    z-index: 2;
}


/* ================= HEADING ================= */

.aj-why-heading {
    max-width: 800px;
    margin: 0 auto 60px;
}

.aj-why-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #009bdc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.aj-why-subtitle i {
    font-size: 16px;
}

.aj-why-heading h2 {
    margin: 0 0 15px;
    color: #12304a;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
}

.aj-why-heading h2 span {
    color: #009bdc;
}

.aj-why-heading p {
    max-width: 700px;
    margin: auto;
    color: #6d8191;
    font-size: 16px;
    line-height: 1.8;
}


/* ================= LEFT MAIN CARD ================= */

.aj-why-main-card {
    position: relative;
    padding: 42px 38px;
    min-height: 450px;
    border-radius: 18px;
    background: linear-gradient(145deg, #0068be, #009bdc);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 105, 185, 0.18);
}

.aj-why-main-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    right: -80px;
    top: -80px;
}

.aj-why-main-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    right: -50px;
    top: -50px;
}

.aj-why-water-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 27px;
    margin-bottom: 25px;
}

.aj-why-small-title {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.aj-why-main-card h3 {
    color: #fff;
    font-size: 34px;
    line-height: 1.25;
    margin: 12px 0 18px;
    font-weight: 700;
}

.aj-why-main-card>p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 430px;
}


/* STAT */

.aj-why-stat {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.aj-why-stat-icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #009bdc;
}

.aj-why-stat strong {
    display: block;
    color: #fff;
    font-size: 15px;
}

.aj-why-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-top: 3px;
}


/* ================= RIGHT CARDS ================= */

.aj-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.aj-why-card {
    display: flex;
    gap: 16px;
    padding: 25px 20px;
    background: #fff;
    border: 1px solid #e5edf3;
    border-radius: 12px;
    transition: all 0.35s ease;
}

.aj-why-card:hover {
    transform: translateY(-6px);
    border-color: #a9e4f5;
    box-shadow: 0 15px 35px rgba(0, 115, 180, 0.10);
}

.aj-why-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf8fd;
    color: #009bdc;
    font-size: 19px;
    transition: all 0.3s ease;
}

.aj-why-card:hover .aj-why-icon {
    background: linear-gradient(135deg, #009bdc, #0068be);
    color: #fff;
}

.aj-why-card h4 {
    margin: 0 0 7px;
    color: #12304a;
    font-size: 16px;
    font-weight: 700;
}

.aj-why-card p {
    margin: 0;
    color: #758897;
    font-size: 13px;
    line-height: 1.6;
}


/* ================= BOTTOM CTA ================= */

.aj-why-bottom {
    margin-top: 55px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 12px;
    background: #f0f9fd;
    border: 1px solid #d7edf5;
}

.aj-why-bottom-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #009bdc, #0068be);
    color: #fff;
    font-size: 21px;
}

.aj-why-bottom-content {
    flex: 1;
}

.aj-why-bottom-content span {
    display: block;
    color: #009bdc;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin-bottom: 3px;
}

.aj-why-bottom-content h3 {
    margin: 0;
    color: #12304a;
    font-size: 21px;
    font-weight: 700;
}

.aj-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 21px;
    border-radius: 6px;
    background: #0068be;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.aj-why-btn:hover {
    background: #009bdc;
    transform: translateY(-2px);
}

.aj-why-btn i {
    transition: transform 0.3s ease;
}

.aj-why-btn:hover i {
    transform: translateX(4px);
}


/* ================= TABLET ================= */

@media (max-width: 991px) {

    .aj-why-section {
        padding: 75px 0;
    }

    .aj-why-heading h2 {
        font-size: 36px;
    }

    .aj-why-main-card {
        min-height: auto;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .aj-why-section {
        padding: 60px 0;
    }

    .aj-why-heading {
        margin-bottom: 40px;
    }

    .aj-why-heading h2 {
        font-size: 30px;
    }

    .aj-why-heading p {
        font-size: 14px;
    }

    .aj-why-main-card {
        padding: 30px 25px;
        border-radius: 14px;
    }

    .aj-why-main-card h3 {
        font-size: 28px;
    }

    .aj-why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .aj-why-card {
        padding: 20px 17px;
    }

    .aj-why-bottom {
        flex-wrap: wrap;
        padding: 22px;
    }

    .aj-why-bottom-content {
        min-width: calc(100% - 75px);
    }

    .aj-why-btn {
        width: 100%;
        justify-content: center;
    }
}