* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1280px;
    }
}

/* =========================================
    Header Main Structure
    ========================================= */
.mrcomp-header {
    background-color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

/* Custom alignment for bootstrap row */
.mrcomp-row-align {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================================
    Logo Styling
    ========================================= */
.mrcomp-logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.mrcomp-logo-wrap img {
    width: 265px;
}

.mrcomp-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #173b9e;
    /* Dark Blue */
    letter-spacing: -0.5px;
}

/* =========================================
    Desktop Navigation
    ========================================= */
.mrcomp-desktop-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.mrcomp-desktop-nav a {
    text-decoration: none;
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

/* Underline animation */
.mrcomp-desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1a37b4;
    transition: width 0.3s ease;
}

.mrcomp-desktop-nav a:hover {
    color: #1a37b4;
}

.mrcomp-desktop-nav a:hover::after {
    width: 100%;
}

/* =========================================
    Header Right Actions (Btn + Toggle)
    ========================================= */
.mrcomp-action-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

/* CTA Button */
.mrcomp-btn-primary {
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mrcomp-btn-primary i {
    transition: transform 0.3s ease;
}

.mrcomp-btn-primary:hover {
    background-color: #1e45c7;
    box-shadow: 0 6px 15px rgba(43, 92, 246, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.mrcomp-btn-primary:hover i {
    transform: translateX(4px);
}

/* Mobile Toggle Icon */
.mrcomp-menu-toggle {
    background: none;
    border: none;
    font-size: 26px;
    color: #173b9e;
    cursor: pointer;
    display: none;
    /* Hidden on desktop */
    transition: transform 0.3s ease;
    padding: 5px;
}

/* =========================================
    Right Slide Mobile Menu & Overlay
    ========================================= */
.mrcomp-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mrcomp-menu-overlay.mrcomp-active {
    opacity: 1;
    visibility: visible;
}

.mrcomp-side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    /* Hidden to the right */
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    /* Smooth slide */
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
}

.mrcomp-side-menu.mrcomp-active {
    transform: translateX(-320px);
    /* Slide in */
}

/* Side Menu Header (Close Btn) */
.mrcomp-side-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.mrcomp-close-menu {
    background: rgba(23, 59, 158, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: #173b9e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mrcomp-close-menu:hover {
    background: #173b9e;
    color: #ffffff;
    transform: rotate(90deg);
}

/* Side Menu Links */
.mrcomp-side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mrcomp-side-menu a {
    text-decoration: none;
    color: #111111;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.mrcomp-side-menu a:hover {
    color: #2b5cf6;
    padding-left: 10px;
    /* Slight push effect on hover */
}

/* =========================================
    Popup / Modal CSS
    ========================================= */
.mrcomp-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mrcomp-modal-wrapper.mrcomp-active {
    opacity: 1;
    visibility: visible;
}

.mrcomp-modal-box {
    background-color: #ffffff;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Pop effect */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mrcomp-modal-wrapper.mrcomp-active .mrcomp-modal-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.mrcomp-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mrcomp-modal-close:hover {
    color: #ff3333;
}

.mrcomp-modal-box h3 {
    color: #173b9e;
    font-size: 24px;
    margin-bottom: 15px;
}

.mrcomp-modal-box p {
    color: #555;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Demo form inside modal */
.mrcomp-form-input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.mrcomp-form-input:focus {
    border-color: #173b9e;
}

.mrcomp-btn-submit {
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0px auto;
    justify-content: center;
}
.cont_mail{
      text-align: center;
    margin-bottom: 0px !important;
    margin-top: 15px;
}
.mrcomp-btn-submit:hover {
    background-color: #2b5cf6;
}

/* =========================================
    Responsive Rules (Custom Breakpoints)
    ========================================= */
/* Desktop hiding elements */
@media (max-width: 1200px) {
    .mrcomp-desktop-nav ul {
        gap: 16px;
    }

    .mrcomp-desktop-nav a {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .mrcomp-menu-toggle {
        display: none;
    }
}

/* Tablet & Mobile (Hide Desktop Nav, Show Toggle) */
@media (max-width: 991px) {
    .mrcomp-desktop-nav {
        display: none;
    }

    .mrcomp-menu-toggle {
        display: block;
    }

    /* Make button slightly smaller on tablet */
    .mrcomp-btn-primary {
        padding: 10px 18px;
        font-size: 14px;
    }

    .mrcomp-logo-wrap img {
        width: 200px;
        /* Logo thoda chota kiya tablet/mobile ke liye */
    }
}

/* Small Mobile Adjustments */
@media (max-width: 575px) {
    .mrcomp-logo-text {
        font-size: 20px;
    }

    /* Button adjustments so it fits next to toggle */
    .mrcomp-btn-primary {
        padding: 8px 15px;
        font-size: 13px;
        gap: 5px;
    }

    .mrcomp-btn-primary i {
        font-size: 14px;
    }

    .mrcomp-side-menu {
        width: 260px;
        right: -280px;
    }

    .mrcomp-side-menu.mrcomp-active {
        transform: translateX(-280px);
    }

    .mrcomp-logo-wrap img {
        width: 160px;
        /* Aur chota mobile par adjust karne ke liye */
    }
}

/* Very Small Mobile (iPhone SE etc.) */
@media (max-width: 380px) {
    .mrcomp-btn-primary .btn-text {
        display: none;
    }

    /* Hide text, show only icon to save space */
    .mrcomp-btn-primary {
        padding: 10px 14px;
        border-radius: 50%;
    }

    .mrcomp-btn-primary i {
        font-size: 16px;
        margin: 0;
    }

    .mrcomp-logo-wrap img {
        width: 140px;
    }
}

/* header end */
/* ==================================================== */
/* Hero Section start */

/* =========================================
   Hero Section CSS
   ========================================= */

.mrcomp-hero-section {
    background-color: #eaf6f8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.mrcomp-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;


    animation: mrcompFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}


@keyframes mrcompFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.mrcomp-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 45px;
    font-weight: 600;
    color: #000000;
    line-height: 1.25;
    margin-bottom: 25px;
}

.mrcomp-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
}

/* =========================================
   Responsive Media Queries
   ========================================= */

/* Tablet View */
@media (max-width: 991px) {
    .mrcomp-hero-section {
        padding: 130px 0;
    }

    .mrcomp-hero-title {
        font-size: 42px;
    }

    .mrcomp-hero-desc {
        font-size: 18px;
        max-width: 700px;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    .mrcomp-hero-section {
        padding: 90px 0;
    }

    .mrcomp-hero-title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .mrcomp-hero-desc {
        font-size: 16px;
    }

    .mrcomp-hero-title br,
    .mrcomp-hero-desc br {
        display: none;
    }
}

@media (max-width: 575px) {
    .mrcomp-hero-section {
        padding: 70px 0;
    }

    .mrcomp-hero-title {
        font-size: 28px;
    }

    .mrcomp-hero-desc {
        font-size: 15px;
    }
}

/* hero section end */



/* =========================================
   Services Section CSS start
   ========================================= */

.mrcomp-services-section {
    padding: 80px 0;
    background-color: #ffffff;
    /* Page background */
}

/* Custom padding for grid columns instead of bootstrap gaps to control exact spacing */
.mrcomp-grid-padding {
    padding: 12px;
}

/* Base Card Styling (Gradient, Radius, Shadow, Transition) */
.mrcomp-card {
    background: linear-gradient(180deg, #f5f7fc 0%, #98aceade 100%);
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    /* Important for matching heights in row */
    /* cursor: pointer; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    overflow: hidden;
}

/* Card Hover Animation */
.mrcomp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(23, 59, 158, 0.15);
}

/* Typography inside Cards */
.mrcomp-card-subtitle {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 300;
    /* Light weight for first line */
    color: #444444;
    margin-bottom: 5px;
    line-height: 1.2;
}

.mrcomp-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    /* Bold weight for second line */
    color: #111111;
    line-height: 1.2;
}

/* =========================================
   Large Card Details (Left Side)
   ========================================= */
.mrcomp-card-large {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 460px;
    /* Adjust based on your big image size */
}

.mrcomp-card-img-large {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Push image to bottom */
    width: 100%;
}

.mrcomp-card-img-large img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

/* Inner image float effect on card hover */
.mrcomp-card:hover .mrcomp-card-img-large img {
    transform: scale(1.04) translateY(-5px);
}

/* =========================================
   Small Card Details (Right Side Grid)
   ========================================= */
.mrcomp-card-small {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
}


/* Alignment utility */
.mrcomp-text-right {
    text-align: right;
}

.mrcomp-card-text-wrap {
    flex: 1;
    /* Takes up available space */
}

/* Icon Wrappers inside small cards */
.mrcomp-card-icon-right,
.mrcomp-card-icon-left {
    width: 120px;
    /* Box size for icons */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    /* Prevents icon area from squishing */
}

.mrcomp-card-icon-right {
    margin-left: 20px;
}

.mrcomp-card-icon-left {
    margin-right: 20px;
}

.mrcomp-card-small img {
    max-width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

/* Small card icon hover bounce */
.mrcomp-card:hover .mrcomp-card-small img {
    transform: scale(1.1) rotate(2deg);
}

/* =========================================
   Responsive Media Queries
   ========================================= */

/* Tablet View (Stacks Large Card on top, 4 small cards below in 2x2 grid) */
@media (max-width: 991px) {
    .mrcomp-services-section {
        padding: 60px 0;
    }

    .mrcomp-card-large {
        min-height: 380px;
        margin-bottom: 0;
        /* Margin handled by grid padding */
    }

    .mrcomp-card-subtitle {
        font-size: 20px;
    }

    .mrcomp-card-title {
        font-size: 26px;
    }

    .mrcomp-card-icon-right,
    .mrcomp-card-icon-left {
        width: 90px;
    }
}

/* Mobile View (Stacks all cards in a single vertical column) */
@media (max-width: 767px) {
    .mrcomp-card {
        padding: 25px 20px;
    }

    .mrcomp-card-large {
        min-height: auto;
    }

    .mrcomp-card-small {
        min-height: 160px;
    }

    .mrcomp-card-subtitle {
        font-size: 18px;
    }

    .mrcomp-card-title {
        font-size: 22px;
    }

    .mrcomp-card-icon-right,
    .mrcomp-card-icon-left {
        width: 80px;
        margin: 0 10px;
    }

}

/* Small Mobile (iPhone SE etc) */
@media (max-width: 400px) {
    .mrcomp-card-small {

        flex-direction: column !important;
        align-items: flex-start;
        text-align: left !important;
        justify-content: center;
        gap: 15px;
    }

    .mrcomp-card-icon-right,
    .mrcomp-card-icon-left {
        margin: 0;
        width: 70px;
        align-self: flex-end;
        /* Push icon to right bottom */
    }

    .mrcomp-text-right {
        text-align: left;
    }
}

/* =========================================
   Services Section CSS END
   ========================================= */

/* =========================================
   4-Step Process Section CSS
   ========================================= */

/* Main Section Background (Dark Navy Blue) */
.mrcomp-process-section {
    background-color: #080d2a;
    padding: 60px 0 60px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* =========================================
   Header Area
   ========================================= */
.mrcomp-process-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
    /* Space between header and cards */
}

.mrcomp-process-title {
    font-size: 38px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #ffffff;
}

/* Custom weights for heading split */
.mrcomp-fw-light {
    font-weight: 300;
}

.mrcomp-fw-bold {
    font-weight: 700;
}

.mrcomp-process-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #b0b8d6;
    /* Light grey/blue text */
    max-width: 600px;
}

/* =========================================
   Grid & Card Layout
   ========================================= */
.mrcomp-grid-spacing {
    padding: 15px;
    margin-top: 30px;
}

.mrcomp-step-card {

    background: linear-gradient(180deg, #1c327a 0%, #080d2a 100%);
    border-radius: 12px;
    padding: 55px 25px 30px 25px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover lift effect */
.mrcomp-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* =========================================
   Number Badge (Circle)
   ========================================= */
.mrcomp-step-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-color: #243e91;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid #080d2a;
    transition: background-color 0.3s ease;
}

.mrcomp-step-card:hover .mrcomp-step-badge {
    background-color: #fff;
    color: #1e45c7;
}

/* =========================================
   Card Typography
   ========================================= */
.mrcomp-step-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
}

.mrcomp-step-desc {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
}

/* =========================================
   Responsive Media Queries
   ========================================= */

/* Tablet View (2x2 Grid) */
@media (max-width: 991px) {
    .mrcomp-process-section {
        padding: 80px 0 90px 0;
    }

    .mrcomp-process-title {
        font-size: 32px;
    }

    .mrcomp-process-subtitle {
        font-size: 16px;
    }

    .mrcomp-grid-spacing {
        margin-top: 40px;
    }
}

/* Mobile View (Single Column Stack) */
@media (max-width: 767px) {
    .mrcomp-process-section {
        padding: 60px 0 70px 0;
    }

    .mrcomp-process-header {
        margin-bottom: 50px;
    }

    .mrcomp-process-title {
        font-size: 26px;
    }

    .mrcomp-process-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }

    .mrcomp-step-card {
        padding: 50px 20px 25px 20px;
    }

    .mrcomp-grid-spacing {
        margin-top: 35px;
        padding: 10px 20px;
    }
}



/* =========================================
   Case Study Section CSS
   ========================================= */

.mrcomp-casestudy-section {
    padding: 50px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Header Styling */
.mrcomp-cs-header {
    text-align: center;
    margin-bottom: 20px;
}

.mrcomp-cs-main-title {
    font-size: 38px;
    color: #111b3d;
    letter-spacing: 0.5px;
    margin: 0;
}

.mrcomp-fw-light {
    font-weight: 300;
}

.mrcomp-fw-bold {
    font-weight: 700;
}

/* Grid Spacing */
.mrcomp-cs-grid-pad {
    padding: 15px;
}

/* =========================================
   Card Design & Overlaps
   ========================================= */
.mrcomp-cs-card {
    position: relative;
    border-radius: 12px;
    margin-bottom: 30px;
    cursor: pointer;
}

/* Image Wrapper */
.mrcomp-cs-img-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.mrcomp-cs-img-wrap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mrcomp-cs-card:hover .mrcomp-cs-img-wrap img {
    transform: scale(1.06);
}

/* Overlapping Text Box */
.mrcomp-cs-content {
    position: relative;
    z-index: 2;
    margin: -60px 25px 0 25px;
    background-color: #f4f8f6;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mrcomp-cs-card:hover .mrcomp-cs-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


.mrcomp-cs-btn {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 65px;
    height: 65px;
    background-color: #1a38b4a6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(17, 27, 61, 0.3);
    transition: all 0.3s ease;
}

.mrcomp-cs-btn:hover {
    background-color: #1a38b4;
    transform: scale(1.1);
}

.mrcomp-cs-btn img {
    width: 40px;
}

.mrcomp-cs-meta {
    font-size: 14px;
    color: #111b3d;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mrcomp-cs-meta i {
    font-size: 16px;
}

.mrcomp-cs-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    line-height: 1.5;
    margin: 0px;
    text-decoration: none;

}

/* =========================================
   Responsive Media Queries
   ========================================= */

/* Tablet View */
@media (max-width: 991px) {
    .mrcomp-casestudy-section {
        padding: 70px 0;
    }

    .mrcomp-cs-main-title {
        font-size: 32px;
    }

    .mrcomp-cs-content {

        margin: -50px 30px 0 30px;
        padding: 25px 20px;
    }

    .mrcomp-cs-img-wrap img {
        height: 280px;
    }

    .mrcomp-cs-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .mrcomp-casestudy-section {
        padding: 60px 0;
    }

    .mrcomp-cs-header {
        margin-bottom: 40px;
    }

    .mrcomp-cs-main-title {
        font-size: 28px;
    }

    .mrcomp-cs-img-wrap img {
        height: 240px;
    }

    .mrcomp-cs-content {
        margin: -40px 15px 0 15px;
    }

    .mrcomp-cs-grid-pad {
        margin-bottom: 20px;
    }
}

/* Small Mobile (iPhone SE etc.) */
@media (max-width: 400px) {
    .mrcomp-cs-content {
        margin: -40px 10px 0 10px;
        padding: 20px 15px;
    }

    .mrcomp-cs-btn {
        width: 42px;
        height: 42px;
        top: -21px;
        right: 15px;
    }

    .mrcomp-cs-btn svg {
        width: 18px;
        height: 18px;
    }

    .mrcomp-cs-title {
        font-size: 16px;
        padding-right: 0;
    }
}



/* =========================================
   Partner & About Section CSS
   ========================================= */


.mrcomp-info-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 40px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.mrcomp-info-section::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .5;

}

.mrcomp-info-col {
    padding: 15px;
    z-index: 1;
}

/* =========================================
   Base Card Layout
   ========================================= */
.mrcomp-info-card {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    padding: 55px 45px;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mrcomp-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Icon Wrapper */
.mrcomp-info-icon {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
}

.mrcomp-info-icon img {
    width: 70px;
    transition: transform 0.3s ease;
}

.mrcomp-info-card:hover .mrcomp-info-icon img {
    transform: scale(1.08) rotate(-3deg);
}

/* Content Area */
.mrcomp-info-content {
    flex: 1;
}

/* Typography Base */
.mrcomp-info-title {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.2;
}

.mrcomp-info-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Button Base */
.mrcomp-info-btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* =========================================
   Specific Colors for Dark & Light Cards
   ========================================= */

/* Dark Navy Card */
.mrcomp-card-dark {
    background-color: #0a1232;
    color: #ffffff;
}

.mrcomp-card-dark .mrcomp-info-desc {
    color: #cbd2eb;
}


.mrcomp-btn-light {
    background-color: #ffffff;
    color: #0a1232;
    border: 2px solid #ffffff;
}

.mrcomp-btn-light:hover {
    background-color: transparent;
    color: #ffffff;
}

.mrcomp-card-light {
    background-color: #ffffff;
    color: #0a1232;
}

.mrcomp-card-light .mrcomp-info-desc {
    color: #4a5568;
}


.mrcomp-btn-dark {
    background-color: #0a1232;
    color: #ffffff;
    border: 2px solid #0a1232;
}

.mrcomp-btn-dark:hover {
    background-color: #ffffff;
    color: #0a1232;
}

/* =========================================
   Responsive Media Queries
   ========================================= */

/* Tablet View */
@media (max-width: 991px) {
    .mrcomp-info-section {
        padding: 80px 0;
    }

    .mrcomp-info-card {
        padding: 40px 30px;
        gap: 25px;

        margin-bottom: 20px;
    }

    .mrcomp-info-col {
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .mrcomp-info-title {
        font-size: 28px;
    }

    .mrcomp-info-icon {
        width: 60px;
        height: 60px;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    .mrcomp-info-section {
        padding: 60px 0;
    }

    .mrcomp-info-card {

        flex-direction: column;
        align-items: flex-start;
        padding: 35px 25px;
        gap: 20px;
    }

    .mrcomp-info-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .mrcomp-info-desc {
        font-size: 15px;
    }
}




/* =========================================
   Testimonials Section CSS
   ========================================= */

.mrcomp-testi-section {
    background-color: #0b112c;
    /* Dark navy background */
    padding: 60px 0 40px 0;
    font-family: 'Inter', sans-serif;
}

/* Header Styling */
.mrcomp-testi-header {
    text-align: center;
    margin-bottom: 60px;
}

.mrcomp-testi-title {
    font-size: 38px;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.mrcomp-fw-light {
    font-weight: 300;
}

.mrcomp-fw-bold {
    font-weight: 700;
}

.mrcomp-testi-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #cbd2eb;
}

/* Card Styling */
.mrcomp-testi-card {
    background-color: #e6ecfc;
    /* Very light blue/lavender */
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    /* Ensure all cards stretch to same height in slider */
    display: flex;
    flex-direction: column;
}

.mrcomp-testi-author {
    font-size: 24px;
    font-weight: 600;
    color: #111b3d;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.mrcomp-testi-designation {
    font-size: 16px;
    font-weight: 400;
    color: #4a5568;
}

.mrcomp-testi-text {
    font-size: 15px;
    line-height: 18px;
    color: #111111;
    margin: 0;
}

/* =========================================
   Swiper Customization Overrides
   ========================================= */

/* Make swiper container have padding bottom for dots */
.mrcomp-testimonial-swiper {
    padding-bottom: 60px !important;
}

/* Ensure slides stretch equally */
.mrcomp-testimonial-swiper .swiper-slide {
    height: auto;
}

/* Pagination Dots */
.mrcomp-testi-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.4);
    width: 10px;
    height: 10px;
    opacity: 1;
    transition: all 0.3s ease;
}

.mrcomp-testi-pagination .swiper-pagination-bullet-active {
    background-color: #ffffff;
    width: 25px;
    border-radius: 10px;
    /* Pill shape for active dot */
}

/* Navigation Arrows - HIDDEN as requested */
.mrcomp-testi-prev,
.mrcomp-testi-next {
    display: none !important;
    /* Hata de agar show karna ho */
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    margin-top: -20px;
}

.mrcomp-testi-prev:after,
.mrcomp-testi-next:after {
    font-size: 18px !important;
}

.mrcomp-testi-prev:hover,
.mrcomp-testi-next:hover {
    background: #2b5cf6;
}

/* =========================================
   Responsive Media Queries
   ========================================= */

/* Tablet View */
@media (max-width: 991px) {
    .mrcomp-testi-section {
        padding: 80px 0 60px 0;
    }

    .mrcomp-testi-title {
        font-size: 32px;
    }

    .mrcomp-testi-card {
        padding: 35px 25px;
    }

    .mrcomp-testi-author {
        font-size: 22px;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    .mrcomp-testi-section {
        padding: 60px 0 50px 0;
    }

    .mrcomp-testi-title {
        font-size: 28px;
    }

    .mrcomp-testi-subtitle {
        font-size: 15px;
    }

    .mrcomp-testi-card {
        padding: 30px 20px;
    }

    .mrcomp-testi-author {
        flex-direction: column;
        gap: 2px;
    }
}


/* =========================================
   Footer Section CSS
   ========================================= */

.mrcomp-footer-section {
    background-color: #f6f8f7;
    padding-top: 50px;
    font-family: 'Inter', sans-serif;
}

/* Base Spacing for Columns */
.mrcomp-ft-col-pad {
    padding-bottom: 40px;
}

/* =========================================
   Column 1: Brand Info
   ========================================= */
.mrcomp-ft-logo-link {
    display: inline-block;
    margin-bottom: 25px;
    text-decoration: none;
}

.mrcomp-ft-logo-link img {
    width: 220px;
    /* Adjust logo size */
    transition: opacity 0.3s ease;
}

.mrcomp-ft-logo-link:hover img {
    opacity: 0.8;
}

.mrcomp-ft-about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #111111;
    font-weight: 400;
    margin: 0;
    padding-right: 20px;
    /* Prevent text from hitting next column */
}

/* =========================================
   Columns 2 & 3: Links
   ========================================= */
.mrcomp-ft-heading {
    font-size: 20px;
    font-weight: 600;
    color: #0b112c;
    /* Dark Navy Blue */
    margin-bottom: 25px;
}

.mrcomp-ft-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mrcomp-ft-list li {
    margin-bottom: 18px;
    /* Vertical spacing between links */
}

.mrcomp-ft-link {
    text-decoration: none;
    color: #111111;
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    /* Required for transform animation */
    transition: all 0.3s ease;
}

/* Smooth slide right & color change on hover */
.mrcomp-ft-link:hover {
    color: #2b5cf6;
    /* Main Blue Color */
    transform: translateX(6px);
}

/* Inline links in Contact section shouldn't slide much */
.mrcomp-ft-link-inline:hover {
    transform: translateX(0);
}

/* =========================================
   Column 4: Contact Info
   ========================================= */
.mrcomp-ft-contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* Space between contact lines */
}

.mrcomp-ft-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 15px;
    color: #111111;
    font-weight: 400;
    line-height: 1.5;
}

.mrcomp-ft-icon {
    color: #0b112c;
    /* Dark Navy icons */
    font-size: 16px;
    margin-top: 3px;
    /* Align icon nicely with text */
    width: 20px;
    /* Fixed width so text aligns perfectly in a straight line */
    text-align: center;
}

/* =========================================
   Bottom Copyright Bar
   ========================================= */
.mrcomp-ft-bottom-bar {
    border-top: 1px solid #e2e8e4;
    /* Light border color */
    padding: 25px 0;
    text-align: center;
    /* Center align text using custom CSS */
}

.mrcomp-ft-copyright {
    font-size: 15px;
    color: #555555;
    /* Medium Grey */
    margin: 0;
    font-weight: 400;
}

/* =========================================
   Responsive Media Queries
   ========================================= */

/* Tablet View (iPad, etc.) */
@media (max-width: 991px) {
    .mrcomp-footer-section {
        padding-top: 60px;
    }

    .mrcomp-ft-col-pad {
        padding-bottom: 30px;
        /* Reduce bottom padding on stacked columns */
    }

    .mrcomp-ft-about-text {
        padding-right: 0;
    }

    .mrcomp-ft-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* Mobile View (Phones) */
@media (max-width: 767px) {
    .mrcomp-footer-section {
        padding-top: 50px;
    }

    /* Adding extra top padding to headings on mobile to separate sections clearly */
    .mrcomp-ft-heading {
        margin-top: 10px;
    }

    .mrcomp-ft-bottom-bar {
        padding: 10px 0 15px;
    }

    .mrcomp-ft-copyright {
        font-size: 14px;
    }
}


/* about us page start */


/* --- Unique Banner Styling Start --- */

.unique-pg-header-section {
    position: relative; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0; 
    overflow: hidden;
}


/* Text Container */
.unique-pg-header-section .container {
    z-index: 2; /* Text ko overlay ke upar rakhne ke liye */
}

/* Title Styling - Image jaisa Dark Blue */
.unique-pg-title {
    font-size: 40px;
    font-weight: 500;
    color: #1034a6;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: uniqueFadeUp 0.8s ease-out forwards; /* Smooth Animation */
}

/* --- Smooth Animation Keyframes --- */
@keyframes uniqueFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 768px) {
    .unique-pg-header-section {
        padding: 60px 0; /* Mobile pe height kam */
    }
    
    .unique-pg-title {
        font-size: 2rem; /* Mobile pe font chota */
    }
}

/* Agar breadcrumb links enable karoge toh unka style */
.unique-breadcrumb-list {
    background: transparent;
    margin-top: 10px;
    padding: 0;
}
.unique-breadcrumb-list .breadcrumb-item a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}
.unique-breadcrumb-list .breadcrumb-item.active {
    color: #1034a6;
}

/* --- Unique Banner Styling End --- */


        /* Base Wrapper */
        .comp-sec-wrapper {
            background-color: #ffffff;
            overflow: hidden; 
        }

        /* Background Image Div Styling */
        .comp-sec-image-bg {
            width: 100%;
            min-height: 480px;            
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 12px; /* Image ke corners thode round hain */
           
            
            /* Smooth Hover Animation property */
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        /* Smooth Hover Effect on Image */
        .comp-sec-image-bg:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Content Container Styling & Entry Animation */
        .comp-sec-content {
            /* Smooth Fade-in-up animation on load */
            animation: compSecFadeUp 1s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        /* Heading Styling */
        .comp-sec-heading {
            color: #0d1e4c; /* Dark Navy Blue directly applied */
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
        }

        /* Paragraph Styling */
        .comp-sec-para {
            color: #1a1a1a; /* Dark Gray/Black directly applied */
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 1.2rem;
        }

        /* Keyframes for text entry animation */
        @keyframes compSecFadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive adjustments for Mobile & Tablets */
        @media (max-width: 991px) {
            .comp-sec-image-bg {
                min-height: 350px;
            }
            .comp-sec-heading {
                font-size: 1.8rem;
            }
            .comp-sec-content {
                text-align: center; /* Center text on smaller screens */
                animation-delay: 0.3s; /* Delay text animation on mobile */
            }
        }




/* partnership css start */
        /* Main Section Wrapper */
        .cp-section-wrapper {
            background-color: #ffffff;
            overflow: hidden;
        }

        /* Heading Styling */
        .cp-main-heading {
            font-size: 2.2rem;
            margin-bottom: 30px;
        }

        .cp-text-light {
            color: #2d3748;
            font-weight: 300;
        }

        .cp-text-dark {
            color: #0d1e4c;
            font-weight: 600;
        }

        .cp-swiper-container {
            padding: 20px 5px 60px 5px !important; 
        }

        /* Logo Box Container */
        .cp-logo-box {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 110px;
            background-color: #ffffff;
            border: 4px solid #f7f8fa;
            padding: 20px;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        /* Image styling */
        .cp-logo-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%) opacity(70%);
            transition: all 0.4s ease;
        }

        /* Hover Effects */
        .cp-logo-box:hover {
            border-color: #e2e8f0;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .cp-logo-box:hover .cp-logo-img {
            filter: grayscale(0%) opacity(100%);
            transform: scale(1.05);
        }


        
        /* Positioning the dots container */
        .cp-swiper-pagination {
            bottom: 10px !important;
        }

        /* Inactive Dots styling */
        .cp-swiper-container .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background-color: #cbd5e1; /* Light gray color */
            opacity: 1;
            transition: all 0.3s ease-in-out; /* Smooth transition */
            margin: 0 6px !important;
        }

    
        .cp-swiper-container .swiper-pagination-bullet-active {
            background-color: #0d1e4c; 
            width: 24px; 
            border-radius: 8px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cp-main-heading {
                font-size: 1.6rem;
            }
            .cp-logo-box {
                height: 90px;
                padding: 15px;
            }
        }


        /* services page css start */

        
        .srv-section-wrapper {
       
            background-color: #fcfdfe;
            padding: 70px 0 50px;
            overflow: hidden;
        }

        /* Heading Styles */
        .srv-main-heading {
            font-size: 2.3rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .srv-heading-light {
            font-weight: 300;
            color: #3b4559; /* Grayish blue */
        }

        .srv-heading-dark {
            font-weight: 600;
            color: #0d1e4c; /* Dark Navy Blue */
        }

        .srv-subheading {
            font-size: 1.15rem;
            color: #4a4a4a;
            margin-bottom: 50px;
            font-weight: 400;
        }

        /* Card Container Styling */
        .srv-card {
            background-color: #ffffff;
            border: 1px solid #eaeef4; 
            border-radius: 4px;
            padding: 40px 25px 35px 25px; 
            text-align: center;
            position: relative; 
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        }

        /* Hover Effect on Card */
        .srv-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: #d1d9e6;
        }

        /* Main Outline Icon */
        .srv-icon-wrapper {
            margin-bottom: 25px;
        }

        .srv-icon-wrapper img {
          width: 60px;
        }

        /* Card Title */
        .srv-card-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 6px;
            text-decoration: none;
        }

        .srv-meta {
            font-size: 0.9rem;
            color: #2b50d9; 
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 400;
        }

        .srv-meta img {
            width: 14px;
            margin-right: 6px;
            font-size: 1rem;
        }

        .srv-divider {
            color: #b0b8c4;
            margin: 0 10px;
            font-weight: 300;
        }

        /* Card Description */
        .srv-desc {
            font-size: 0.95rem;
            color: #555555;
            line-height: 1.6;
            margin-bottom: 0;
            flex-grow: 1; 
        }

   
        .srv-action-btn {
            position: absolute;
            bottom: -25px; 
            left: 50%;
            transform: translateX(-50%); 
            width: 50px;
            height: 50px;
            background-color: #3553d9; /* Blue button */
            border-radius: 50%; /* Makes it a circle */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(53, 83, 217, 0.3);
        }

        /* Button Hover Effect */
        .srv-action-btn:hover {
            background-color: #1d36a8; /* Darker blue */
            color: #ffffff;
            box-shadow: 0 8px 15px rgba(53, 83, 217, 0.4);
            transform: translateX(-50%) scale(1.08); /* Slightly enlarges */
        }
        .srv-card-col{
            margin-bottom: 60px;
        }
      
        @media (max-width: 991px) {
            .srv-card-col {
                margin-bottom: 60px; 
            }
        }




            /* Main Section Wrapper */
        .srv-inner-wrapper {
            background-color: #ffffff;
            overflow: hidden;
            padding: 80px 0;
        }

        .srv-inner-img-box {
            border-radius: 12px; 
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); 
            opacity: 0;
            transform: translateX(-40px);
            animation: srvInnerFadeRight 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
        }

        .srv-inner-img-box img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
            transition: transform 0.7s ease; 
        }


        .srv-inner-img-box:hover img {
            transform: scale(1.04);
        }

        .srv-inner-content {
         
            opacity: 0;
            transform: translateX(40px);
            animation: srvInnerFadeLeft 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
            animation-delay: 0.2s; /* Text comes slightly after image */
        }

        .srv-inner-heading {
            font-size: 2.4rem;
            color: #0d1e4c; /* Dark Navy Blue */
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 10px;
        }


        .srv-inner-meta {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            color: #2b50d9; /* Royal Blue */
            margin-bottom: 10px ;
        }

        .srv-inner-meta img {
            width: 16px;
            font-size: 1rem;
            margin-right: 8px;
        }

        .srv-inner-divider {
            color: #d1d5db; /* Light gray vertical line */
            margin: 0 12px;
            font-weight: 300;
        }

        .srv-inner-desc {
            font-size: 1.05rem;
            color: #1a1a1a; /* Dark gray */
            line-height: 1.8;
            margin-bottom: 0;
        }


        @keyframes srvInnerFadeRight {
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes srvInnerFadeLeft {
            to { opacity: 1; transform: translateX(0); }
        }

        /* -----------------------
           Responsive Design 
           ----------------------- */
        @media (max-width: 991px) {
            .srv-inner-heading {
                font-size: 1.9rem;
            }
            .srv-inner-content {
                margin-top: 30px;
               
                transform: translateY(30px);
                animation-name: srvInnerFadeUp;
            }
            .srv-inner-img-box {
                transform: translateY(30px);
                animation-name: srvInnerFadeUp;
            }
        }

        @keyframes srvInnerFadeUp {
            to { opacity: 1; transform: translateY(0); }
        }


        /* contact us start */

                /* Main Wrapper */
        .cnt-sec-wrapper {
            background-color: #ffffff;
            padding: 80px 0;
            overflow: hidden;
        }

        /* Headings */
        .cnt-sec-heading {
            font-size: 2.2rem;
            color: #1a1a1a; /* Dark almost black */
            font-weight: 400;
            margin-bottom: 2.5rem;
        }

        /* ----------------------------------
           LEFT COLUMN: Contact Info 
           ---------------------------------- */
        .cnt-sec-left-col {
            opacity: 0;
            transform: translateX(-40px);
            animation: cntFadeInLeft 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
        }

        .cnt-sec-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }

        .cnt-sec-info-item:hover {
            transform: translateX(10px); /* Smooth slight move right on hover */
        }

        /* Square Icon Box */
        .cnt-sec-icon-box {
            width: 65px;
            height: 65px;
            background-color: #1a3bb0; /* Dark Blue from image */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            transition: all 0.3s ease;
        }

        .cnt-sec-icon-box i {
            color: #ffffff;
            font-size: 1.6rem;
        }

        .cnt-sec-info-item:hover .cnt-sec-icon-box {
            background-color: #112982; /* Darker blue on hover */
            box-shadow: 0 5px 15px rgba(26, 59, 176, 0.3);
        }

        /* Text Next to Icon */
        .cnt-sec-text-box {
            display: flex;
            flex-direction: column;
        }

        .cnt-sec-subtitle {
            font-size: 1.05rem;
            color: #7b8cde; /* Light grayish blue text */
            font-weight: 400;
            margin-bottom: 2px;
        }

        .cnt-sec-title {
            font-size: 1.2rem;
            color: #000000;
            font-weight: 600;
            text-decoration: none;
        }

        .cnt-sec-right-col {
            opacity: 0;
            transform: translateX(40px);
            animation: cntFadeInRight 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
            animation-delay: 0.2s; 
        }

        .cnt-sec-form-group {
            margin-bottom: 15px;
        }

        /* Input Fields */
        .cnt-sec-input {
            width: 100%;
            padding: 14px 20px;
            background-color: #f7f8fa; 
            border: 1px solid #e9ecef; 
            border-radius: 2px; 
            font-size: 1rem;
            color: #495057;
            transition: all 0.3s ease;
            outline: none;
        }

        .cnt-sec-input::placeholder {
            color: #6c757d;
        }

        .cnt-sec-input:focus {
            background-color: #ffffff;
            border-color: #7b8cde; 
            box-shadow: 0 0 0 3px rgba(123, 140, 222, 0.15);
        }

        /* Textarea specific height */
        textarea.cnt-sec-input {
            height: 140px;
            resize: vertical;
        }

        /* Submit Button */
        .cnt-sec-submit-btn {
            background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
            color: #ffffff;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: all 0.3s 
        ease;
            text-decoration: none;
        }

        .cnt-sec-submit-btn i {
            margin-left: 10px;
            font-size: 1.2rem;
        }

        .cnt-sec-submit-btn:hover {
            background-color: #1a3bb0; /* Darker blue */
            transform: translateY(-3px); /* Lift up slightly */
            box-shadow: 0 8px 20px rgba(43, 76, 218, 0.35);
        }

        /* ----------------------------------
           Animations & Responsive 
           ---------------------------------- */
        @keyframes cntFadeInLeft {
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes cntFadeInRight {
            to { opacity: 1; transform: translateX(0); }
        }

        @media (max-width: 991px) {
            .cnt-sec-left-col, .cnt-sec-right-col {
                transform: translateY(30px); /* Mobile slide up instead of sideways */
                animation-name: cntFadeInUp;
            }
            .cnt-sec-left-col {
                margin-bottom: 50px; /* Gap between info and form on mobile */
            }
        }

        @keyframes cntFadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }


        /* pagination */

.mrc-pagination-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* Gap kam kiya hai compact look ke liye */
    margin-top: 30px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.mrc-pagination-mini a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; /* Size chota kiya hai (pehle 40px tha) */
    height: 36px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px; /* Slight curve */
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    background-color: #ffffff;
}

/* Specific styling for numbers */
.mrc-pagination-mini .mrc-page {
    font-weight: 500;
    color: #4B5563;
}

/* Specific styling for arrows */
.mrc-pagination-mini .mrc-arrow {
    color: #1E3A8A; /* Theme Blue */
}

.mrc-pagination-mini .mrc-arrow svg {
    width: 16px;
    height: 16px;
}

/* Hover Effects */
.mrc-pagination-mini a:hover:not(.disabled):not(.active) {
    background-color: #EFF6FF;
    color: #1E3A8A;
    border-color: #93C5FD;
}

/* Active State (Blue box for current page) */
.mrc-pagination-mini .active {
    background-color: #1E3A8A;
    color: #ffffff;
    border-color: #1E3A8A;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(30, 58, 138, 0.15);
}

/* Disabled State (For arrows when there is no next/prev page) */
.mrc-pagination-mini .disabled {
    color: #9CA3AF;
    background-color: #F9FAFB;
    cursor: not-allowed;
}

/* realted sldier  */

/* Slider Wrapper (Relative for absolute arrows) */
.mrc-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 50px 60px; 
}

.mrc-slide-box {
    height: auto;
    display: flex;
    justify-content: center;
}


.mrc-placeholder-content {
    width: 100%;
    min-height: 250px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    color: #1E3A8A; /* Corporate Blue */
}


.mrc-btn-prev, 
.mrc-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #1E3A8A; /* Theme Blue */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mrc-btn-prev { left: 0; }
.mrc-btn-next { right: 0; }

.mrc-btn-prev svg, .mrc-btn-next svg {
    width: 20px;
    height: 20px;
}

.mrc-btn-prev:hover, 
.mrc-btn-next:hover {
    background-color: #1E3A8A;
    color: #ffffff;
    border-color: #1E3A8A;
}

.mrc-btn-prev.swiper-button-disabled, 
.mrc-btn-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .mrc-slider-wrapper {
        padding: 20px 10px; 
    }
    .mrc-btn-prev, .mrc-btn-next {
        display: none; 
    }
}