    :root {
        --bg: #f7fafc;
        --surface: #ffffff;
        --text: #0f172a;
        --muted: #6b7280;
        --accent: #001E8E;
        --header-bg: linear-gradient(90deg, #fff, #fbfdff);
        --btn-primary-bg: var(--accent);
    }

    [data-theme="dark"] {
        --bg: #0b1220;
        --surface: #071023;
        --text: #e6eef6;
        --muted: #9aa4b2;
        --accent: #001E8E;
        --header-bg: linear-gradient(90deg, #071022, #081426);
        --btn-primary-bg: #001E8E;
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background: var(--bg);
        color: var(--text);
        font-family: 'Segoe UI', Roboto, system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
        transition: background .25s ease, color .25s ease;
        min-height: 100vh;
        overflow-x: hidden;
    }

    /* ========== HEADER STYLES ========== */
    .site-header {
        background: var(--header-bg);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .logo {
        height: 55px;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        padding: 8px 0;
    }

    .navbar-nav .nav-link {
        color: var(--muted) !important;
        font-weight: 500;
        padding: 8px 12px !important;
        border-radius: 6px;
        transition: color .12s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--accent) !important;
        background-color: transparent !important;
    }

    /* Dropdown Menu Animation */
    .dropdown-menu {
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 8px 0;
        margin-top: 8px;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-item {
        padding: 10px 20px;
        color: var(--muted);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .dropdown-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(0, 30, 142, 0.1), rgba(0, 30, 142, 0.05));
        transition: width 0.3s ease;
        z-index: -1;
    }

    .dropdown-item:hover {
        color: var(--accent) !important;
        background-color: transparent !important;
        padding-left: 25px;
    }

    .dropdown-item:hover::before {
        width: 100%;
    }

    .btn-ghost {
        background: var(--surface);
        color: var(--muted);
        border: 1px solid #e2e8f0;
    }

    .btn-primary-custom {
        background: var(--btn-primary-bg);
        border-color: var(--btn-primary-bg);
        color: #fff;
        position: relative;
        overflow: hidden;
        z-index: 0;
        transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
    }

    .btn-primary-custom span {
        position: relative;
        z-index: 1;
    }

    .btn-primary-custom:hover {
        animation: sh0 0.5s ease-in-out both;
        border-color: #001E8E;
        background: #fff;
    }

    .btn-primary-custom:hover span {
        animation: storm 0.7s ease-in-out both;
        animation-delay: 0.06s;
        color: #001E8E;
    }

    @keyframes sh0 {
        0% {
            transform: rotate(0deg) translate3d(0, 0, 0);
        }
        25% {
            transform: rotate(7deg) translate3d(0, 0, 0);
        }
        50% {
            transform: rotate(-7deg) translate3d(0, 0, 0);
        }
        75% {
            transform: rotate(1deg) translate3d(0, 0, 0);
        }
        100% {
            transform: rotate(0deg) translate3d(0, 0, 0);
        }
    }

    @keyframes storm {
        0% {
            transform: translate3d(0, 0, 0) translateZ(0);
        }
        25% {
            transform: translate3d(4px, 0, 0) translateZ(0);
        }
        50% {
            transform: translate3d(-3px, 0, 0) translateZ(0);
        }
        75% {
            transform: translate3d(2px, 0, 0) translateZ(0);
        }
        100% {
            transform: translate3d(0, 0, 0) translateZ(0);
        }
    }

    .btn-primary-custom::before,
    .btn-primary-custom::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #001E8E;
        opacity: 0;
        transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
        z-index: -1;
        transform: translate(100%, -25%) translate3d(0, 0, 0);
    }

    .btn-primary-custom:hover::before,
    .btn-primary-custom:hover::after {
        opacity: 0.2;
        transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
    }

    .btn-primary-custom:hover::before {
        transform: translate3d(50%, 0, 0) scale(0.9);
    }

    .btn-primary-custom:hover::after {
        transform: translate(50%, 0) scale(1.1);
    }

    .btn:hover:not(.btn-primary-custom) {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    /* ========== HERO SECTION ========== */
    .hero-section {
        margin-top: 80px;
        padding: 80px 0 60px;
        background: var(--surface);
        min-height: calc(100vh - 80px);
        display: flex;
        align-items: center;
    }

    /* FIXED HERO TITLE - Typing animation on separate line */
    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.4rem);
        font-weight: 700;
        line-height: 1.1;
        color: var(--text);
        margin-bottom: 0;
    }

    .typed-container {
        display: block;
        margin-top: 0.2em;
    }

    .typed-inline {
        color: var(--accent);
        font-weight: 700;
        font-size: clamp(2.2rem, 5vw, 3.4rem);
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 1em;
    }

    .typed-caret {
        display: inline-block;
        color: var(--accent);
        margin-left: 6px;
        font-weight: 700;
        animation: blink 1s infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }
    }

    .hero-subtitle {
        font-size: 1rem;
        color: var(--muted);
        line-height: 1.6;
    }

    /* Badge above the title */
    .hero-badge {
        display: inline-block;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, 0.06);
        color: var(--text);
        padding: 8px 14px;
        border-radius: 12px;
        font-size: 0.95rem;
        box-shadow: 0 6px 18px rgba(12, 18, 24, 0.04);
        max-width: fit-content;
    }

    /* Email Input Group */
    .email-input-group {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-wrap: wrap;
    }

    .email-input {
        flex: 1;
        min-width: 250px;
        padding: 14px 16px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: 1rem;
        background: var(--surface);
        color: var(--text);
        transition: border-color 0.2s ease;
    }

    .email-input:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(0, 30, 142, 0.1);
    }

    .cta-button {
        background: var(--accent);
        color: white;
        border: none;
        padding: 14px 32px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    /* Hero Features */
    .hero-features {
        display: flex;
        flex-direction: row;
        gap: 24px;
        margin-top: 20px;
    }

    @media (max-width: 576px) {
        .hero-features {
            flex-direction: column;
            gap: 12px;
        }
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
    }

    .feature-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 30, 142, 0.08);
        border-radius: 8px;
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .feature-icon:hover {
        transform: scale(1.1);
        background: rgba(0, 30, 142, 0.15);
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
        transition: transform 0.3s ease;
    }

    .feature-item:hover .feature-icon svg {
        transform: rotate(5deg);
    }

    .feature-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .feature-text strong {
        color: var(--text);
        font-weight: 600;
        font-size: 0.95rem;
    }

    .feature-text span {
        color: var(--muted);
        font-size: 0.85rem;
    }

    /* Right Side - Main Image with Floating Images */
    .main-image-container {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        overflow: visible;
    }

    /* Trustpilot mini card positioned at top-right of image area */
    .trustpilot-card {
        position: absolute;
        top: -18px;
        right: 0;
        background: #fff;
        padding: 10px 12px;
        border-radius: 10px;
        box-shadow: 0 18px 40px rgba(12, 18, 24, 0.12);
        display: flex;
        gap: 12px;
        align-items: center;
        z-index: 20;
    }

    @media (max-width: 576px) {
        .trustpilot-card {
            top: -10px;
            padding: 8px 10px;
        }
    }

    .trustpilot-card .tp-left {
        color: var(--accent);
        font-size: 18px;
        font-weight: 800;
    }

    .trustpilot-card .tp-body {
        font-size: 13px;
        color: var(--text);
    }

    .trustpilot-card .tp-reviews {
        color: var(--muted);
        font-size: 12px;
    }

    /* visitor stat floating card */
    .visitor-card {
        position: absolute;
        bottom: -30px;
        left: -40px;
        background: #111214;
        color: #fff;
        padding: 14px 16px;
        border-radius: 10px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
        display: flex;
        flex-direction: column;
        gap: 8px;
        z-index: 18;
        min-width: 210px;
    }

    .vis-top-line {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    @media (max-width: 576px) {
        .visitor-card {
            min-width: 180px;
            padding: 10px 12px;
            left: -20px;
            bottom: -20px;
        }
    }

    .visitor-card .vis-number {
        font-weight: 800;
        font-size: 1.05rem;
        margin: 0;
        white-space: nowrap;
    }

    .visitor-card .vis-text {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
    }

    .vis-avatars {
        display: flex;
        align-items: center;
        margin-left: -8px;
    }

    .avatar {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border: 2px solid rgba(255, 255, 255, 0.12);
        object-fit: cover;
        background: #e5e7eb;
        margin-left: -8px;
        position: relative;
        z-index: 1;
    }

    .avatar:first-child {
        margin-left: 0;
    }

    /* small decorative strokes to match reference */
    .decor-strokes {
        position: absolute;
        top: -30px;
        left: 58%;
        width: 70px;
        height: 36px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 36"><path d="M4 20c10-8 28-14 60-12" stroke="#111" stroke-width="3" stroke-linecap="round" fill="none" opacity="0.9"/></svg>');
        background-repeat: no-repeat;
        transform: translateX(20px) rotate(-6deg);
        z-index: 5;
        pointer-events: none;
    }

    .main-image {
        background: transparent;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        height: auto;
        max-height: 500px;
        position: relative;
    }

    .main-img {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
        display: block;
    }

    /* ========== COMPANIES CAROUSEL SECTION ========== */
    .companies-carousel {
        width: 100%;
        background: var(--surface);
        padding: 32px 0 24px 0;
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid #eee;
    }

    .carousel-heading {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text);
        line-height: 1.1;
    }

    .carousel-main {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text);
    }

    .carousel-sub {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text);
    }

    .carousel-logos-slider {
        overflow: hidden;
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .carousel-track {
        display: flex;
        gap: 32px;
        align-items: center;
        animation: carousel-slide 25s linear infinite;
        width: max-content;
        will-change: transform;
    }

    .carousel-logo {
        height: 40px;
        width: 80px;
        object-fit: contain;
        filter: grayscale(1) brightness(0.7);
        opacity: 0.7;
        transition: filter 0.3s, opacity 0.3s;
        cursor: pointer;
        margin: 0 8px;
        flex-shrink: 0;
    }

    .carousel-logo:hover {
        filter: none;
        opacity: 1;
    }

    @keyframes carousel-slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* Mobile responsive for carousel logos */
    @media (max-width: 768px) {
        .carousel-logo {
            height: 35px;
            width: 70px;
            object-fit: contain;
        }
    }

    @media (max-width: 576px) {
        .carousel-logo {
            height: 30px;
            width: 60px;
            object-fit: contain;
        }
    }

    /* ========== ABOUT/FEATURE SECTION ========== */
    .about-feature-section {
        width: 100%;
        background: var(--surface);
        padding: 64px 0 32px 0;
    }

    .about-feature-images-row {
        display: flex;
        flex-direction: row;
        gap: 32px;
        align-items: flex-start;
    }

    @media (max-width: 992px) {
        .about-feature-images-row {
            flex-direction: column;
            gap: 18px;
            align-items: center;
        }
    }

    .about-img-main {
        position: relative;
        flex: 1 1 0;
    }

    .about-img-side-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .about-feature-stats {
        display: flex;
        gap: 18px;
        margin-bottom: 12px;
        justify-content: center;
    }

    @media (max-width: 576px) {
        .about-feature-stats {
            flex-direction: column;
            gap: 12px;
        }
    }

    .about-stat {
        border-radius: 12px;
        padding: 18px 32px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-width: 120px;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    }

    @media (max-width: 576px) {
        .about-stat {
            padding: 14px 24px;
            min-width: 100px;
        }
    }

    .about-stat-dark {
        background: #18181b;
        color: #fff;
    }

    .about-stat-blue {
        background: #001E8E;
        color: #fff;
    }

    .about-stat-value {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    @media (max-width: 576px) {
        .about-stat-value {
            font-size: 1.5rem;
        }
    }

    .about-stat-label {
        font-size: 1rem;
        font-weight: 500;
    }

    @media (max-width: 576px) {
        .about-stat-label {
            font-size: 0.9rem;
        }
    }

    .about-img-side {
        align-self: flex-start;
    }

    .about-img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }

    @media (max-width: 768px) {
        .about-img {
            height: 220px;
        }
    }

    /* Mobile: make about images natural height and full width, stack stats */
    @media (max-width: 576px) {
        .about-img {
            height: auto;
            /* natural image height so it scales */
            display: block;
            max-width: 100%;
            width: 100%;
            object-fit: cover;
        }

        .about-img-main,
        .about-img-side {
            width: 100%;
        }

        .about-img-side {
            margin-top: 12px;
        }

        .about-feature-stats {
            width: 100%;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }

        .about-stat {
            width: 100%;
            min-width: auto;
            padding: 14px 18px;
        }

        .about-img,
        .about-img-side img {
            border-radius: 12px;
        }

        .about-feature-right {
            padding-left: 0;
            padding-right: 0;
        }
    }

    .about-feature-right {
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }

    .about-feature-label {
        background: #f7fafc;
        color: var(--text);
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        padding: 6px 18px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .about-feature-label-icon {
        font-size: 1.1rem;
    }

    .about-feature-title {
        font-size: clamp(1.7rem, 4vw, 2.6rem);
        font-weight: 800;
        color: var(--text);
        margin-bottom: 0;
        line-height: 1.1;
    }

    .about-feature-desc {
        font-size: 1.1rem;
        color: var(--muted);
        line-height: 1.2;
        margin-bottom: 0;
    }

    .about-feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .about-feature-list-icon {
        color: #001E8E;
        font-size: 1.1rem;
        margin-right: 8px;
    }

    .about-feature-btn {
        background: #18181b;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 12px 32px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        margin-top: 12px;
        transition: background 0.2s;
        text-decoration: none;
        display: inline-block;
        position: relative;
        z-index: 10;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: rgba(0, 30, 142, 0.3);
        touch-action: manipulation;
    }

    .about-feature-btn:hover {
        background: #001E8E;
        color: #fff;
        text-decoration: none;
    }

    .about-feature-btn:active {
        background: #001E8E;
        transform: scale(0.98);
    }

    /* ========== SERVICES SECTION (redesigned dark cards) ========== */
    .services-section {
        padding: 90px 0 60px;
        background: #202124;
        /* dark background to match reference */
        color: #ffffff;
    }

    .section-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-badge {
        display: inline-block;
        margin-bottom: 24px;
        background: rgba(255, 255, 255, 0.05);
        padding: 12px 24px;
        border-radius: 100px;
        color: #ffffff;
    }

    .section-badge span {
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.2px;
    }

    .section-title {
        color: #ffffff;
        font-weight: 700;
        font-size: clamp(2.2rem, 4vw, 2.8rem);
        line-height: 1.2;
        margin: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Cards */
    .service-card {
        border: none;
        border-radius: 12px;
        box-shadow: none;
        transition: transform 0.36s cubic-bezier(.2, .9, .18, 1), box-shadow 0.36s;
        margin-bottom: 30px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.03);
        position: relative;
        overflow: visible;
        width: auto;
        /* let Bootstrap grid control width */
        min-height: 0;
        /* reset fixed-height */
    }

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    }

    .card-body {
        padding: 28px 20px 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: auto;
        /* natural height by default */
    }

    /* Icon circle that overlaps the card */
    .service-icon {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -34px;
        left: 28px;
        box-shadow: 0 5px 7px rgba(0, 0, 0, 0.45);
    }

    .service-icon i {
        color: #001E8E;
        font-size: 1.3rem;
    }

    .service-card h4 {
        color: #ffffff;
        font-weight: 700;
        margin: 8px 0 10px;
        font-size: 1.4rem;
        padding-left: 6px;
        line-height: 1.3;
    }

    .service-card p {
        color: rgba(255, 255, 255, 0.68);
        margin: 0 0 12px 0;
        line-height: 1.5;
        padding-left: 6px;
        font-size: 1.05rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 4.5em;
    }

    .know-more-btn {
        color: #1430e4e5;
        text-decoration: none;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        transition: all 0.25s ease;
        padding-left: 6px;
        margin-top: 8px;
        box-shadow: none;
        text-shadow: none;
    }
       
    .know-more-btn:hover {
        transform: translateX(6px);
        box-shadow: none;
        text-shadow: none;
    }

    .know-more-btn i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .know-more-btn:hover i {
        transform: translateX(4px);
    }

    /* Make sure grid spacing is generous on large screens */
    @media (min-width: 1200px) {
        .services-section .col-xl-3 {
            padding-left: 18px;
            padding-right: 18px;
        }
    }

    /* Dark-mode / theme-aware fallbacks (if data-theme used) */
    [data-theme="dark"] .services-section {
        background: #151617;
    }

    [data-theme="dark"] .service-card {
        background: rgba(255, 255, 255, 0.03);
    }

    /* Responsive adjustments for service cards */
    /* Large screens: give a consistent min-height so cards look uniform */
    @media (min-width: 992px) {
        .service-card {
            min-height: 200px;
        }

        .card-body {
            padding: 28px 20px 20px;
        }
    }

    /* Medium screens: slightly reduced heights */
    @media (min-width: 768px) and (max-width: 991px) {
        .service-card {
            min-height: 190px;
        }

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

        .service-card h4 {
            font-size: 1.35rem;
            margin: 8px 0 10px;
        }

        .service-card p {
            font-size: 1.05rem;
            min-height: 4.5em;
        }
    }

    /* Small screens: stack content naturally, remove absolute positioning issues */
    @media (max-width: 767px) {
        .service-card {
            min-height: 0;
        }

        .card-body {
            display: block;
            padding: 24px 18px 18px;
        }

        .service-card p {
            min-height: 4.5em;
            font-size: 1rem;
        }

        .service-icon {
            position: relative;
            top: 0;
            left: 0;
            margin-bottom: 12px;
            transform: translateY(0);
        }

        .service-icon {
            width: 56px;
            height: 56px;
        }

        .service-card h4 {
            font-size: 1.25rem;
            padding-left: 0;
        }

        .service-card p {
            padding-left: 0;
            font-size: 1rem;
            min-height: 4.5em;
        }

        .know-more-btn {
            padding-left: 0;
        }
    }

    /* ========== PRICING / PAYMENT SECTION ========== */
    .pricing-section {
        padding: 64px 0 80px;
        background: var(--surface);
        color: var(--text);
    }

    .pricing-section .badge-small {
        display: inline-block;
        background: rgba(0, 0, 0, 0.06);
        color: var(--text);
        padding: 8px 14px;
        border-radius: 7px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .pricing-title {
        font-size: clamp(1.9rem, 4vw, 2.4rem);
        font-weight: 800;
        margin: 6px 0 28px;
    }

    .price-left {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .price-left-inner {
        width: 100%;
    }

    .price-badge {
        display: inline-block;
        background: #111827;
        color: #fff;
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 0.85rem;
        margin-bottom: 12px;
        width: fit-content;
    }

    .price-figure {
        display: flex;
        align-items: baseline;
        gap: 10px;
        margin-bottom: 12px;
    }

    .price-amount {
        font-size: clamp(3.2rem, 6vw, 5.6rem);
        font-weight: 700;
        color: #111827;
    }

    .price-period {
        font-size: 1rem;
        color: rgba(0, 0, 0, 0.6);
        margin-left: 6px;
    }

    .price-desc {
        color: rgba(17, 24, 39, 0.75);
        margin-top: 8px;
    }

    .price-features h4 {
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--text);
        margin-bottom: 18px;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin: 0 0 16px 0;
        display: grid;
        gap: 12px;
        max-width: 280px;
    }

    .features-list li {
        position: relative;
        padding-left: 32px;
        color: var(--muted);
    }

    .features-list li:before {
        content: '\2713';
        position: absolute;
        left: 0;
        top: 0;
        color: #001E8E;
        font-weight: 700;
    }

    .btn-trial {
        display: inline-block;
        background: #111827;
        color: #fff;
        padding: 10px 18px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
    }

    .trial-note {
        margin-top: 8px;
        color: var(--muted);
        font-size: 0.9rem;
    }

    .price-right {
        background: #001E8E;
        color: #fff;
        padding: 28px;
        border-radius: 8px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 280px;
    }

    .plan-tag {
        display: inline-block;
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .plan-title {
        font-size: 1.75rem;
        margin: 6px 0 18px;
        font-weight: 800;
    }

    .btn-contact {
        display: block;
        width: 100%;
        background: transparent;
        color: #ffffff;
        border: 2px solid #ffffff;
        padding: 12px 18px;
        border-radius: 6px;
        text-align: center;
        font-weight: 700;
        text-decoration: none;
        margin-top: auto;
        transition: all 0.3s ease;
    }
    
    .btn-contact:hover {
        background: #ffffff;
        color: #001E8E;
        border-color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    }

    .plan-note {
        color: rgba(255, 255, 255, 0.9);
        margin: 0 0 20px 0;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 4.5em;
    }

    /* Desktop layout refinements for pricing: separator and larger right card */
    @media (min-width: 992px) {

        /* make the center column show a vertical separator on its left edge */
        .price-features {
            border-left: 1px solid rgba(17, 24, 39, 0.06);
            padding-left: 40px;
            margin-left: 12px;
        }

        .features-list {
            max-width: 280px;
        }

        /* visually enlarge the right card (taller + more padding) without changing grid */
        .price-right {
            padding: 36px 44px;
            min-height: 360px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* vertically center left price content to match reference */
        .price-left-inner {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }

        /* increase left price amount slightly for visual balance */
        .price-amount {
            font-size: 4.2rem;
        }
    }

    @media (max-width: 991px) {
        /* remove the separator on smaller screens to avoid layout issues */
        .price-features {
            border-left: none;
            padding-left: 0;
            margin-left: 0;
        }

        .pricing-section {
            padding: 50px 0 60px;
        }

        .price-left {
            margin-top: 20px;
        }

        .price-right {
            padding: 24px;
            min-height: auto;
        }
    }

    /* Mobile responsive (576px and below) */
    @media (max-width: 576px) {
        .pricing-section {
            padding: 40px 0 50px;
        }

        .pricing-title {
            font-size: 1.75rem;
            margin: 10px 0 20px;
        }

        .price-left {
            margin-top: 15px;
        }

        .price-left-inner {
            text-align: center;
        }

        .price-badge {
            margin: 0 auto 12px;
        }

        .price-figure {
            justify-content: center;
        }

        .price-amount {
            font-size: 2.5rem;
        }

        .price-desc {
            text-align: center;
            font-size: 0.95rem;
        }

        .price-features {
            text-align: center;
            margin-top: 30px;
        }

        .price-features h4 {
            font-size: 1.1rem;
            margin-bottom: 16px;
        }

        .features-list {
            text-align: left;
            max-width: 300px;
            margin: 0 auto 16px;
        }

        .price-right {
            padding: 20px;
            text-align: center;
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 220px;
        }

        .plan-title {
            font-size: 1.5rem;
        }

        .btn-trial,
        .btn-contact {
            width: 100%;
            max-width: 300px;
        }
    }

    /* Tablet responsive (577px - 767px) */
    @media (min-width: 577px) and (max-width: 767px) {
        .pricing-section {
            padding: 45px 0 55px;
        }

        .pricing-title {
            font-size: 1.9rem;
            margin: 8px 0 22px;
        }

        .price-left {
            margin-top: 18px;
        }

        .price-left-inner {
            text-align: center;
        }

        .price-badge {
            margin: 0 auto 10px;
        }

        .price-figure {
            justify-content: center;
        }

        .price-amount {
            font-size: 2.8rem;
        }

        .price-desc {
            text-align: center;
            font-size: 0.95rem;
        }

        .price-features {
            text-align: center;
            margin-top: 25px;
        }

        .price-features h4 {
            font-size: 1.15rem;
            margin-bottom: 18px;
        }

        .features-list {
            text-align: left;
            max-width: 400px;
            margin: 0 auto 18px;
        }

        .price-right {
            padding: 24px;
            text-align: center;
            margin-top: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 240px;
        }

        .plan-title {
            font-size: 1.55rem;
        }

        .btn-trial,
        .btn-contact {
            width: 100%;
            max-width: 350px;
        }

        .pricing-section img {
            height: auto;
            max-height: 300px;
            width: 100%;
            object-fit: contain;
        }
    }

   /* ========== REVIEW SECTION ========== */
.review-section {
    background-color: var(--surface);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.review-section-header {
    margin-bottom: 48px;
}

.review-section-header .badge-small {
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 500;
    margin-bottom: 20px;
}

.review-section-header h2 {
    margin-bottom: 16px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text);
    font-weight: 700;
    line-height: 1.2;
    max-width: 620px;
}

.review-section-header p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.1rem;
}

/* Review Cards Side by Side */
.review-cards-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.review-card {
    background: var(--surface);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.rating i {
    color: #FFD700;
    font-size: 16px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text);
    font-weight: 500;
    margin: 16px 0;
    min-height: 48px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
}

.reviewer-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.review-navigation {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    justify-content: center;
}

.nav-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.nav-dot.active {
    opacity: 1;
    background-color: #001E8E;
    width: 24px;
    border-radius: 12px;
}

/* Image wrapper sizing */
.review-image-wrapper {
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
}

.review-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop 1440px viewport - increase review image height */
@media (min-width: 1440px) {
    .review-image-wrapper {
        height: 700px;
    }
}

/* Hide carousel controls */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

/* Prevent content shift during slide */
.carousel-item {
    transition: transform .6s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .review-section {
        padding: 60px 0;
    }
    
    .review-cards-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .review-image-wrapper {
        height: 400px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .review-section {
        padding: 40px 0;
    }
    
    .review-section-header {
        text-align: center;
    }
    
    .review-section-header h2 {
        font-size: 28px;
    }
    
    .review-section-header p {
        font-size: 16px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-navigation {
        margin-top: 24px;
    }
    
    .review-text {
        min-height: auto;
    }
    
    .review-image-wrapper {
        height: 300px;
    }
}

@media (min-width: 769px) {
    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
}
    /* ========== FOOTER STYLES ========== */
    .site-footer {
        background-color: #111;
        color: #fff;
        position: relative;
    }

    /* container for the blue boxed CTA that sits above the footer */
    .footer-top {
        background: transparent;
        padding: 40px 0;
        position: relative;
    }

    .footer-top-box {
        background-color: #001E8E;
        max-width: 1200px;
        margin: 0 auto;
        padding: 50px 70px;
        border-radius: 12px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.18);
        display: block;
        color: #fff;
        position: relative;
        z-index: 10;
    }

    .footer-top-box .row {
        align-items: center;
    }

    .footer-top-box .col-lg-6:first-child {
        padding-right: 30px;
    }

    .footer-top-box .col-lg-6:last-child {
        padding-left: 30px;
    }

    .footer-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        font-weight: 700;
        margin-bottom: 25px;
        color: #fff;
        line-height: 1.3;
    }

    .footer-subscribe.input-wrapper {
        width: fit-content;
        height: 45px;
        border-radius: 20px;
        padding: 5px;
        box-sizing: content-box;
        display: flex;
        align-items: center;
        background-color: #000000;
        margin-top: 25px;
        gap: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-subscribe .icon {
        width: 30px;
        fill: rgb(255, 255, 255);
        margin-left: 8px;
        transition: all 0.3s;
    }

    .footer-email-input.input {
        max-width: 170px;
        min-width: 150px;
        height: 100%;
        border: none;
        outline: none;
        padding-left: 15px;
        padding-right: 10px;
        background-color: transparent;
        color: white;
        font-size: 1em;
        flex: 1;
        width: auto;
    }

    .footer-email-input.input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .footer-email-input.input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px transparent inset;
        -webkit-text-fill-color: #ffffff;
    }

    .footer-subscribe-btn.Subscribe-btn {
        height: 100%;
        width: 95px;
        border: none;
        border-radius: 15px;
        color: rgb(0, 0, 0);
        cursor: pointer;
        background-color: #ffffff;
        font-weight: 500;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: all 0.3s;
        white-space: nowrap;
        padding: 0 10px;
    }

    .footer-subscribe-btn .arrow {
        position: absolute;
        margin-right: 150px;
        transition: all 0.3s;
        fill: #000;
    }

    .footer-subscribe-btn .subscribe-text {
        transition: opacity 0.3s ease, width 0.3s ease;
        display: inline-block;
    }

    .footer-subscribe.input-wrapper:active .icon {
        transform: scale(1.3);
    }

    .footer-subscribe-btn.Subscribe-btn:hover {
        color: #000000;
        background-color: #ffffff;
    }

    .footer-subscribe-btn.Subscribe-btn:hover .subscribe-text {
        opacity: 0;
        width: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, width 0.3s ease;
    }

    .footer-subscribe-btn.Subscribe-btn:hover .arrow {
        margin-right: 0;
        animation: jello-vertical 0.9s both;
        transform-origin: right;
        fill: #000000;
    }

    @keyframes jello-vertical {
        0% {
            transform: scale3d(1, 1, 1);
        }
        30% {
            transform: scale3d(0.75, 1.25, 1);
        }
        40% {
            transform: scale3d(1.25, 0.75, 1);
        }
        50% {
            transform: scale3d(0.85, 1.15, 1);
        }
        65% {
            transform: scale3d(1.05, 0.95, 1);
        }
        75% {
            transform: scale3d(0.95, 1.05, 1);
        }
        100% {
            transform: scale3d(1, 1, 1);
        }
    }

    .footer-subscribe-btn.Subscribe-btn:active {
        transform: scale(0.9);
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 0;
        padding: 10px 0;
    }

    .contact-icon {
        display: inline-block;
        font-size: 1.3rem;
        color: #fff;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .contact-text {
        line-height: 1.6;
        flex: 1;
    }

    .contact-text h6 {
        margin: 0 0 6px 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        line-height: 1.4;
    }

    .contact-text p {
        margin: 0;
        font-size: 0.95rem;
        font-weight: 500;
        color: #fff;
        line-height: 1.6;
    }

    .footer-main {
        background-color: #111;
        padding: 80px 0 40px;
        position: relative;
        z-index: 1;
    }

    .footer-logo {
        display: inline-block;
        margin-bottom: 20px;
    }

    .footer-logo-circle {
        width: 100px;
        height: 100px;
        background-color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .footer-logo-img {
        height: 70px;
        width: auto;
        object-fit: contain;
    }

    .footer-desc {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-menu-title {
        color: #fff;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu li {
        margin-bottom: 12px;
    }

    .footer-menu a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s;
    }

    .footer-menu a:hover {
        color: #fff;
    }

    .jobs-badge {
        background-color: #001E8E;
        color: #fff;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 0.75rem;
        margin-left: 6px;
    }

    .app-buttons {
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
    }

    .app-btn img {
        height: 40px;
        width: auto;
    }

    .social-title {
        color: #fff;
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .social-links {
        display: flex;
        gap: 15px;
        position: relative;
        z-index: 1000 !important;
        pointer-events: auto !important;
    }

    .social-link {
        width: 36px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none !important;
        transition: background-color 0.2s;
        cursor: pointer !important;
        pointer-events: auto !important;
        position: relative;
        z-index: 1001 !important;
        user-select: none;
        -webkit-tap-highlight-color: rgba(0, 30, 142, 0.3);
        touch-action: manipulation;
    }

    .social-link:hover {
        background-color: #001E8E;
        color: #fff;
    }

    .social-link:active {
        transform: scale(0.95);
    }

    .social-link i {
        pointer-events: none !important;
        z-index: 1002;
        position: relative;
    }

    /* Ensure footer social section is clickable */
    .footer-main .social-links,
    .footer-main .social-links * {
        pointer-events: auto !important;
    }

    .footer-main .social-link {
        display: inline-flex !important;
        text-decoration: none !important;
        pointer-events: auto !important;
        z-index: 1001 !important;
    }

    /* Ensure parent container doesn't block clicks */
    .footer-main .col-lg-4.col-md-4:last-child {
        position: relative;
        z-index: 1;
        pointer-events: auto !important;
    }

    /* Additional fix for social links container */
    .footer-main .col-lg-4.col-md-4 .social-links-container,
    .footer-main .col-lg-4.col-md-4 {
        pointer-events: auto !important;
    }

    .footer-bottom {
        background-color: #111;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
    }

    .copyright {
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
        font-size: 0.9rem;
    }

    .language-btn {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        padding: 8px 16px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        font-size: 0.9rem;
    }

    .language-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Footer Social Media Section */
    .footer-social-section {
        background-color: #111;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 0;
        text-align: center;
    }

    .footer-follow-title {
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-social-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    /* Social Media Button Styles */
    .footer-social-button {
        background-color: #1877F2;
        border: none;
        border-radius: 50%;
        box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: 500px;
        transition: transform 0.5s, box-shadow 0.5s;
        cursor: pointer;
        padding: 0;
        margin: 0;
    }

    .footer-social-button:hover {
        transform: rotate(-360deg);
        box-shadow: 0 0 20px 0 rgba(0, 0, 255, 0.5);
    }

    /* Individual Social Media Colors */
    .footer-facebook {
        background-color: #1877F2;
    }

    .footer-facebook:hover {
        box-shadow: 0 0 20px 0 rgba(24, 119, 242, 0.5);
    }

    .footer-instagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .footer-instagram:hover {
        box-shadow: 0 0 20px 0 rgba(225, 48, 108, 0.5);
    }

    .footer-twitter {
        background-color: #1DA1F2;
    }

    .footer-twitter:hover {
        box-shadow: 0 0 20px 0 rgba(29, 161, 242, 0.5);
    }

    .footer-youtube {
        background-color: #FF0000;
    }

    .footer-youtube:hover {
        box-shadow: 0 0 20px 0 rgba(255, 0, 0, 0.5);
    }

    .footer-linkedin {
        background-color: #0077B5;
    }

    .footer-linkedin:hover {
        box-shadow: 0 0 20px 0 rgba(0, 119, 181, 0.5);
    }

    /* No Link Style */
    .no-link-style {
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    /* Social Icon SVG */
    .footer-social-icon {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
        transition: transform 0.5s;
        width: 32px;
        height: 32px;
    }

    .footer-social-button:hover .footer-social-icon {
        transform: scale(1.5);
        filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, 0.9));
    }

    /* Mobile responsive */
    @media (max-width: 576px) {
        .footer-social-section {
            padding: 25px 0;
        }

        .footer-follow-title {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .footer-social-button {
            width: 40px;
            height: 40px;
        }

        .footer-social-icon {
            width: 28px;
            height: 28px;
        }

        .footer-social-links {
            gap: 12px;
        }
    }

    @media (max-width: 991px) {
        .footer-title {
            font-size: 2rem;
        }

        .footer-contact-item {
            margin-bottom: 30px;
        }
        .footer-top-box {
            padding: 28px 22px;
        }

        .footer-email-input.input {
            max-width: 200px;
            min-width: 180px;
            font-size: 0.95em;
        }
    }

    @media (max-width: 767px) {
        .footer-subscribe.input-wrapper {
            flex-direction: row;
            height: 45px;
            padding: 5px;
            width: 100%;
        }

        .footer-subscribe-btn.Subscribe-btn {
            width: auto;
            min-width: 95px;
            height: 100%;
            flex-shrink: 0;
        }

        .footer-email-input.input {
            max-width: none;
            width: auto;
            min-width: 120px;
            flex: 1;
            padding: 0 15px;
            font-size: 0.95em;
            height: 100%;
        }

        .footer-bottom {
            text-align: center;
        }

        .footer-bottom .d-flex {
            flex-direction: column;
            gap: 20px;
        }
    }

    @media (max-width: 576px) {
        .footer-top {
            padding: 40px 0;
        }

        .footer-title {
            font-size: 1.75rem;
            text-align: center;
        }

        .footer-main {
            padding: 50px 0;
        }

        .app-buttons {
            flex-direction: column;
            align-items: center;
        }

        .social-links {
            justify-content: center;
        }

        .social-title {
            text-align: center;
        }

        .footer-logo-circle {
            width: 80px;
            height: 80px;
            padding: 12px;
        }

        .footer-logo-img {
            height: 56px;
        }

        .footer-top-box {
            margin: 0 16px;
            padding: 18px 14px;
            border-radius: 10px;
        }

        .footer-subscribe.input-wrapper {
            flex-direction: row;
            gap: 0;
            height: 45px;
            padding: 5px;
            width: 100%;
        }

        .footer-email-input.input {
            width: auto;
            max-width: none;
            min-width: 100px;
            flex: 1;
            padding: 0 12px;
            font-size: 0.9em;
            height: 100%;
        }

        .footer-subscribe-btn.Subscribe-btn {
            width: auto;
            min-width: 90px;
            height: 100%;
            flex-shrink: 0;
        }
    }

    /* ========== iPad Mini Responsive Styles (768px - 1024px) ========== */
    @media (min-width: 768px) and (max-width: 1024px) {
        /* Hero Section Adjustments */
        .hero-section {
            padding: 60px 0 40px;
            margin-top: 70px;
        }

        .hero-title {
            font-size: 2.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            margin: 20px 0;
        }

        .main-image-container {
            max-width: 450px;
            margin-top: 30px;
        }

        .main-img {
            width: 100%;
            height: auto;
        }

        /* Visitor Card Adjustments */
        .visitor-card {
            bottom: -25px;
            left: -35px;
            padding: 12px 14px;
            min-width: 200px;
        }

        .vis-number {
            font-size: 1rem;
        }

        .vis-text {
            font-size: 0.8rem;
        }

        .avatar {
            width: 28px;
            height: 28px;
        }

        /* About Section */
        .about-feature-section {
            padding: 60px 0;
        }

        .about-feature-images-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            width: 100%;
        }

        /* First image */
        .about-img-main {
            grid-column: 1;
            grid-row: 1;
        }

        /* Second image from side-stats container */
        .about-img-side-stats {
            grid-column: 2;
            grid-row: 1;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .about-img-side {
            order: 1;
            width: 100%;
        }

        /* Stats below both images */
        .about-feature-stats {
            grid-column: 1 / -1;
            grid-row: 2;
            order: 2;
            width: 100%;
            justify-content: center;
            margin: 20px 0 0 0;
            flex-direction: row;
            gap: 18px;
        }

        .about-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }

        .about-feature-title {
            font-size: 2rem;
        }

        .about-feature-desc {
            font-size: 1rem;
        }

        .about-feature-btn {
            width: 100%;
            max-width: 300px;
            text-align: center;
            padding: 14px 32px;
            font-size: 1rem;
            z-index: 100;
            position: relative;
            pointer-events: auto !important;
        }

        /* Services Section */
        .services-section {
            padding: 60px 0;
        }

        .service-card {
            min-height: 180px;
        }

        .service-card h4 {
            font-size: 1.3rem;
        }

        .service-card p {
            font-size: 0.95rem;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 50px 0 60px;
        }

        .pricing-title {
            font-size: 2rem;
            margin: 10px 0 24px;
        }

        /* Pricing layout adjustments */
        .pricing-section .row {
            align-items: flex-start;
        }

        .pricing-section .col-lg-4 {
            margin-bottom: 30px;
        }

        /* Left price card */
        .price-left {
            margin-top: 20px;
        }

        .price-left-inner {
            text-align: center;
        }

        .price-badge {
            margin: 0 auto 12px;
        }

        .price-figure {
            justify-content: center;
        }

        .price-amount {
            font-size: 3rem;
        }

        .price-desc {
            text-align: center;
            font-size: 0.95rem;
        }

        /* Features section */
        .price-features {
            text-align: center;
            padding: 0;
        }

        .price-features h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .features-list {
            text-align: left;
            max-width: 100%;
            margin: 0 auto 20px;
        }

        .btn-trial {
            width: 100%;
            max-width: 100%;
        }

        /* Right enterprise card */
        .price-right {
            padding: 28px;
            text-align: center;
            min-height: 260px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .plan-title {
            font-size: 1.6rem;
        }

        .btn-contact {
            width: 100%;
            max-width: 100%;
        }

        /* Image adjustments */
        .pricing-section img {
            height: auto;
            max-height: 280px;
            width: 100%;
            object-fit: contain;
        }

        /* Review Section */
        .review-section {
            padding: 60px 0;
        }

        .review-section-header h2 {
            font-size: 2rem;
        }

        .review-card {
            padding: 24px;
        }

        .review-image-wrapper {
            height: 350px;
        }

        /* Footer Top Box */
        .footer-top-box {
            padding: 45px 60px;
        }

        .footer-title {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .footer-subscribe.input-wrapper {
            margin-top: 20px;
            height: 40px;
            width: 100%;
            flex-direction: row;
        }

        .footer-email-input.input {
            padding: 0 12px;
            font-size: 0.9rem;
            max-width: none;
            min-width: 150px;
            width: auto;
            flex: 1;
            height: 100%;
        }

        .footer-subscribe-btn.Subscribe-btn {
            width: auto;
            min-width: 90px;
            font-size: 0.9rem;
            padding: 0 8px;
            height: 100%;
            flex-shrink: 0;
        }

        /* Contact Items */
        .footer-contact-item {
            padding: 8px 0;
            gap: 12px;
        }

        .contact-icon {
            font-size: 1.1rem;
        }

        .contact-text h6 {
            font-size: 0.85rem;
        }

        .contact-text p {
            font-size: 0.9rem;
        }

        /* Companies Carousel */
        .carousel-heading {
            margin-bottom: 20px;
        }

        .carousel-logo {
            height: 35px;
            width: 70px;
            object-fit: contain;
        }

        /* Trustpilot Card */
        .trustpilot-card {
            padding: 10px 14px;
            top: -15px;
        }

        .tp-rating {
            font-size: 0.85rem;
        }

        .tp-reviews {
            font-size: 0.75rem;
        }
    }

    /* iPad Mini Landscape Orientation */
    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
        .hero-section {
            padding: 70px 0 50px;
        }

        .hero-title {
            font-size: 2.8rem;
        }

        .main-image-container {
            max-width: 480px;
        }

        .footer-top-box {
            padding: 50px 65px;
        }

        .about-img {
            height: 300px;
        }
    }

    /* ========== Chatbot Widget ========== */
    .chatbot-widget {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 1200;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
    }

    .chatbot-floating-btn {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        border: none;
        background: var(--accent);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 15px 35px rgba(0, 30, 142, 0.35);
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        pointer-events: auto;
    }

    .chatbot-floating-btn:hover,
    .chatbot-floating-btn:focus-visible {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 30, 142, 0.45);
        outline: none;
    }

    .chatbot-floating-btn:active {
        transform: scale(0.96);
    }

    .chatbot-floating-btn .chatbot-btn-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .chatbot-panel {
        width: min(380px, calc(100vw - 32px));
        max-height: min(560px, calc(100vh - 120px));
        background: #fff;
        border-radius: 22px;
        box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
        border: 1px solid rgba(15, 23, 42, 0.06);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        opacity: 0;
        transform: translateY(16px) scale(0.98);
        transition: opacity 0.25s ease, transform 0.25s ease;
        pointer-events: none;
        background-clip: padding-box;
    }

    .chatbot-panel.open {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .chatbot-panel-header {
        padding: 18px 22px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        background: linear-gradient(120deg, rgba(0, 30, 142, 0.08), rgba(0, 30, 142, 0));
    }

    .chatbot-panel-title {
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
        color: var(--text);
    }

    .chatbot-panel-status {
        font-size: 0.85rem;
        color: var(--accent);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .chatbot-panel-status::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #22c55e;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
        animation: chatbotPulse 2s infinite;
    }

    @keyframes chatbotPulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
        }

        70% {
            transform: scale(1.35);
            box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
        }
    }

    .chatbot-close-btn {
        border: none;
        background: rgba(15, 23, 42, 0.05);
        color: #0f172a;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .chatbot-close-btn:hover {
        background: rgba(0, 30, 142, 0.12);
        transform: rotate(90deg);
    }

    .chatbot-messages {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
        background: #f8fafc;
        display: flex;
        flex-direction: column;
        gap: 14px;
        scroll-behavior: smooth;
    }

    .chatbot-empty-copy {
        text-align: center;
        color: #64748b;
        font-size: 0.92rem;
    }

    .chatbot-message {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 12px;
    }

    .chatbot-message.user {
        flex-direction: row-reverse;
    }

    .chatbot-message-content {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 0;
    }

    .chatbot-avatar {
        width: 34px;
        height: 34px;
        background: var(--accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
        font-size: 0.9rem;
    }

    .chatbot-message.user .chatbot-avatar {
        background: #0f172a;
    }

    .chatbot-bubble {
        max-width: 78%;
        background: #fff;
        border-radius: 18px;
        padding: 12px 14px;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #0f172a;
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    }

    .chatbot-message.user .chatbot-bubble {
        background: #001E8E;
        color: #fff;
        border-bottom-right-radius: 6px;
    }

    .chatbot-typing {
        display: flex;
        gap: 6px;
        align-items: center;
        font-size: 0.85rem;
        color: #001E8E;
        padding: 0 14px 8px 46px;
    }

    .chatbot-typing-dot {
        width: 6px;
        height: 6px;
        background: currentColor;
        border-radius: 50%;
        animation: chatbotTyping 1s infinite ease-in-out;
    }

    .chatbot-typing-dot:nth-child(2) {
        animation-delay: 0.15s;
    }

    .chatbot-typing-dot:nth-child(3) {
        animation-delay: 0.3s;
    }

    @keyframes chatbotTyping {
        0%, 80%, 100% {
            transform: scale(0);
            opacity: 0.3;
        }

        40% {
            transform: scale(1);
            opacity: 1;
        }
    }

    .chatbot-input-area {
        padding: 16px 20px 20px;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
        background: #fff;
        display: flex;
        gap: 12px;
        align-items: flex-end;
    }

    .chatbot-textarea {
        flex: 1;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        padding: 10px 12px;
        font-size: 0.95rem;
        resize: none;
        min-height: 46px;
        max-height: 130px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        font-family: inherit;
    }

    .chatbot-textarea:focus {
        outline: none;
        border-color: #001E8E;
        box-shadow: 0 0 0 3px rgba(0, 30, 142, 0.12);
    }

    .chatbot-send-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: none;
        background: #001E8E;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .chatbot-send-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .chatbot-send-btn:not(:disabled):hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 18px rgba(0, 30, 142, 0.35);
    }

    .chatbot-send-btn:active {
        transform: scale(0.95);
    }

    .chatbot-widget[data-hidden="true"] {
        display: none;
    }

    .chatbot-typing-hidden {
        display: none !important;
    }

    /* Suggestion Buttons */
    .chatbot-suggestions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 0 0 0;
        margin-top: 8px;
    }

    .chatbot-suggestion-btn {
        display: inline-block;
        padding: 8px 14px;
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        font-size: 0.85rem;
        color: #0f172a;
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
        font-weight: 500;
    }

    .chatbot-suggestion-btn:hover {
        background: #001E8E;
        color: #fff;
        border-color: #001E8E;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 30, 142, 0.2);
    }

    .chatbot-suggestion-btn:active {
        transform: translateY(0);
    }

    @media (max-width: 768px) {
        .chatbot-widget {
            right: 18px;
            bottom: 18px;
        }

        .chatbot-panel {
            width: min(360px, calc(100vw - 24px));
            border-radius: 18px;
        }
    }

    @media (max-width: 520px) {
        .chatbot-widget {
            right: 12px;
            bottom: 16px;
        }

        .chatbot-panel {
            width: calc(100vw - 20px);
        }

        .chatbot-floating-btn {
            width: 56px;
            height: 56px;
        }

        .chatbot-bubble {
            max-width: 82%;
        }
    }
