@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary-color: #1097AB;
    --primary-font: "Manrope", sans-serif;
    --secondary-font: "Inter", sans-serif;
    --blue-color: #0D2646;
    --dark-blue-color: #0D2646;
}

body {
    font-family: var(--primary-font);
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px 10px 24px;
    background: #119bb0;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
    font-family: var(--secondary-font);
}

.btn-custom span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s ease;
}

.btn-custom i {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 15px;
    transition: all 0.35s ease;
    transform: rotate(-45deg);
}

.btn-custom:hover {
    background: #0c8698;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(17, 155, 176, 0.25);
}

.btn-custom:hover i {
    transform: rotate(0deg);
    background: #111;
    color: #fff;
}


.nav-link {
    color: #000;
    text-transform: capitalize;
}

.healthcare-hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    z-index: 1;
    min-height: calc(100vh - 100px);
    place-content: center;
}

.healthcare-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #041e3d66;
    z-index: -1;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
    max-width: 620px;
}

.hero-content h2 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    max-width: 621px;
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 50px;
    padding: 8px 10px 8px 22px;
    text-decoration: none;
    transition: 0.35s ease;
}

.hero-btn span {
    color: #0d5d7c;
    font-size: 15px;
    font-weight: 500;
}

.hero-btn i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #18a7be;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.35s ease;
    transform: rotate(-45deg);
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-btn:hover i {
    transform: rotate(0deg);
}

/* Form */
.consultation-form {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    margin-top: 0%;
}

.mini-text {
    display: block;
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consultation-form h3 {
    font-size: 42px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

.consultation-form h3 span {
    color: #18a7be;
}

.consultation-form>p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.consultation-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin-bottom: 10px;
}

.consultation-form input[type="text"],
.consultation-form input[type="email"],
.consultation-form input[type="tel"],
.consultation-form textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    background: #f7f7f7;
    border-radius: 6px;
    padding: 14px;
    font-size: 14px;
    outline: none;
    transition: .3s ease;
}

.consultation-form input[type="text"],
.consultation-form input[type="email"],
.consultation-form input[type="tel"] {
    height: 48px;
}

.consultation-form br {
    display: none;
}

.consultation-form textarea {
    height: 100px;
    resize: vertical;
}

.consultation-form input[type="text"]:focus,
.consultation-form input[type="email"]:focus,
.consultation-form input[type="tel"]:focus,
.consultation-form textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
}

.submit-btn {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 6px;
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: 0.35s ease;
}

.submit-btn:hover {
    background: #000000;
}

.positioning-sec {
    padding: 80px 0;
}

.sub-title {
    color: #A3A3A3;
    margin-bottom: 20px;
    display: inline-block;
}

.main-title {
    font-size: 47px;
    color: #0D2646;
    line-height: 1.3;
}

.main-title span {
    color: var(--primary-color);
}

.image-wrapper img {
    border-radius: 20px;
}

.happy-client-wrapper {
    display: flex;
    background: #E9F9FF;
    border: 1px solid #8CC7DA;
    width: 300px;
    margin-left: auto;
    margin-top: 20px;
    padding: 12px;
    gap: 10px;
    border-radius: 24px;
}


.happy-client-wrapper img {
    width: 130px;
    object-fit: contain;
}

.happy-client-wrapper h3 {
    font-size: 35px;
    text-align: center;
    color: #24718A;
}

.happy-client-wrapper p {
    color: #24718A;
    text-align: center;
    margin: 0;
    padding: 0;
}

.core-capability-sec {
    padding: 80px 0;
    background: #F0F9F9;
}

.core-capability-slider {
    position: relative;
}

.capability-card {
    background: var(--dark-blue-color);
    border-radius: 10px;
    padding: 28px;
    min-height: 480px;
    transition: 0.4s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.capability-card:hover {
    background: #fff;
    border-color: #d6d6d6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.4s ease;
    background: white;
}

.icon img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
}

.capability-card:hover .icon {
    border-color: #AAAAAA;
    color: var(--primary-color);
}

.learn-btn {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.4s ease;
}

.learn-btn span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transform: rotate(-45deg);
    transition: 0.4s ease;
}

.capability-card:hover .learn-btn {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.capability-card:hover .learn-btn span {
    background: var(--dark-blue-color);
    color: #fff;
}

.learn-btn:hover span {
    transform: rotate(0deg);
}

.capability-card h2 {
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 16px;
    transition: 0.4s ease;
}

.capability-card:hover h2 {
    color: var(--primary-color);
}

.capability-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    transition: 0.4s ease;
}

.capability-card:hover p {
    color: var(--blue-color);
}

.divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin-bottom: 24px;
    transition: 0.4s ease;
}

.capability-card:hover .divider {
    background: #d7d7d7;
}

.capability-card ul {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.capability-card ul li {
    list-style: none;
    color: #fff;
    font-size: 14px;
    position: relative;
    padding-left: 14px;
    transition: 0.4s ease;
}

.capability-card ul li::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 9px;
}

.capability-card:hover ul li {
    color: var(--blue-color);
}

.capability-card:hover ul li::before {
    background: var(--primary-color);
}

/* Owl Nav */
.core-capability-slider .owl-nav button.owl-prev,
.core-capability-slider .owl-nav button.owl-next {
    width: 52px;
    height: 52px;
    border-radius: 50% !important;
    border: 1px solid var(--primary-color) !important;
    background: transparent !important;
    color: var(--primary-color) !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s ease;
}

.core-capability-slider .owl-nav button.owl-prev:hover,
.core-capability-slider .owl-nav button.owl-next:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.core-capability-slider .owl-nav button.owl-prev {
    left: -70px;
}

.core-capability-slider .owl-nav button.owl-next {
    right: -70px;
}

/* Dots */
.core-capability-slider .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.core-capability-slider .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #b7c7c7 !important;
    display: block;
    border-radius: 50%;
    transition: 0.4s ease;
}

.core-capability-slider .owl-dot.active span {
    width: 30px;
    border-radius: 30px;
    background: #1ba0b5 !important;
}

.core-capability-sec .owl-carousel .owl-dots.disabled,
.core-capability-sec .owl-carousel .owl-nav.disabled {
    display: block !important;
}

.who-this-sec {
    padding: 80px 0;
}

.who-right p {
    max-width: 400px;
    margin-left: auto;
    text-align: right;
}

.practice-card {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 30px 30px 5px 5px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s ease;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.practice-img {
    overflow: hidden;
}

.practice-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.practice-card:hover .practice-img img {
    transform: scale(1.05);
}

.practice-content {
    padding: 24px 22px 26px;
    text-align: center;
}

.practice-content h3 {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 400;
    color: #1f1f1f;
    margin-bottom: 14px;
}

.practice-content p {
    font-size: 14px;
    color: #707070;
    margin-bottom: 0;
}

.healthcare-marquee {
    background: var(--dark-blue-color);
    overflow: hidden;
    padding: 14px 0;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marqueeMove 30s linear infinite;
}

.marquee-item {
    display: flex;
    gap: 20px;
    padding-right: 50px;
    color: #fff;
    font-size: 54px;
    font-weight: 300;
    white-space: nowrap;
    align-items: center;
}

.marquee-item span {
    font-size: 47px;
    font-weight: 700;
    position: relative;
    padding-top: 20px;
}

@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }

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

.contact-us-sec {
    padding: 80px 0;
}

.right-contact {
    text-align: end;
    max-width: 400px;
    margin-left: auto;
}


.contact-form .form-group label {
    display: block;
    font-size: 15px;
    color: #000000;
    margin-bottom: 10px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    border: 0;
    background: #ececec;
    height: 58px;
    border-radius: 8px;
    padding: 0 18px;
    font-size: 14px;
    color: #222;
    outline: none;
    box-shadow: none;
}

.contact-form .form-group textarea {
    height: 120px;
    resize: none;
    padding-top: 18px;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #b3b3b3;
}

.contact-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='gray' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
}


.contact-img {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
}

.contact-img img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 100%;
}

.contact-info-box {
    background: #edf5f5;
    border-radius: 24px;
    padding: 40px 20px;
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.contact-info-item {
    width: 33.33%;
    padding: 0 20px;
    border-right: 1px solid #d5dfdf;
}

.info-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 20px;
}

.contact-info-item h4 {
    font-size: 24px;
    color: #222;
    margin-bottom: 16px;
    font-weight: 400;
}

.contact-info-item a,
.contact-info-item p {
    display: block;
    font-size: 15px;
    line-height: 1.8;
    color: #6c6c6c;
    text-decoration: none;
    margin-bottom: 0;
}

.founder-banner-sec {
    overflow: hidden;
}

.founder-banner-wrapper {
    position: relative;
}

.founder-img img {
    width: 100%;
    object-fit: cover;
    display: block;
}


.founder-content {
    position: absolute;
    top: 50%;
    left: 22%;
    text-align: center;
}

.founder-content h2 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 400;
    color: #0b2242;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.founder-content p {
    font-size: 34px;
    line-height: 1.4;
    color: #0b2242;
    margin-bottom: 0;
    font-weight: 400;
}

.faq-sec {
    padding: 80px 0;
}

.custom-faq .accordion-item {
    border: 0;
    background: #efefef;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 18px;
}

.custom-faq .accordion-button {
    background: #efefef;
    color: #1f1f1f;
    font-size: 19px;
    font-weight: 400;
    padding: 17px 34px;
    box-shadow: none !important;
    border: 0;
    position: relative;
}

.custom-faq .accordion-button::after {
    display: none;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
}

.faq-icon {
    margin-left: auto;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f1f1f;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-icon i {
    transition: 0.3s ease;
}

.custom-faq .accordion-button:not(.collapsed) .faq-icon i {
    transform: rotate(180deg);
}

.custom-faq .accordion-body {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 0 34px 30px;
    font-size: 15px;
    line-height: 1.9;
}

.cta-sec {
    background: #0D2646;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}


.cta-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/bg-sec.png');
    pointer-events: none;
    opacity: 0.15;
    background-repeat: no-repeat;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    font-size: 73px;
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto 40px;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}


.btn-outline-custom {
    background: #fff;
}

.btn-outline-custom span {
    color: #119bb0;
}

.btn-outline-custom i {
    background: #119bb0;
    color: #fff;
}

.btn-outline-custom:hover {
    background: #119bb0;
}

.btn-outline-custom:hover span {
    color: #fff;
}

.btn-outline-custom:hover i {
    background: #fff;
    color: #111;
}

.main-footer {
    background: var(--dark-blue-color);
    padding: 80px 0 30px;
    overflow: hidden;
}

/* Logo */

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

.footer-logo img {
    height: 50px
}

/* About */

.footer-about p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 340px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--dark-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.35s ease;
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 28px;
    font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
    list-style: none;
    margin-bottom: 16px;
}

.footer-links ul li a,
.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: var(--primary-color);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact ul li i {
    color: #fff;
    font-size: 15px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 24px;
    max-width: 360px;
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
}

.footer-newsletter form input {
    width: 100%;
    height: 52px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    padding: 0 18px;
    color: #fff;
    outline: none;
    font-size: 14px;
}

.footer-newsletter form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.footer-newsletter form button {
    border: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 0 28px;
    height: 52px;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s ease;
    white-space: nowrap;
}

.footer-newsletter form button:hover {
    background: #0d8ea2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: #18a0b5;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: #0b2242;
    transform: translateY(-4px);
}

.breadcrumb-sec {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.breadcrumb-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb-content h2 {
    font-size: 60px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.breadcrumb-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-transform: capitalize;
}

.breadcrumb-content ul li {
    color: #fff;
    font-size: 15px;
    position: relative;
}

.breadcrumb-content ul li a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-content ul li:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: #fff;
}

.statement-sec {
    padding: 80px 0;
    background: #F0F9F9;
}

.credentials_bg_sec {
    padding: 100px 0;
    background: #fff;
}


.credentials_bg_sec .title-wrapper {
    margin-bottom: 70px;
}

.credentials_bg_sec .title-wrapper p {
    max-width: 900px;
    margin: auto;
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}


.credentials-grid {
    margin-top: 20px;
}

.credential-card,
.credential-img {
    height: 320px;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}


.credentials-grid .col-lg-4:nth-child(3) .credential-card,
.credentials-grid .col-lg-4:nth-child(6) .credential-img {
    border-right: none;
}


.credentials-grid .col-lg-4:nth-child(4) .credential-card,
.credentials-grid .col-lg-4:nth-child(5) .credential-card,
.credentials-grid .col-lg-4:nth-child(6) .credential-img {
    border-bottom: none;
}


.credential-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 30px;
    transition: 0.3s ease;
}

.active-card {
    background: #eef7f8;
}

.credential-card h2 {
    font-size: 78px;
    line-height: 1;
    color: #0d2754;
    margin-bottom: 18px;
    font-weight: 500;
    display: flex;
}

.active-card h2 {
    color: #53b8c8;
}

.credential-card p {
    margin: 0;
    color: #222;
    font-size: 17px;
    line-height: 1.6;
    max-width: 280px;
}

/* Image */
.credential-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.company-position-sec {
    padding: 80px 0;
    background: #FAFAFA;
    position: relative;
}

.company-position-sec::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 32%;
    height: 100%;
    background: url('../img/company-bg-right.png') no-repeat center;
    background-size: cover;
    z-index: 0;
}

.company-position-sec .container {
    position: relative;
    z-index: 2;
}

.image-wrapper2 img {
    border-radius: 276px;
}

.bg-sky-blue {
    background: var(--primary-color);
}

.positioning-opener-sec {
    background: #fbfbfb;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.positioning-content {
    max-width: 560px;
}

.positioning-description {
    font-size: 18px;
    line-height: 1.8;
    color: #5E6673;
    margin-bottom: 35px;
}

.positioning-image {
    text-align: center;
}

.positioning-image img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}

.service-architecture-sec {
    padding: 80px 0;
    background: #ffffff;
}


.architecture-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    border: 1px solid #E5E7EB;
    transition: all .35s ease;
    overflow: hidden;
}

.architecture-card:hover {
    box-shadow: 0 25px 60px rgba(15, 23, 42, .08);
    border-color: #D6DCE5;
}

.card-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #EEF4FF;
    color: #0F2B5B;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.architecture-card h3 {
    font-size: 28px;
    line-height: 1.3;
    color: #0F172A;
    margin-bottom: 18px;
    min-height: 72px;
}

.architecture-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 0;
}

.scalability-sec {
    padding: 80px 0;
    background: rgb(250, 250, 250);
}

.alvuron-framework-sec {
    padding: 80px 0;
    background: #fff;
}

.alvuron-framework-sec .main-title {
    font-size: 36px;
}

.framework-content {
    padding-right: 60px;
}

.framework-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 20px;
}

.outcomes-wrapper {
    background: #FAFAFA;
    padding: 50px;
    border-left: 4px solid var(--primary-color);
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #E5E7EB;
}

.outcome-item:last-child {
    border-bottom: none;
}

.outcome-item span {
    min-width: 40px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.outcome-item h4 {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    color: var(--dark-blue-color);
}

.founder-story-section {
    padding: 120px 0;
    background: #f8fafc;
}

.founder-card {
    position: sticky;
    top: 120px;
}

.founder-card img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
}

.experience-box {
    width: 220px;
    background: #081b42;
    color: #fff;
    padding: 25px;
    border-radius: 18px;
    margin-top: -70px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.experience-box span {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.experience-box p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

.story-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #e8eef8;
    border-radius: 50px;
    color: #081b42;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-wrapper h2 {
    font-size: 40px;
    line-height: 1.15;
    color: #081b42;
    margin-bottom: 35px;
    max-width: 900px;
}

.story-wrapper p {
    font-size: 18px;
    line-height: 1.95;
    color: #4f5968;
    margin-bottom: 24px;
}


.contact-hero-sec {
    padding: 100px 0 80px;
    background: #FAFAFA;
}

.contact-hero-sec .main-title {
    max-width: 900px;
    margin: 0 auto 25px;
}

.hero-text {
    max-width: 850px;
    margin: 0 auto 20px;
    font-size: 18px;
    line-height: 1.9;
    color: #667085;
}

.assessment-form-sec {
    padding: 0 0 120px;
    background: #FAFAFA;
}

.assessment-form-wrapper {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 50px;
}

.assessment-form-wrapper .btn-custom {
    background: var(--dark-blue-color);
    color: white;
    border-color: none;
}

.article-hero-sec {
    padding: 60px 0 40px;
    background: #FAFAFA;
}

.article-hero-sec .sub-title {
    display: block;
    margin-bottom: 20px;
}

.article-hero-sec .main-title {
    font-size: 45px;
    margin-bottom: 30px;
}

.article-description p {
    font-size: 18px;
    line-height: 1.9;
    color: #667085;
}

.article-description p strong {
    color: #000;
}

.article-wrapper {
    margin: 2rem 0;
    color: #667085;
}

.article-hero-sec h2 {
    font-size: 27px;
    margin-bottom: 1rem;
    color: var(--dark-blue-color);
    font-weight: 500;
    margin-top: 40px;
}

.article-hero-sec ul {
    padding: 0;
    margin: 30px 0;
    list-style: inside;
}

.article-hero-sec ul li {
    position: relative;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.9;
    color: #667085;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #0D2646;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid #DDE3EA;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
}

.form-group textarea {
    height: auto;
    padding: 18px;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.next-steps-sec {
    padding: 120px 0;
    background: #fff;
}

.step-card {
    height: 100%;
    padding: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    background: #fff;
}

.step-card span {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #667085;
}

.email-contact-sec {
    padding: 120px 0;
    background: #F8FAFC;
}

.email-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    background: #fff;
    padding: 80px;
    border-radius: 30px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 20px 60px rgba(13, 38, 70, .06);
    position: relative;
    overflow: hidden;
}

.email-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(16, 151, 171, .08);
    top: -90px;
    right: -90px;
}

.email-box::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(16, 151, 171, .05);
    bottom: -60px;
    left: -60px;
}

.email-tag {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.email-box h2 {
    font-size: 56px;
    line-height: 1.15;
    color: var(--dark-blue-color);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.email-link {
    display: inline-block;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-blue-color);
    text-decoration: none;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: .3s;
}

.email-link:hover {
    color: var(--primary-color);
}

.email-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.email-box p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: #667085;
    position: relative;
    z-index: 2;
}

.assessment-form-wrapper .btn-custom {
    background: var(--dark-blue-color);
    color: white;
    border-color: none;
}


.contact-us-sec form br {
    display: none;
}

.contact-us-sec form p {
    margin-bottom: 0;
}

.contact-us-sec form .btn-custom {
    color: white;
    border: none;
}

.contact-us-sec form .btn-custom:hover {
    background: #000;
}

.contact-us-sec .form-group textarea {
    max-height: 150px !important;
}


/* Start */
.case-study-sec {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 250px);
}

.case-study-sec .container {
    max-width: 1200px;
}

.case-study-sec h1 {
    font-size: 42px;
    line-height: 1.25;
    color: var(--dark-blue-color);
    max-width: 950px;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 20px;
}

.case-study-sec h1::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

.case-study-sec h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: unset;
    color: var(--dark-blue-color);
    margin: 25px 0 25px;
}

.case-study-sec h3 {
    font-size: 24px;
    line-height: 1.4;
    color: var(--dark-blue-color);
    margin: 35px 0 15px;
}

.case-study-sec p {
    font-size: 18px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 24px;
}

.case-study-sec ul {
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

.case-study-sec ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
}

.case-study-sec ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
}

.case-study-sec blockquote {
    margin: 60px 0;
    padding: 50px;
    background: #f8fafc;
    border-left: 5px solid var(--primary-color);
    font-size: 30px;
    line-height: 1.5;
    font-weight: 600;
    color: #111827;
    border-radius: 0 15px 15px 0;
}

@media (max-width: 991px) {
    .case-study-sec h1 {
        font-size: 36px;
    }

    .case-study-sec h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .case-study-sec {
        padding: 70px 0;
    }

    .case-study-sec h1 {
        font-size: 30px;
    }

    .case-study-sec h2 {
        font-size: 26px;
    }

    .case-study-sec h3 {
        font-size: 22px;
    }

    .case-study-sec p,
    .case-study-sec ul li {
        font-size: 16px;
    }

    .case-study-sec blockquote {
        padding: 30px;
        font-size: 22px;
    }
}

/* End */




.positioning-highlight{
    margin-top: 70px;
    padding: 50px;
    background: #F7FBFC;
    border: 1px solid #DCECEF;
    border-left: 5px solid var(--primary-color);
    border-radius: 24px;
}

.positioning-highlight h3{
    font-size: 38px;
    line-height: 1.3;
    color: var(--dark-blue-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.positioning-highlight h3 span{
    color: var(--primary-color);
}

.positioning-highlight .lead-text{
    font-size: 18px;
    line-height: 1.9;
    color: #5E6673;
    max-width: 900px;
    margin-bottom: 45px;
}

.outcomes-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.outcome-card{
    padding: 28px;
    background: var(--dark-blue-color);
    border: 1px solid #E6EEF1;
    border-radius: 18px;
    transition: .3s ease;
}

.outcome-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.outcome-card h4{
    font-size: 22px;
    color: #fff;
    margin-bottom: 14px;
}

.outcome-card p{
    margin: 0;
    color: #fff;
    line-height: 1.8;
}

@media (max-width:991px){
    .positioning-highlight{
        padding: 35px 25px;
    }

    .positioning-highlight h3{
        font-size: 30px;
    }

    .outcomes-grid{
        grid-template-columns: 1fr;
    }
}

.performance-purpose-sec{
    padding:100px 0;
    background:#F8FBFC;
}

.purpose-content p{
    font-size:17px;
    line-height:1.9;
    color:#5E6673;
    margin-bottom:22px;
}

.purpose-content strong{
    color:var(--dark-blue-color);
    font-weight:600;
}

.achievement-box{
    background:#fff;
    padding:45px;
    border-radius:24px;
    border:1px solid #E5EDF2;
    box-shadow:0 20px 60px rgba(15,23,42,.05);
    height:100%;
}

.achievement-box h3{
    font-size:30px;
    color:var(--dark-blue-color);
    margin-bottom:30px;
}

.achievement-box ul{
    margin:0;
    padding:0;
    list-style:none;
}

.achievement-box li{
    position:relative;
    padding-left:28px;
    margin-bottom:22px;
    color:#667085;
    line-height:1.8;
    font-size:16px;
}

.achievement-box li:last-child{
    margin-bottom:0;
}

.achievement-box li::before{
    content:"";
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--primary-color);
    position:absolute;
    left:0;
    top:10px;
}

.achievement-box strong{
    color:var(--dark-blue-color);
}

.service-impact{
    margin-top:80px;
}

.service-impact h3{
    font-size:36px;
    color:var(--dark-blue-color);
}

.impact-card{
    background: var(--dark-blue-color);
    border:1px solid #E6EDF2;
    border-radius:20px;
    padding:35px 28px;
    height:100%;
    transition:.35s ease;
}

.impact-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    border-color:var(--primary-color);
}

.impact-card h4{
    font-size:22px;
    line-height:1.4;
    color: #fff;
    margin-bottom:16px;
}

.impact-card p{
    margin:0;
    color:#fff;
    line-height:1.8;
    font-size:15px;
}

@media(max-width:991px){

    .performance-purpose-sec{
        padding:80px 0;
    }

    .achievement-box{
        margin-top:20px;
        padding:30px;
    }

    .service-impact{
        margin-top:60px;
    }

    .service-impact h3{
        font-size:30px;
    }
}

.two-disciplines-sec{
    padding:100px 0;
    background:#fff;
}

.two-disciplines-sec .section-desc{
    max-width:860px;
    margin:25px auto 0;
    font-size:18px;
    line-height:1.9;
    color:#667085;
}

.discipline-card{
    background:#F8FBFC;
    border:1px solid #E4EDF2;
    border-radius:24px;
    padding:45px;
    height:100%;
    transition:.35s ease;
}

.discipline-card:hover{
    transform:translateY(-6px);
    border-color:var(--primary-color);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.discipline-icon{
    width:68px;
    height:68px;
    border-radius:50%;
    background:var(--primary-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:30px;
}

.discipline-card h3{
    font-size:30px;
    line-height:1.35;
    color:var(--dark-blue-color);
    margin-bottom:28px;
}

.discipline-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.discipline-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:18px;
    font-size:17px;
    color:#5E6673;
    line-height:1.7;
}

.discipline-card ul li:last-child{
    margin-bottom:0;
}

.discipline-card ul li::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary-color);
    position:absolute;
    left:0;
    top:11px;
}

.discipline-footer{
    margin-top:60px;
    padding:40px;
    background:#0D2646;
    border-radius:24px;
    text-align:center;
}

.discipline-footer p{
    margin:0;
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.9;
    max-width:980px;
    margin:auto;
}

@media(max-width:991px){

    .two-disciplines-sec{
        padding:80px 0;
    }

    .discipline-card{
        padding:35px;
    }

    .discipline-card h3{
        font-size:26px;
    }

    .discipline-footer{
        padding:30px 25px;
    }

    .discipline-footer p{
        font-size:16px;
    }
}

.patient-purpose-sec{
    padding:100px 0;
    background:#F8FBFC;
}

.purpose-content{
    max-width:560px;
}

.lead-text{
    font-size:24px;
    color:var(--dark-blue-color);
    margin:30px 0 20px;
    font-weight:600;
}

.purpose-content p{
    font-size:18px;
    line-height:1.9;
    color:#667085;
}

.purpose-highlight{
    margin-top:40px;
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:28px;
    border-left:4px solid var(--primary-color);
    background:#fff;
    border-radius:18px;
}

.purpose-highlight i{
    color:var(--primary-color);
    font-size:26px;
    margin-top:3px;
}

.purpose-highlight span{
    line-height:1.8;
    color:#4B5563;
}

.purpose-highlight strong{
    display:block;
    margin-top:5px;
    color:var(--dark-blue-color);
}

.approach-card{
    background:#fff;
    border-radius:24px;
    padding:50px;
    border:1px solid #E5E7EB;
    box-shadow:0 20px 50px rgba(0,0,0,.05);
    height:100%;
    transition:.35s ease;
}

.approach-card:hover{
    transform:translateY(-6px);
    border-color:var(--primary-color);
}

.card-label{
    display:inline-block;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:var(--primary-color);
    font-weight:600;
    margin-bottom:18px;
}

.approach-card h3{
    font-size:38px;
    line-height:1.25;
    color:var(--dark-blue-color);
    margin-bottom:22px;
}

.approach-card p{
    font-size:17px;
    line-height:1.9;
    color:#667085;
}

.approach-card .divider{
    width:80px;
    height:3px;
    background:var(--primary-color);
    margin:30px 0;
    border-radius:20px;
}

@media(max-width:991px){

    .patient-purpose-sec{
        padding:80px 0;
    }

    .approach-card{
        padding:35px;
    }

    .approach-card h3{
        font-size:30px;
    }

    .lead-text{
        font-size:22px;
    }
}

.about-bridge-sec{
    margin-top:0;
    padding:90px 0;
    background:linear-gradient(180deg,#F8FBFC 0%,#EEF7FA 100%);
    position:relative;
    overflow:hidden;
}

.about-bridge-sec::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    top:-180px;
    right:-120px;
    border-radius:50%;
    background:rgba(28,164,188,.08);
    filter:blur(10px);
}

.about-bridge-sec::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    bottom:-120px;
    left:-80px;
    border-radius:50%;
    background:rgba(13,38,70,.05);
}

.about-bridge-card{
    position:relative;
    text-align:center;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.7);
    border-radius:30px;
    padding:70px 60px;
    overflow:hidden;
    transition:.45s ease;
    box-shadow:0 25px 60px rgba(15,23,42,.08);
}

.about-bridge-card:hover{
    transform:translateY(-8px);
    box-shadow:0 35px 80px rgba(15,23,42,.12);
}

.bridge-pattern{
    position:absolute;
    inset:0;
    background-image:
        radial-gradient(circle at 20px 20px,rgba(28,164,188,.08) 2px,transparent 2px);
    background-size:36px 36px;
    opacity:.4;
    pointer-events:none;
}

.about-bridge-card .sub-title{
    position:relative;
    z-index:2;
}

.about-bridge-card h2{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:20px auto 25px;
    font-size:48px;
    line-height:1.3;
    color:var(--dark-blue-color);
}

.about-bridge-card h2 span{
    color:var(--primary-color);
}

.about-bridge-card p{
    position:relative;
    z-index:2;
    max-width:760px;
    margin:0 auto 40px;
    font-size:18px;
    line-height:1.9;
    color:#667085;
}

.about-bridge-card .btn-custom{
    position:relative;
    z-index:2;
}

.about-bridge-card .btn-custom i{
    margin-left:12px;
    transition:.35s ease;
}

.about-bridge-card .btn-custom:hover i{
    transform:translateX(6px);
}

.about-bridge-card:hover .bridge-pattern{
    animation:patternMove 12s linear infinite;
}

@keyframes patternMove{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(36px);
    }

}

@media(max-width:991px){

    .about-bridge-sec{
        padding:70px 0;
    }

    .about-bridge-card{
        padding:45px 30px;
    }

    .about-bridge-card h2{
        font-size:34px;
    }

    .about-bridge-card p{
        font-size:16px;
    }

}

.statement-content{
    max-width: 560px;
    margin-left: 40px; /* space from image */
}

@media(max-width:991px){
    .statement-content{
        margin-left: 0;
        margin-top: 40px;
    }
}

.statement-sec .row{
    align-items:center;
}

.statement-sec .col-lg-6:last-child{
    display:flex;
    justify-content:flex-start;
}

.statement-content{
    max-width:560px;
    width:100%;
}