        body,
        body h1,
        body h2,
        body h3,
        body h4,
        body h5,
        body h6,
        body p,
        body span,
        body a,
        body li,
        body button,
        body input,
        body textarea,
        body select,
        body label {
            font-family: "Poppins", sans-serif;
        }

        .circlenew:hover {
            background-color: #2252BC;
            color: white;

        }

        @keyframes slide {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-100%);
            }
        }


        .logos {
            overflow: hidden;
            padding: 20px 0;
            background: white;
            white-space: nowrap;
            position: relative;
        }

        .logos:before,
        .logos:after {
            position: absolute;
            top: 0;
            width: 250px;
            height: 100%;
            content: "";
            z-index: 2;
        }

        .logos:before {
            left: 0;
            background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
        }

        .logos:after {
            right: 0;
            background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
        }

        /* .logos:hover .logos-slide {
  animation-play-state: paused;
} */

        .logos-slide {
            display: inline-block;
            animation: 35s slide infinite linear;
        }

        label {
            font-weight: 700;
            margin-bottom: 0 !important;
            
        }

        input[type=text], input[type=tel], input[type=email], textarea {
  width: 100%;
  padding: 4px 15px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px !important;
  box-sizing: border-box;
}

select {
  width: 100%;
    padding: 5px 15px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px !important;
    box-sizing: border-box;
}


option {
  width: 100% !important;
  padding: 4px 15px !important;
  margin: 8px 0 !important;
  display: inline-block !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
}

input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.required:after{
    content: "*";
    font-size: 20px;
    color: red;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 5px 25px;
    /* padding: var(--bs-modal-padding); */
}

.consultation-modal-dialog {
    max-width: 600px;
    width: calc(100% - 28px);
    margin: 8px auto;
    position: relative;
    overflow: visible;
}

.consultation-modal-content {
    width: 100%;
    max-height: calc(100vh - 16px);
    border: 0;
    border-radius: 24px;
    overflow: visible;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    box-shadow: 0 28px 64px rgba(8, 23, 54, 0.22);
}

.consultation-modal-layout {
    display: block;
}

.consultation-modal-form-wrap {
    padding: 18px;
    background: transparent;
}

.consultation-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.consultation-modal-copy {
    max-width: 420px;
}

.consultation-modal-kicker {
    display: inline-block;
    margin-bottom: 6px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(34, 82, 188, 0.08);
    color: #2252bc;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.consultation-modal-title {
    margin: 0 0 4px;
    color: #0e224b;
    font-size: 1.2rem;
    line-height: 1.15;
}

.consultation-modal-subtitle {
    margin: 0;
    color: #5f6f90;
    font-size: 0.84rem;
    line-height: 1.35;
}

.consultation-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(14, 34, 75, 0.12);
    background: #fff;
    color: #0e224b;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(8, 23, 54, 0.08);
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    z-index: 5;
}

.consultation-modal-close:hover {
    background: #0e224b;
    color: #fff;
    border-color: #0e224b;
}

.consultation-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.consultation-modal-field-full {
    grid-column: 1 / -1;
}

.consultation-modal-form label {
    display: block;
    width: 100%;
    text-align: left;
    color: #0e224b;
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 4px !important;
}

.consultation-modal-form {
    width: 100%;
}

.consultation-modal-form input[type=text],
.consultation-modal-form input[type=tel],
.consultation-modal-form input[type=email],
.consultation-modal-form textarea,
.consultation-modal-form select {
    width: 100%;
    min-height: 40px;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid #d7e0ee;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.96);
    color: #0e224b;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    font-size: 0.86rem;
}

.consultation-modal-form textarea {
    min-height: 64px;
    resize: none;
}

.consultation-modal-form input:focus,
.consultation-modal-form textarea:focus,
.consultation-modal-form select:focus {
    outline: 0;
    border-color: #2252bc;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(34, 82, 188, 0.12);
}

.consultation-modal-captcha {
    margin-top: 0;
    transform: scale(0.88);
    transform-origin: left top;
}

.consultation-modal-error {
    min-height: 12px;
    margin-bottom: 0;
    font-size: 0.78rem;
}

.consultation-modal-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0;
}

.consultation-modal-submit {
    min-width: 180px;
    padding: 10px 16px;
    border: 0;
    background: #f28330;
    color: #fff;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.consultation-modal-submit:hover {
    background: #df731e;
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(242, 131, 48, 0.28);
}

#careerFooterModal .talent-enquiry-close {
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(17, 42, 96, 0.08);
    border-radius: 14px;
    background: #f7faff;
    color: #102443;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    z-index: 4;
}

#careerFooterModal .talent-enquiry-close:hover {
    background: #2252bc;
    color: #fff;
}

#careerFooterModal .talent-enquiry-close span {
    display: block;
    transform: translateY(-1px);
}

#careerFooterModal .talent-enquiry-form-wrap {
    padding-top: 68px;
}

#careerFooterModal .talent-enquiry-submit {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 0;
    background: #f28330;
    box-shadow: 0 14px 28px rgba(17, 42, 96, 0.18);
}

#careerFooterModal .talent-enquiry-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #2252bc;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
    z-index: -1;
}

#careerFooterModal .talent-enquiry-submit:hover {
    box-shadow: 0 16px 30px rgba(17, 42, 96, 0.22);
}

#careerFooterModal .talent-enquiry-submit:hover::before {
    transform: scaleX(1);
}

.modal-backdrop {
    display: block !important;
    background: #000 !important;
    opacity: 0.6 !important;
}

body.consultation-modal-open {
    overflow: hidden !important;
}

body.consultation-modal-open,
body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

.modal {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

html.consultation-modal-open {
    overflow: hidden !important;
}

#exampleModalCenter {
    padding: 8px !important;
    padding-right: 0 !important;
    background: rgba(0, 0, 0, 0.6) !important;
}

#exampleModalCenter.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

#exampleModalCenter .modal-dialog {
    width: calc(100% - 24px);
}

#exampleModalCenter .modal-content,
#exampleModalCenter .modal-body {
    overflow: visible;
}

@media (max-width: 575px) {
    .consultation-modal-dialog {
        width: calc(100% - 18px);
        max-width: none;
        margin: 0 auto;
    }

    .consultation-modal-header {
        margin-bottom: 10px;
    }

    .consultation-modal-close {
        top: -10px;
        right: -4px;
    }

    .consultation-modal-title {
        font-size: 1rem;
    }

    .consultation-modal-subtitle {
        font-size: 0.78rem;
        line-height: 1.3;
    }

    .consultation-modal-form-wrap {
        padding: 14px 12px;
    }

    .consultation-modal-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .consultation-modal-captcha {
        transform: scale(0.76);
        transform-origin: left top;
        margin-bottom: -24px;
    }

    .consultation-modal-actions {
        justify-content: flex-start;
    }

    #careerFooterModal .talent-enquiry-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    #careerFooterModal .talent-enquiry-form-wrap {
        padding-top: 58px;
    }
}

        .logos-slide img {
            display: inline-block;
            justify-content: center;
            align-items: center;
            width: 100px;
            margin: 0 20px;
        }

        @keyframes clientLogoScroll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-100%);
            }
        }

        .client-logos-marquee {
            position: relative;
            display: flex;
            overflow: hidden;
            align-items: center;
            width: 100vw;
            margin-left: calc(50% - 50vw);
            padding: 8px 24px;
        }

        .client-logos-marquee::before,
        .client-logos-marquee::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }

        .client-logos-marquee::before {
            left: 0;
            background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
        }

        .client-logos-marquee::after {
            right: 0;
            background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
        }

        .client-logos-track {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-shrink: 0;
            min-width: max-content;
            animation: clientLogoScroll 90s linear infinite;
        }

        .client-logo-item {
            width: 132px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }

        .client-logo-item img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
        }

        @media (max-width: 767px) {
            .client-logos-marquee::before,
            .client-logos-marquee::after {
                width: 48px;
            }

            .client-logos-marquee {
                padding: 8px 12px;
            }

            .client-logos-track {
                animation-duration: 68s;
                gap: 18px;
            }

            .client-logo-item {
                width: 110px;
                height: 62px;
            }
        }

        .regulated-env-section {
            position: relative;
            margin-top: 0 !important;
            background: transparent !important;
        }

        .regulated-env-shell {
            position: relative;
            z-index: 1;
        }

        .regulated-env-head {
            width: 100%;
            max-width: none;
            margin: 0 auto 26px;
            text-align: center;
        }

        .regulated-env-title {
            margin: 0;
            color: #000;
            font-size: clamp(1.85rem, 2.4vw, 2.45rem);
            line-height: 1.1;
            letter-spacing: -0.03em;
            white-space: nowrap;
        }

        .regulated-env-head::after {
            content: "";
            display: block;
            width: min(100%, 180px);
            height: 2px;
            margin: 16px auto 0;
            background: linear-gradient(90deg, rgba(34, 82, 188, 0) 0%, #2252bc 25%, #f28330 75%, rgba(242, 131, 48, 0) 100%);
        }

        .regulated-env-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0;
            align-items: center;
            border-top: 1px solid rgba(16, 36, 67, 0.08);
            border-bottom: 1px solid rgba(16, 36, 67, 0.08);
        }

        .regulated-env-logo-wrap {
            position: relative;
            min-height: 122px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px 20px;
        }

        .regulated-env-logo-wrap::after {
            content: "";
            position: absolute;
            top: 24px;
            right: 0;
            width: 1px;
            height: calc(100% - 48px);
            background: rgba(16, 36, 67, 0.08);
        }

        .regulated-env-logo-wrap:last-child::after {
            display: none;
        }

        .regulated-env-logo-wrap img {
            max-width: min(100%, 210px);
            max-height: 94px;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
            filter: saturate(1.02);
        }

        @media (max-width: 991px) {
            .regulated-env-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                row-gap: 0;
            }

            .regulated-env-logo-wrap:nth-child(2n)::after {
                display: none;
            }

            .regulated-env-logo-wrap:nth-child(-n + 2) {
                border-bottom: 1px solid rgba(16, 36, 67, 0.08);
            }
        }

        @media (max-width: 575px) {
            .regulated-env-section {
                padding: 0 0 44px !important;
            }

            .regulated-env-head {
                margin-bottom: 20px;
            }

            .regulated-env-title {
                white-space: normal;
            }

            .regulated-env-grid {
                grid-template-columns: 1fr;
                border-top: 1px solid rgba(16, 36, 67, 0.08);
                border-bottom: 1px solid rgba(16, 36, 67, 0.08);
            }

            .regulated-env-logo-wrap {
                min-height: 98px;
                padding: 14px 10px;
                border-bottom: 1px solid rgba(16, 36, 67, 0.08);
            }

            .regulated-env-logo-wrap::after {
                display: none;
            }

            .regulated-env-logo-wrap:nth-child(-n + 2) {
                border-bottom: 1px solid rgba(16, 36, 67, 0.08);
            }

            .regulated-env-logo-wrap:last-child {
                border-bottom: 0;
            }
        }

        .backgdhome {
            position: relative;
            display: flex;
            align-items: center;
            min-height: 80vh;
            padding: 100px 0 70px;
            background-image:
                linear-gradient(135deg, rgba(3, 12, 29, 0.76), rgba(6, 18, 40, 0.58)),
                url(../img/Banner-bluelobster.jpg);
            background-size: cover, 112%;
            background-repeat: no-repeat;
            background-position: center, center;
            animation: bannerBackgroundFloat 36s ease-in-out infinite;
            overflow: hidden;
        }

        .backgdhome::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(3, 13, 31, 0.48), rgba(5, 17, 38, 0.3)),
                radial-gradient(circle at 50% 34%, rgba(0, 0, 0, 0.2), transparent 48%),
                radial-gradient(circle at top left, rgba(242, 131, 48, 0.08), transparent 34%),
                radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 28%);
            animation: bannerGlow 8s ease-in-out infinite alternate;
            pointer-events: none;
        }

        .backgdhome::after {
            content: "";
            position: absolute;
            inset: -10%;
            background:
                radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.08), transparent 22%),
                radial-gradient(circle at 82% 26%, rgba(242, 131, 48, 0.12), transparent 24%),
                radial-gradient(circle at 70% 78%, rgba(34, 82, 188, 0.12), transparent 22%);
            mix-blend-mode: screen;
            opacity: 0.56;
            animation: bannerOrbitalDrift 28s ease-in-out infinite alternate;
            pointer-events: none;
        }

        .banner-motion-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
            background-size: 90px 90px;
            mask-image: linear-gradient(180deg, transparent 8%, rgba(0, 0, 0, 0.88) 32%, rgba(0, 0, 0, 0.92) 76%, transparent 100%);
            opacity: 0.16;
            animation: bannerGridDrift 36s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        .banner-particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        .banner-particles span {
            position: absolute;
            display: block;
            border-radius: 50%;
            opacity: 0;
            filter: blur(0.4px);
            animation: bannerParticleFloat 24s linear infinite;
        }

        .banner-particles span:nth-child(1) {
            left: 8%;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.32);
            animation-delay: -2s;
            animation-duration: 22s;
        }

        .banner-particles span:nth-child(2) {
            left: 18%;
            width: 6px;
            height: 6px;
            background: rgba(242, 131, 48, 0.5);
            animation-delay: -8s;
            animation-duration: 26s;
        }

        .banner-particles span:nth-child(3) {
            left: 30%;
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.22);
            animation-delay: -11s;
            animation-duration: 25s;
        }

        .banner-particles span:nth-child(4) {
            left: 44%;
            width: 7px;
            height: 7px;
            background: rgba(114, 177, 255, 0.42);
            animation-delay: -5s;
            animation-duration: 23s;
        }

        .banner-particles span:nth-child(5) {
            left: 58%;
            width: 14px;
            height: 14px;
            background: rgba(242, 131, 48, 0.2);
            animation-delay: -13s;
            animation-duration: 28s;
        }

        .banner-particles span:nth-child(6) {
            left: 72%;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.24);
            animation-delay: -1s;
            animation-duration: 18s;
        }

        .banner-particles span:nth-child(7) {
            left: 84%;
            width: 11px;
            height: 11px;
            background: rgba(114, 177, 255, 0.3);
            animation-delay: -9s;
            animation-duration: 21s;
        }

        .banner-particles span:nth-child(8) {
            left: 92%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.3);
            animation-delay: -15s;
            animation-duration: 14s;
        }

        .banner-particles span:nth-child(n+6) {
            display: none;
        }

        .home-banner-content {
            position: relative;
            max-width: 860px;
            margin: 0 auto;
            text-align: center;
            color: #fff;
            animation: bannerContentRise 1s ease-out both;
            z-index: 2;
        }

        .home-banner-content h1,
        .home-banner-content p {
            color: #fff !important;
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
        }

        .home-banner-title {
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            font-size: clamp(2.8rem, 5.2vw, 5rem);
            line-height: 1.08;
        }

        .home-banner-subtitle {
            display: inline-block;
            margin-bottom: 18px;
            padding: 8px 18px;
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .home-banner-subtitle::after {
            content: "";
            display: inline-block;
            width: 8px;
            height: 8px;
            margin-left: 10px;
            background: #f28330;
            border-radius: 50%;
            box-shadow: 0 0 0 0 rgba(242, 131, 48, 0.7);
            animation: bannerPulseDot 1.8s ease-out infinite;
            vertical-align: middle;
        }

        .home-banner-actions {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 14px;
        }

        .banner-glass-squares {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }

        .banner-glass-squares span {
            position: absolute;
            display: block;
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
            animation: bannerGlassFloat 10s ease-in-out infinite;
        }

        .banner-glass-squares span:nth-child(1) {
            top: 18%;
            left: 6%;
            width: 92px;
            height: 92px;
        }

        .banner-glass-squares span:nth-child(2) {
            top: 28%;
            right: 8%;
            width: 62px;
            height: 62px;
            animation-delay: -3s;
        }

        .banner-glass-squares span:nth-child(3) {
            right: 14%;
            bottom: 16%;
            width: 120px;
            height: 120px;
            animation-delay: -5s;
        }

        .banner-glass-squares span::before {
            content: "";
            position: absolute;
            inset: 12px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            opacity: 0.9;
        }

        .home-banner-btn {
            min-width: 190px;
            padding: 12px 22px;
            border-radius: 0;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        .home-banner-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
        }

        .home-banner-btn-primary {
            background: #f28330;
            border: 2px solid #f28330;
            color: #fff;
        }

        .home-banner-btn-primary:hover {
            background: #ff9a4d;
            border-color: #ff9a4d;
            color: #fff;
        }

        .home-banner-btn-secondary {
            background: rgba(10, 20, 42, 0.34);
            border: 2px solid rgba(255, 255, 255, 0.68);
            color: #fff;
            backdrop-filter: blur(6px);
        }

        .home-banner-btn-secondary:hover {
            background: #fff;
            border-color: #fff;
            color: #1149a3;
        }

        @keyframes bannerContentRise {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bannerGlow {
            from {
                transform: scale(1);
                opacity: 0.85;
            }
            to {
                transform: scale(1.08);
                opacity: 1;
            }
        }

        @keyframes bannerBackgroundFloat {
            0% {
                background-position: center, 50% 50%;
                background-size: cover, 108%;
            }
            25% {
                background-position: center, 53% 47%;
                background-size: cover, 114%;
            }
            50% {
                background-position: center, 48% 54%;
                background-size: cover, 120%;
            }
            75% {
                background-position: center, 51% 49%;
                background-size: cover, 114%;
            }
            100% {
                background-position: center, 50% 50%;
                background-size: cover, 108%;
            }
        }

        @keyframes bannerOrbitalDrift {
            0% {
                transform: translate3d(-1.5%, -1%, 0) scale(1);
            }
            50% {
                transform: translate3d(1.5%, 1%, 0) scale(1.04);
            }
            100% {
                transform: translate3d(-1%, 1.5%, 0) scale(1.02);
            }
        }

        @keyframes bannerParticleFloat {
            0% {
                transform: translate3d(0, 106%, 0) scale(0.6);
                opacity: 0;
            }
            15% {
                opacity: 1;
            }
            50% {
                transform: translate3d(18px, 40vh, 0) scale(1);
                opacity: 0.9;
            }
            85% {
                opacity: 0.45;
            }
            100% {
                transform: translate3d(-14px, -14vh, 0) scale(0.75);
                opacity: 0;
            }
        }

        @keyframes bannerGridDrift {
            0% {
                transform: translate3d(0, 0, 0);
            }
            100% {
                transform: translate3d(-45px, -32px, 0);
            }
        }

        @keyframes bannerGlassFloat {
            0% {
                transform: translate3d(0, 0, 0);
            }
            50% {
                transform: translate3d(0, -16px, 0) rotate(6deg);
            }
            100% {
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes bannerPulseDot {
            0% {
                box-shadow: 0 0 0 0 rgba(242, 131, 48, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(242, 131, 48, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(242, 131, 48, 0);
            }
        }

        @media screen and (max-width: 600px) {
            .backgdhome {
                width: 100%;
                min-height: 100vh;
                min-height: 100svh;
                min-height: 100dvh;
                box-sizing: border-box;
                padding: 88px 0 40px;
                background-size: cover, cover !important;
                background-position: center center, center center !important;
                background-repeat: no-repeat, no-repeat;
                animation: bannerMobileZoom 18s ease-in-out infinite;
            }

            .backgdhome::before {
                background:
                    linear-gradient(180deg, rgba(2, 11, 27, 0.78), rgba(4, 14, 32, 0.62)),
                    radial-gradient(circle at 50% 34%, rgba(0, 0, 0, 0.3), transparent 50%),
                    radial-gradient(circle at top left, rgba(242, 131, 48, 0.08), transparent 34%),
                    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 28%);
            }

            #phonesize {
                width: 100%;
            }

            .home-banner-content {
                padding: 0 14px;
                max-width: 640px;
            }

            .home-banner-title {
                font-size: 2rem !important;
                line-height: 1.02;
            }

            .word-rotate {
                display: flex;
                width: 100%;
                justify-content: center;
                margin-top: 0.14em;
                vertical-align: baseline;
            }

            .word-rotate .words span {
                justify-content: center;
                width: 100%;
            }

            .home-banner-content p {
                font-size: 0.98rem !important;
                line-height: 1.7;
            }

            .home-banner-content h1,
            .home-banner-content p {
                text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
            }

            .home-banner-actions {
                gap: 10px;
            }

            .home-banner-btn {
                width: 100%;
                min-width: 0;
            }

            .home-banner-btn-secondary {
                background: rgba(10, 20, 42, 0.42);
                border-color: rgba(255, 255, 255, 0.72);
            }

            .backgdhome::after {
                inset: -16%;
                opacity: 0.34;
                animation-duration: 20s;
            }

            .banner-motion-grid,
            .banner-glass-squares {
                opacity: 0.2;
            }

            .banner-glass-squares span:nth-child(1) {
                display: none;
            }

            .banner-particles span {
                animation-duration: 18s;
                opacity: 0.75;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .backgdhome,
            .backgdhome::before,
            .backgdhome::after,
            .banner-motion-grid,
            .banner-glass-squares span,
            .banner-particles span,
            .home-banner-content {
                animation: none !important;
            }
        }


.btn-nav-link:hover{
background-color: #f28330;
color: #fff !important;
transition: all 0.2s ease-in-out;
}

.word-rotate {
  display: inline-flex;
  height: 1.2em;
  overflow: hidden;
  vertical-align: top;
}

.word-rotate .words {
  display: flex;
  flex-direction: column;
  color: #f28330;
  will-change: transform;
  animation: wordSlide 22s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

.word-rotate .words span {
  display: flex;
  align-items: center;
  height: 1.2em;
  line-height: 1.2;
  white-space: nowrap;
}

@keyframes wordSlide {
  0%, 7% { transform: translateY(0); }
  9%, 16% { transform: translateY(-1.2em); }
  18%, 25% { transform: translateY(-2.4em); }
  27%, 34% { transform: translateY(-3.6em); }
  36%, 43% { transform: translateY(-4.8em); }
  45%, 52% { transform: translateY(-6em); }
  54%, 61% { transform: translateY(-7.2em); }
  63%, 70% { transform: translateY(-8.4em); }
  72%, 79% { transform: translateY(-9.6em); }
  81%, 88% { transform: translateY(-10.8em); }
  90%, 100% { transform: translateY(-12em); }
}

@keyframes bannerMobileZoom {
  0% {
    background-size: cover, cover;
    background-position: center center, 50% 50%;
  }
  50% {
    background-size: cover, 112%;
    background-position: center center, 52% 48%;
  }
  100% {
    background-size: cover, cover;
    background-position: center center, 50% 50%;
  }
}

.custom-overlapping-cards {
  align-items: flex-start;
  gap: 28px;
}

.custom-overlapping-cards > div {
  min-width: 0;
}

.custom-overlapping-cards > div:nth-child(1) {
  flex: 0 0 50%;
  max-width: 50%;
}

.custom-overlapping-cards > div:nth-child(2) {
  flex: 0 0 50%;
  max-width: 50%;
  transform: translate3d(-28px, 42px, 0);
}

.custom-overlap-card {
  border-radius: 20px;
  overflow: hidden;
  min-height: 100%;
}

.custom-overlap-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transform: none !important;
}

.custom-overlap-card .card-body {
  padding: 28px 28px 30px;
}

.custom-overlap-card .custom-font-secondary {
  margin-bottom: 0;
  padding: 10px;
  font-size: 15.4px !important;
}

.expertise-overflow-card {
  overflow: hidden !important;
  box-shadow: none !important;
}

.expertise-overflow-left {
  overflow: visible !important;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.035) !important;
}

.expertise-overflow-left img {
  border-radius: 20px 20px 0 0;
}

.expertise-overflow-left .card-body {
  border-radius: 0 0 20px 20px;
  background: #fff;
}

.expertise-overflow-card .card-body {
  padding: 25px;
}

.expertise-overflow-card .custom-heading-bar:before {
  width: 28px;
  right: calc(100% + 10px);
}

.expertise-overflow-card .custom-heading-bar.custom-heading-bar-right:before {
  left: calc(100% + 10px);
}

.hero-know-more-btn {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 3px solid #f28330;
  color: #f28330 !important;
  background: #fff;
  overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease;
  z-index: 0;
}

.hero-know-more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2252bc;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
  z-index: -1;
}

.hero-know-more-btn:hover {
  color: #fff !important;
  border-color: #2252bc;
}

.hero-know-more-btn:hover::before {
  transform: scaleX(1);
}

@media (max-width: 991px) {
  .custom-overlapping-cards {
    flex-direction: column;
    gap: 24px;
  }

  .custom-overlapping-cards > div:nth-child(1),
  .custom-overlapping-cards > div:nth-child(2) {
    flex: 0 0 100%;
    max-width: 100%;
    transform: none;
  }

  .expertise-overflow-card .card-body {
    padding: 25px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.075);
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.service-box-head {
  display: block;
  text-align: left;
  margin-bottom: 18px;
}

.service-box-title {
    font-size: 24px !important;
  margin-bottom: 0 !important;
  text-transform: uppercase;
  text-align: left;
  min-height: auto;
  display: block;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0 0 13px;
}

.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 0 8px;
  margin-bottom: 8px;
}

.service-points li::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 0.2em;
  background: url('../img/fav-blue-lobster-512-trans.png') center / contain no-repeat;
}

.service-box > a {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 16px;
  border: 2px solid #f28330;
  background: #fff;
  box-shadow: 0 10px 20px rgba(242, 131, 48, 0.1);
  position: relative;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f28330 !important;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  z-index: 0;
}

.service-box > a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2252bc;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
  z-index: -1;
}

.service-box > a:hover {
  color: #fff !important;
  border-color: #2252bc;
  box-shadow: 0 14px 24px rgba(34, 82, 188, 0.16);
  transform: translateY(-2px);
  text-decoration: none !important;
}

.service-box > a:hover::before {
  transform: scaleX(1);
}

/* Tablet */
@media screen and (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media screen and (max-width: 678px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    padding: 20px 18px;
  }

  .service-box-title {
    min-height: auto;
  }
}


            label {
            font-weight: 700;
            margin-bottom: 0 !important;
            
        }

        input[type=text], input[type=tel], input[type=email], textarea {
  width: 100%;
  padding: 4px 15px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px !important;
  box-sizing: border-box;
}

select {
  width: 100%;
    padding: 5px 15px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px !important;
    box-sizing: border-box;
}


option {
  width: 100% !important;
  padding: 4px 15px !important;
  margin: 8px 0 !important;
  display: inline-block !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
}

input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.required:after{
    content: "*";
    font-size: 20px;
    color: red;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 5px 25px;
    /* padding: var(--bs-modal-padding); */
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.075);
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.service-box-head {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 12px;
  margin-bottom: 18px;
}

.service-box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: #2252bc;
  background: linear-gradient(145deg, rgba(34, 82, 188, 0.1) 0%, rgba(59, 108, 218, 0.08) 52%, rgba(242, 131, 48, 0.14) 100%);
  border: 1px solid rgba(34, 82, 188, 0.1);
  box-shadow: 0 10px 18px rgba(34, 82, 188, 0.08), 0 6px 12px rgba(242, 131, 48, 0.08);
  border-radius: 14px;
}

.service-box-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-box-title {
  font-size: 24px !important;
  margin-bottom: 0 !important;
  text-transform: uppercase;
  text-align: left;
  min-height: auto;
  display: block;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 0 8px;
  margin-bottom: 8px;
}

.service-points li::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 0.2em;
  background: url('../img/fav-blue-lobster-512-trans.png') center / contain no-repeat;
}

.service-box > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 16px;
  border: 2px solid #f28330;
  background: #fff;
  box-shadow: 0 10px 20px rgba(242, 131, 48, 0.1);
  position: relative;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f28330 !important;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  z-index: 0;
}

.service-box > a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2252bc;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
  z-index: -1;
}

.service-box > a:hover {
  color: #fff !important;
  border-color: #2252bc;
  box-shadow: 0 14px 24px rgba(34, 82, 188, 0.16);
  transform: translateY(-2px);
  text-decoration: none !important;
}

.service-box > a:hover::before {
  transform: scaleX(1);
}

.builder-stats-section {
  padding: 30px 0 24px;
}

.builder-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(16, 36, 67, 0.08);
  border-bottom: 1px solid rgba(16, 36, 67, 0.08);
}

.builder-stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 156px;
  padding: 26px 18px 22px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(16, 36, 67, 0.08);
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.24s ease, background-color 0.24s ease;
  isolation: isolate;
}

.builder-stat-card:last-child {
  border-right: 0;
}


.builder-stat-card:nth-child(2n)::before {
  background: linear-gradient(90deg, #f28330 0%, #2252bc 100%);
}


.builder-stat-card:hover {
  transform: translateY(-3px);
  background: rgba(34, 82, 188, 0.02);
}

.builder-stat-value {
  display: block;
  margin-bottom: 8px;
  color: #102443;
  font-size: clamp(2.45rem, 3.4vw, 3.35rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.builder-stat-label {
  display: block;
  margin: 0;
  color: #4c5a70;
  max-width: 15ch;
  font-size: 0.96rem;
  line-height: 1.35;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .builder-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .builder-stat-card:nth-child(2n) {
    border-right: 0;
  }

  .builder-stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 36, 67, 0.08);
  }
}

@media screen and (max-width: 575px) {
  .builder-stats-section {
    padding: 22px 0 18px;
  }

  .builder-stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    border-top: 0;
    border-bottom: 0;
  }

  .builder-stat-card {
    min-height: 0;
    padding: 24px 16px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 36, 67, 0.08);
  }

  .builder-stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 36, 67, 0.08);
  }

  .builder-stat-card:last-child {
    border-bottom: 0;
  }

  

}

.case-studies-main {
  background: transparent;
}

.case-studies-showcase {
  padding: 8% 0;
  background: transparent;
  overflow: hidden;
}

.case-studies-showcase .container,
.case-studies-showcase .container-xl-custom {
  width: 100%;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.case-studies-shell {
  padding: 0;
  border-radius: 18px;
  background: transparent;
  border: 0;
  width: 100%;
  overflow: hidden;
}

.case-studies-head {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.case-studies-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-studies-head h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #11284c;
}

.case-studies-head p {
  margin: 0;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  color: #5d6676;
  line-height: 1.8;
}

.case-studies-expander {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 0;
}

.case-study-card {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none !important;
  color: #fff !important;
  background-color: transparent;
  background-image: var(--case-study-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: flex 0.85s ease, transform 0.55s ease, box-shadow 0.55s ease;
  box-shadow: none;
}

.case-study-card:first-child {
  flex: 8;
}

.case-study-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 56, 0.02) 0%, rgba(8, 23, 56, 0.08) 32%, rgba(5, 14, 34, 0.18) 100%);
  opacity: 1;
}

.case-studies-expander:hover .case-study-card {
  flex: 1;
}

.case-studies-expander:hover .case-study-card:hover {
  flex: 8;
  transform: translateY(-3px);
  box-shadow: none;
}

.case-study-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 18px;
}

.badge-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.badge-logo {
  gap: 12px;
  width: fit-content;
  max-width: 260px;
  min-height: 56px;
  padding: 8px 12px 8px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}

.case-study-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 72px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(6, 16, 40, 0.16);
}

.case-study-logo img {
  display: block;
  max-width: 100%;
  max-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.case-study-logo-name {
  margin-left: 0;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: none;
  white-space: normal;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.badge-logo.case-study-logo-text,
.case-study-logo-text {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.case-study-card:hover .badge-logo,
.case-study-card:focus-within .badge-logo {
  opacity: 1;
  transform: translateY(0);
}

.case-study-card:first-child .badge-logo {
  opacity: 1;
  transform: translateY(0);
}

.case-study-arrow,
.exp-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 40, 76, 0.12);
  color: #102443;
  text-decoration: none !important;
  flex: 0 0 46px;
  opacity: 0;
  transform: translateY(8px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.exp-card-link .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.exp-card-link svg {
  display: block;
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.case-study-card:hover .exp-card-link,
.case-study-card:focus-within .exp-card-link {
  opacity: 1;
  transform: translateY(0);
}

.case-study-card:hover .exp-card-link,
.case-study-card:focus-within .exp-card-link {
  background: #2252bc;
  border-color: rgba(34, 82, 188, 0.28);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(34, 82, 188, 0.28);
}

.case-study-card:hover .exp-card-link svg,
.case-study-card:focus-within .exp-card-link svg {
  transform: translateX(2px);
}

.case-study-card:first-child .exp-card-link {
  opacity: 1;
  transform: translateY(0);
}

.content,
.case-study-content {
  margin-top: auto;
  width: 70%;
  max-width: 70%;
  flex: 0 1 70%;
  padding: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.content h3,
.case-study-title {
  margin: 0 0 6px;
  font-size: 1.32rem;
  line-height: 1.12;
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.content p,
.case-study-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1.42;
  max-height: 3.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.content-wrap {
  display: flex;
  position: relative;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  border-radius: 0;
  padding: 0 18px 50px;
}

.content-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 14, 34, 0.02) 0%, rgba(5, 14, 34, 0.08) 42%, rgba(5, 14, 34, 0.16) 100%);
  z-index: 0;
}

.content-wrap > * {
  position: relative;
  z-index: 1;
}

.case-study-card:first-child .content,
.case-study-card:first-child .case-study-content {
  opacity: 1;
  transform: translateY(0);
}

.case-studies-expander:hover .case-study-card .content,
.case-studies-expander:hover .case-study-card .case-study-content {
  opacity: 0;
  transform: translateY(14px);
}

.case-studies-expander:hover .case-study-card .badge-logo,
.case-studies-expander:hover .case-study-card .exp-card-link {
  opacity: 0;
  transform: translateY(-8px);
}

.case-studies-expander:hover .case-study-card:hover .content,
.case-studies-expander:hover .case-study-card:hover .case-study-content {
  opacity: 1;
  transform: translateY(0);
}

.case-studies-expander:hover .case-study-card:hover .badge-logo,
.case-studies-expander:hover .case-study-card:hover .exp-card-link {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1199px) {
  .case-studies-expander {
    flex-wrap: wrap;
    min-height: 0;
  }

  .case-study-card,
  .case-study-card:hover {
    flex: 1 1 calc(50% - 7px);
  }

  .case-study-card:first-child,
  .case-studies-expander:hover .case-study-card {
    flex: 1 1 calc(50% - 7px);
  }

  .case-study-card-inner {
    min-height: 400px;
    padding: 16px;
  }

  .badge-logo,
  .case-study-card:hover .badge-logo,
  .case-study-card:focus-within .badge-logo {
    opacity: 1;
    transform: translateY(0);
  }

  .exp-card-link,
  .case-study-card:hover .exp-card-link,
  .case-study-card:focus-within .exp-card-link {
    opacity: 1;
    transform: translateY(0);
  }

  .content,
  .case-study-content,
  .case-study-card:first-child .content,
  .case-study-card:first-child .case-study-content,
  .case-studies-expander:hover .case-study-card .content,
  .case-studies-expander:hover .case-study-card .case-study-content,
  .case-studies-expander:hover .case-study-card:hover .content,
  .case-studies-expander:hover .case-study-card:hover .case-study-content {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .case-studies-showcase {
    padding: 20px 0 16px;
  }

  .case-studies-showcase .container,
  .case-studies-showcase .container-xl-custom {
    padding-left: 12px;
    padding-right: 12px;
  }

  .case-studies-shell {
    padding: 0;
    border-radius: 18px;
  }

  .case-studies-expander {
    display: grid;
    gap: 14px;
  }

  .case-study-card,
  .case-study-card:hover,
  .case-study-card:first-child,
  .case-studies-expander:hover .case-study-card {
    flex: auto;
    transform: none;
  }

  .case-study-card-inner {
    min-height: 400px;
    padding: 14px;
  }

  .badge-logo,
  .case-study-card:hover .badge-logo,
  .case-study-card:focus-within .badge-logo {
    opacity: 1;
    transform: translateY(0);
  }

  .exp-card-link,
  .case-study-card:hover .exp-card-link,
  .case-study-card:focus-within .exp-card-link {
    opacity: 1;
    transform: translateY(0);
  }

  .content-wrap {
    gap: 10px;
    padding: 0 16px 10px;
  }

  .content h3,
  .case-study-title {
    font-size: 1.2rem;
  }

  .content p,
  .case-study-description {
    max-height: none;
  }
}

/* Tablet */
@media screen and (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* Mobile */
@media screen and (max-width: 678px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    padding: 20px 18px;
  }

  .service-box-head {
    gap: 10px;
  }

  .service-box-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

.service-box-title {
  min-height: auto;
  }
}

.process-showcase {
  row-gap: 24px;
}

.process-step-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  height: 100%;
  padding: 28px 24px 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(242, 131, 48, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(34, 82, 188, 0.03), rgba(255, 255, 255, 0.96)),
    #fff;
  border: 1px solid rgba(34, 82, 188, 0.09);
  box-shadow: 0 18px 38px rgba(16, 24, 40, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.process-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, #2252bc, #f28330);
}

.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(16, 24, 40, 0.12);
  border-color: rgba(242, 131, 48, 0.24);
}

.process-step-rail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.process-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(145deg, #2252bc, #4d79e1);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 26px rgba(34, 82, 188, 0.24);
}

.process-step-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(242, 131, 48, 0.12);
  color: #f28330;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-step-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 2px;
}

.process-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #2252bc;
  background: linear-gradient(145deg, rgba(34, 82, 188, 0.1), rgba(242, 131, 48, 0.12));
  border: 1px solid rgba(34, 82, 188, 0.08);
}

.process-step-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.process-step-content h4 {
  margin: 0;
  line-height: 1.18;
}

.process-step-content p {
  margin-bottom: 0;
}

@media screen and (max-width: 678px) {
  .process-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px 20px;
    border-radius: 18px;
  }

  .process-step-rail {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .process-step-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .process-step-icon svg {
    width: 20px;
    height: 20px;
  }
}
