:root {
    --cyan: #00c3f5;
    --cyan-dk: #009ec6;
    --orange: #f7941d;
    --navy: #0a0b52;
    --navy2: #0d0e6a;
    --ink: #111827;
    --muted: #6b7280;
    --border: #e5e9f2;
    --surface: #f8fafd;
    --white: #fff;
}

.lbl-corporate {
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9ca3af;
}

/* ══ SECTION ══ */
.section-corporate {
    width: 100%;
    max-width: 1170px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(10, 11, 82, .11);
    position: relative;
    margin: 0 auto;
}

.section-corporate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--cyan) 50%, var(--orange));
}

.section-corporate::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 500px 300px at 92% 60%, rgba(0, 195, 245, .05) 0%, transparent 60%),
        radial-gradient(ellipse 300px 200px at 4% 80%, rgba(247, 148, 29, .04) 0%, transparent 55%);
}

/* ── MAIN ROW ── */
.main-corporate {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: stretch;
}

/* ── LEFT ── */
.left-corporate {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid var(--border);
}

.badge-corporate {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 195, 245, .07);
    border: 1px solid rgba(0, 195, 245, .2);
    border-radius: 100px;
    padding: 5px 14px;
    width: fit-content;
}

.bdot-corporate {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse-corporate 2s ease-in-out infinite;
}

@keyframes pulse-corporate {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.7);
    }
}

.badge-corporate span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cyan-dk);
}

.headline-corporate {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    margin-top: 0px;
    color: var(--navy);
}

.headline-corporate .ora-corporate {
    color: var(--orange);
}

.headline-corporate .grd-corporate {
    background: linear-gradient(90deg, var(--cyan-dk), #0077b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.desc-corporate strong {
    color: var(--ink);
    font-weight: 500;
}

/* key points */
.keypoints-corporate {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.kp-corporate {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 14px;
    color: var(--ink);
    font-weight: 400;
    transition: all .25s;
    cursor: default;
}

.kp-corporate:hover {
    border-color: rgba(0, 195, 245, .3);
    background: rgba(0, 195, 245, .04);
    transform: translateY(-2px);
}

.kp-ico-corporate img {
    /* width: 26px; */
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

/* .ki-b-corporate {
			background: rgba(0, 195, 245, .12);
		}

		.ki-o-corporate {
			background: rgba(247, 148, 29, .12);
		}

		.ki-g-corporate {
			background: rgba(22, 163, 74, .12);
		}

		.ki-p-corporate {
			background: rgba(124, 58, 237, .12);
		} */

/* actions */
.actions-corporate {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* .btn-main-corporate {
			display: inline-flex;
			align-items: center;
			gap: 9px;
			background: linear-gradient(135deg, var(--orange), #ff7000);
			color: var(--white);
			font-family: 'Clash Display', sans-serif;
			font-size: 13.5px;
			font-weight: 600;
			letter-spacing: .03em;
			padding: 14px 24px;
			border-radius: 10px;
			border: none;
			cursor: pointer;
			text-decoration: none;
			box-shadow: 0 6px 20px rgba(247, 148, 29, .38);
			transition: all .3s;
			position: relative;
			overflow: hidden;
		}

		.btn-main-corporate::after {
			content: '';
			position: absolute;
			inset: 0;
			background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
			opacity: 0;
			transition: opacity .3s;
		} */

.btn-main-corporate:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(247, 148, 29, .5);
}

.btn-main-corporate:hover::after {
    opacity: 1;
}

.btn-main-corporate .arr-corporate {
    transition: transform .3s;
}

.btn-main-corporate:hover .arr-corporate {
    transform: translateX(4px);
}

.btn-soft-corporate {
    font-size: 13px;
    /* color: var(--muted); */
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: color .2s;
}

.btn-soft-corporate:hover {
    color: var(--navy);
}

.btn-soft-corporate .arr2-corporate {
    font-size: 11px;
    transition: transform .25s;
}

.btn-soft-corporate:hover .arr2-corporate {
    transform: translateX(3px);
}

/* ── RIGHT: stats panel ── */
.right-corporate {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.right-corporate::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 200px 160px at 50% 0%, rgba(0, 195, 245, .2) 0%, transparent 60%);
    pointer-events: none;
}

.right-corporate::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(0, 195, 245, .12);
    top: -55px;
    right: -45px;
    pointer-events: none;
}

.stat-list-corporate {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.stat-item-corporate {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    cursor: default;
    transition: padding-left .25s;
}

.stat-item-corporate:last-child {
    border-bottom: none;
}

.stat-item-corporate:hover {
    padding-left: 5px;
}

.stat-item-corporate:hover .sn-corporate {
    color: var(--cyan);
}

.sn-corporate {

    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    transition: color .25s;
}

.sn-corporate sup,
.sn-corporate sub {
    font-size: 15px;
}

.sl-corporate {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin-top: 3px;
    line-height: 1.3;
}

.count-corporate {
    display: inline-block;
}

/* ── TRUST BAR ── */
.trust-corporate {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    background: var(--surface);
    padding: 13px 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.t-lbl-corporate {
    font-size: 10px;
    text-transform: uppercase;
    font-size: 13px;
    /* color: var(--muted); */
    flex-shrink: 0;
    white-space: nowrap;
}

.t-div-corporate {
    width: 1px;
    height: 18px;
    background: var(--border);
    flex-shrink: 0;
}

.t-chips-corporate {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    flex: 1;
}

.tchip-corporate {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: default;
    transition: all .2s;
}

.tchip-corporate:hover {
    border-color: rgba(0, 195, 245, .28);
    color: var(--navy);
    transform: translateY(-1px);
}

.tchip-corporate.iso-corporate {
    background: rgba(0, 195, 245, .06);
    border-color: rgba(0, 195, 245, .2);
    color: var(--cyan-dk);
    font-weight: 600;
}

.t-more-corporate {
    font-size: 14px;
    /* color: var(--muted); */
    font-style: italic;
    white-space: nowrap;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp-corporate {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.left-corporate {
    animation: fadeUp-corporate .45s .06s both;
}

.right-corporate {
    animation: fadeUp-corporate .45s .16s both;
}

.trust-corporate {
    animation: fadeUp-corporate .45s .24s both;
}

/* .wa-wrap{
								display:flex;
								justify-content:center;
								align-items:center;
								padding:40px 0;
								background:#f5f7fb;
							} */

.wa-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    background: linear-gradient(180deg, #3ee52d, #1ebc12);
    padding: 5px 16px 5px 16px;
    border-radius: 5px;
    box-shadow:
        0 12px 28px rgba(18, 140, 34, .28),
        inset 0 2px 0 rgba(255, 255, 255, .35);
    overflow: hidden;
    transition: .35s ease;
}

.wa-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 20%,
            rgba(255, 255, 255, .18) 50%,
            transparent 80%);
    transform: translateX(-70%);
    animation: shine 4s linear infinite;
}

.wa-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 18px 38px rgba(18, 140, 34, .35),
        inset 0 2px 0 rgba(255, 255, 255, .4);
}

.wa-icon {
    position: relative;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #6dff5d, #19b40e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 4px 10px rgba(255, 255, 255, .35),
        0 8px 20px rgba(0, 0, 0, .18);
    animation: bounce 2s infinite;
}

.wa-icon i {
    color: #fff;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, .55);
    animation: ripple 2s infinite;
}

.ring2 {
    animation-delay: 1s;
}

.wa-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wa-label {
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
}

.wa-number {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

@keyframes shine {
    100% {
        transform: translateX(220%);
    }
}

@media(max-width:768px) {

    .wa-btn {
        padding: 6px 28px 6px 16px;
        gap: 12px;
    }

    .wa-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .wa-icon i {
        font-size: 20px;
    }

    .wa-number {
        font-size: 14px;
    }

    .wa-label {
        font-size: 14px;
    }
}


/* ── RESPONSIVE ── */
@media(min-width:1200px) {
    .section-corporate {
        width: 1170px !important;
    }
}

@media(min-width:992px) {
    .section-corporate {
        width: 970px;
    }
}

@media(min-width:768px) {
    .section-corporate {
        width: 750px;
    }
}

@media(max-width:780px) {
    .main-corporate {
        grid-template-columns: 1fr;
    }

    .right-corporate {
        flex-direction: row;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .stat-list-corporate {
        flex-direction: row;
        padding: 18px 24px;
        justify-content: space-around;
    }

    .stat-item-corporate {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, .08);
        padding: 0 18px;
        text-align: center;
    }

    .stat-item-corporate:last-child {
        border-right: none;
    }

    .stat-item-corporate:hover {
        padding-left: 0;
    }

    .left-corporate {
        border-right: none;
        padding: 32px 24px;
    }

    .trust-corporate {
        padding: 12px 24px;
    }
}

@media(max-width:480px) {
    .keypoints-corporate {
        flex-direction: column;
    }

    .stat-list-corporate {
        flex-wrap: wrap;
        gap: 6px;
        padding: 14px 18px;
    }

    .stat-item-corporate {
        flex: 1;
        min-width: 80px;
        padding: 8px 8px;
        border-right: none !important;
        text-align: center;
    }
}

/* 21-05-2026 */


/* ===== CTA SECTION ===== */
.fcta-chips {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.fc-chip {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 5px 14px;
    font-size: 14px;
    color: #fff;
}

.ctaa-section {
    background: linear-gradient(135deg, #080848, #20094f, #031856);
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
    padding-top: 30px;
}

.ctaa-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    background: rgba(255, 255, 255, 0.05);
    right: -150px;
}

.ctaa-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -150px;
    background: rgba(255, 255, 255, 0.05);
    left: -150px;
}

.ctas-content {
    text-align: center;
    max-width: 850px;
    margin: auto;
    position: relative;
    z-index: 2;
}



.ctaa-content h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    /* text-transform: uppercase; */
    margin: 0 0 20px;
    text-align: center;
}

.ctaa-content h2 span {
    color: #ff9f1c;
}

.ctaa-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    max-width: 720px;
    margin: auto auto 20px;
    text-align: center;
}

.ctaa-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}


.call-btn {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.35s ease;
}


.call-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.call-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-4px);
}

.call-btn:focus {
    color: #fff;
}

.bottom-text {
    margin-top: 20px;
    font-size: 13px;
    text-align: center;
}

/* ===== Responsive ===== */

@media(max-width:991px) {

    .ctaa-content h2 {
        font-size: 30px;
    }
}

@media(max-width:767px) {


    .ctaa-content h2 {
        font-size: 30px;
    }

    .ctaa-content p {
        font-size: 15px;
    }

    .ctaa-buttons {
        flex-direction: column;
    }

    .demo-btn,
    .call-btn {
        width: 100%;
        justify-content: center;
    }
}


/* Unique Prefix 'wp-' (Workflow Process) used to prevent conflicts */
.wp-section-inner {
    background-image: url('/../upload/img/processbg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.wp-process-container {
    padding: 60px 0;
    background-color: #f8fafc;

}


/* Header Section */
.wp-main-heading-box {
    text-align: center;
    margin-bottom: 60px;
}

.wp-main-heading-box h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
}

.wp-main-heading-box h2 span {
    color: #0070f3;
}

.wp-main-heading-box p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}
.offer-gif {
    width: 40px;
}
/* Steps Flexbox Row */
.wp-steps-flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Unique Card Styling */
.wp-custom-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 10px 30px 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    flex: 1;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 6px solid transparent;
    transition: transform 0.3s ease;
}

.wp-custom-card:hover {
    transform: translateY(-5px);
}

/* Step Badge Code */
.wp-card-badge {
    position: absolute;
    top: -18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Unique Icon Holder */
.wp-icon-holder-circle img {
    width: 50px;
}

.wp-icon-holder-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #f1f5f9;
}

/* Specific Font Awesome 4.7 size handling to prevent layout issues */
.wp-icon-holder-circle i.fa {
    font-size: 28px;
    line-height: 1;
    display: inline-block;
}

/* Typography inside unique card */
.wp-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
}

.wp-card-desc {
    font-size: 14px;
}

/* Custom Separator Arrow */
.wp-step-arrow-icon {
    color: #1b324e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 5px;
    background: #fff;
}

.wp-step-arrow-icon i.fa {
    font-size: 10px;
}

/* --- Color Theme Variations --- */

/* 1. Discover (Blue) */
.wp-step-blue {
    border-bottom-color: #1d4ed8;
}

.wp-step-blue .wp-card-badge {
    background-color: #1d4ed8;
}

.wp-step-blue .wp-icon-holder-circle {
    background-color: #eff6ff;
    color: #1d4ed8;
}

.wp-step-blue .wp-card-title {
    color: #1d4ed8;
}

/* 2. Assess (Green) */
.wp-step-green {
    border-bottom-color: #10b981;
}

.wp-step-green .wp-card-badge {
    background-color: #10b981;
}

.wp-step-green .wp-icon-holder-circle {
    background-color: #ecfdf5;
    color: #10b981;
}

.wp-step-green .wp-card-title {
    color: #10b981;
}

/* 3. Design (Orange) */
.wp-step-orange {
    border-bottom-color: #f59e0b;
}

.wp-step-orange .wp-card-badge {
    background-color: #f59e0b;
}

.wp-step-orange .wp-icon-holder-circle {
    background-color: #fffbeb;
    color: #f59e0b;
}

.wp-step-orange .wp-card-title {
    color: #f59e0b;
}

/* 4. Deliver (Purple) */
.wp-step-purple {
    border-bottom-color: #7c3aed;
}

.wp-step-purple .wp-card-badge {
    background-color: #7c3aed;
}

.wp-step-purple .wp-icon-holder-circle {
    background-color: #f5f3ff;
    color: #7c3aed;
}

.wp-step-purple .wp-card-title {
    color: #7c3aed;
}

/* 5. Measure (Teal) */
.wp-step-teal {
    border-bottom-color: #06b6d4;
}

.wp-step-teal .wp-card-badge {
    background-color: #06b6d4;
}

.wp-step-teal .wp-icon-holder-circle {
    background-color: #ecfeff;
    color: #06b6d4;
}

.wp-step-teal .wp-card-title {
    color: #06b6d4;
}


/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .wp-steps-flex-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .wp-custom-card {
        flex: unset;
        width: calc(33.33% - 30px);
        min-width: 240px;
    }

    .wp-step-arrow-icon {
        display: none;
        /* Hide arrows on tablets to secure proper layout height */
    }
}

@media (max-width: 768px) {
    .wp-custom-card {
        width: calc(50% - 20px);
    }

    .wp-main-heading-box h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .wp-custom-card {
        width: 100%;
    }
}


.call-btn {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.35s ease;
}


.call-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.call-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-4px);
}

.call-btn:focus {
    color: #fff;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.ht-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .35);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.ht-div {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, .15);
}

.ht-stat {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, .65);
}

.ht-stat strong {
    color: #fff;
    font-weight: 600;
}

.deliver-box {
    background: #171d69;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}

.deliver-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.deliver-title img {
    width: 20px;
    margin-right: 12px;
}

.deliver-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    transition: 0.3s;
}

.deliver-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    width: 28px;
    height: 28px;
    background: linear-gradient(180deg, #1fc6ff, #1098ff);
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 28px;
    margin-right: 12px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 4px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin: 0;
}

@media(max-width: 767px) {


    .deliver-box {
        padding: 25px 20px;
    }

    .deliver-title {
        font-size: 26px;
    }

    .step-content h4 {
        font-size: 17px;
    }
}


.mainsection {
    background-image: url('/../upload/img/frombg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.description {
    font-size: 16px;
    margin-bottom: 20px;
}

.feature-box {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    min-height: 250px;
    transition: .3s;
    border: 1px solid #edf0f7;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 25px;
    margin-bottom: 16px;
}

.blue-bg {
    background: #edf3ff;
    color: #2f7cff;
}

.yellow-bg {
    background: #fff7e4;
    color: #ffb400;
}

.green-bg {
    background: #ecfff3;
    color: #2cbf6d;
}

.purple-bg {
    background: #f3ecff;
    color: #8c52ff;
}

.pink-bg {
    background: #ffeef7;
    color: #ff4fa0;
}

.cyan-bg {
    background: #eafcff;
    color: #00b8e6;
}

.feature-box h4 {
    font-size: 18px;
    font-weight: 600;
    /* color: #08104d; */
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 16px;
}

.small-line {
    width: 40px;
    height: 4px;
    border-radius: 20px;
    margin-top: 18px;
}

.line-blue {
    background: #2f7cff;
}

.line-yellow {
    background: #ffb400;
}

.line-green {
    background: #2cbf6d;
}

.line-purple {
    background: #8c52ff;
}

.line-pink {
    background: #ff4fa0;
}

.line-cyan {
    background: #00b8e6;
}

/* Right Form */
.proposal-box {
    background: linear-gradient(135deg, #5319d8, #007bff);
    padding: 20px;
    border-radius: 28px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.proposal-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-size: 30px;
    color: #2f7cff;
    margin-bottom: 25px;
}

.proposal-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 0px;
    color: #fff;
}

.proposal-title span {
    color: #66d3ff;
}

.proposal-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.form-group label {
    font-size: 16px;
    /* text-transform: uppercase; */
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.form-control {
    height: 42px;
    border-radius: 5px;
    border: none;
    box-shadow: none;
    font-size: 14px;
}

textarea.form-control {
    height: 70px;
    resize: none;
    padding-top: 15px;
}

.submit-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #ff7a00, #ffb300);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    transition: .3s;
}

.submit-btn:hover {
    opacity: .9;
}

.bottom-text {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.bottom-text span {
    margin-right: 20px;
}


/* Ultimate Premium Bootstrap 3 Engine Code - No Conflicts */

/* Master Card Box Style */
.ult-stat-card {
    position: relative;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

/* Fluid Horizontal Table Row Emulation for Bootstrap 3 Grid Alignment */
.ult-layout-table {
    display: table;
    width: 100%;
    position: relative;
    z-index: 3;
}

/* Icon Structural Box */
.ult-icon-cell {
    display: table-cell;
    vertical-align: middle;
    width: 64px;
}

.ult-icon-ring img {
    width: 50px;
}

.ult-icon-ring {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    text-align: center;
    transition: all 0.5s ease;
    align-items: center;
    display: flex;
    justify-content: center;
}

.ult-icon-ring i.fa {
    font-size: 24px;
    line-height: 64px;
    color: #ffffff;
    display: block;
    transition: transform 0.4s ease;
}

/* Content Cell */
.ult-text-cell {
    display: table-cell;
    vertical-align: middle;
    padding-left: 18px;
}

/* Typography Big Headings */
.ult-main-digits {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    /* margin-bottom: 4px; */
}

/* Formatted Superscript (+) and Subscript (%) markers */
.ult-main-digits sup {
    font-size: 25px;
    font-weight: 700;
    top: -0.3em;
}

.ult-main-digits sub {
    font-size: 25px;
    font-weight: 600;
    bottom: 0;
    padding-left: 2px;
}

/* Label Paragraph Style */
.ult-main-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.1px;
}

/* Break lines cleanly for specific text grid shapes */
.ult-block {
    display: block;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 2px;
}

/* Premium Ambient Back-Light Shimmer Shape */
.ult-glass-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    z-index: 2;
    transition: all 0.5s ease;
}

/* --- LUXURY DUAL-TONE DIAGONAL GRADIENTS --- */
.ult-gradient-cyan {
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
}

.ult-gradient-green {
    background: linear-gradient(135deg, #15803d 0%, #10b981 100%);
}

.ult-gradient-amber {
    background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
}

.ult-gradient-purple {
    background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
}

/* --- 10/10 INTERACTIVE HOVER KINETICS --- */
.ult-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.ult-stat-card:hover .ult-glass-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    transform: scale(1.2);
}

.ult-stat-card:hover .ult-icon-ring {
    background: #ffffff;
    transform: scale(1.05);
    border-color: #ffffff;
}

.ult-gradient-cyan:hover .ult-icon-ring i.fa {
    color: #0284c7;
}

.ult-gradient-green:hover .ult-icon-ring i.fa {
    color: #15803d;
}

.ult-gradient-amber:hover .ult-icon-ring i.fa {
    color: #b45309;
}

.ult-gradient-purple:hover .ult-icon-ring i.fa {
    color: #6d28d9;
}

/* --- Bootstrap 3 Responsive Scaling Safe Guards --- */
@media (max-width: 1199px) {
    .ult-main-digits {
        font-size: 2.6rem;
    }

    .ult-main-digits sup {
        font-size: 1.5rem;
    }

    .ult-main-digits sub {
        font-size: 1.3rem;
    }
}

@media (max-width: 991px) {
    .ult-stat-card {
        padding: 25px 15px;
    }
}

@media (max-width: 767px) {
    .ult-stat-card {
        margin-bottom: 20px;
    }
}

/* 21-05-2026 */
/* 22-05-2026 */
/* =========================
        SECTION
========================= */


.testimonialsection {
    position: relative;
}


/* =========================
        BOX
========================= */

.testimonial-box {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    min-height: 270px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/* =========================
        TOP AREA
========================= */

.top-area {
    overflow: hidden;
    margin-bottom: 20px;
}

.user-img {
    width: 80px;
    height: 80px;
    float: left;
    margin-right: 12px;
}

.user-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.user-info {
    overflow: hidden;
    padding-top: 8px;
}

.user-info h4 {
    font-size: 16px;
    font-weight: 600;
}

.user-info span {
    font-size: 16px;
}

/* =========================
        CONTENT
========================= */

.content p {
    font-size: 16px;
}



/* =========================
        OWL NAV
========================= */

/* Owl Buttons Show Fix */
/* wrapper */
#testimonial-slider1 {
    position: relative;
    padding-bottom: 60px;
}

/* buttons bottom center */
#testimonial-slider1 .owl-buttons {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

/* button style */
#testimonial-slider1 .owl-theme .owl-controls .owl-buttons div,
#testimonial-slider1 .owl-prev,
#testimonial-slider1 .owl-next {
    position: relative !important;
    display: inline-block !important;

    width: 40px;
    height: 40px;
    line-height: 34px;

    margin: 0 6px;
    border-radius: 8px;

    background: #007bff !important;
    color: #fff !important;
    font-size: 20px;
    opacity: 1 !important;
}

/* reset old position */
#testimonial-slider1 .owl-prev,
#testimonial-slider1 .owl-next {
    left: auto !important;
    right: auto !important;
    top: auto !important;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:767px) {

    .main-title {
        font-size: 28px;
    }

    .testimonial-box {
        min-height: auto;
    }

    .content p {
        font-size: 15px;
        line-height: 26px;
    }

    .user-info h4 {
        font-size: 18px;
        line-height: 24px;
    }

}

/* 22-05-2026 */