/* -------------------------------------------------------------------------- */
/*                                  Variables                                 */
/* -------------------------------------------------------------------------- */

:root {
    --color-primary: #1177FF;
    --color-secondary: #002250;
    --color-tertiary: #011632;
    --color-white: #ffffff;
    --primary-gradient: linear-gradient(90deg, #D2EBEF 0%, #86BBF1 100%);

    --bg-color: #ffffff10;
    --bg-color-light: #ffeeba;

}

/* -------------------------------------------------------------------------- */
/*                                  Variables                                 */
/* -------------------------------------------------------------------------- */



/* -------------------------------------------------------------------------- */
/*                               CSS Reset Start                              */
/* -------------------------------------------------------------------------- */

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

html {
  /* Smooth Scroll - modern */
  scroll-behavior: smooth;

  /* Prevent horizontal scroll */
  overflow-x: hidden !important;

  /* For older Safari (iOS 12 and below), fallback: */
  -webkit-overflow-scrolling: touch;
}

body {
  /* 1. Prevent horizontal scroll */
  overflow-x: hidden !important;

  /* 2. Better font rendering on macOS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* 3. Accessible and readable line height */
  line-height: 1.5;

  /* 4. Base font (consider fallback) */
  font-family: 'Poppins', sans-serif;

  /* Optional reset helpers */
  margin: 0;
  padding: 0;
}

/* .container {
  max-width: 100%;
  overflow-x: clip;
  position: relative;
} */


/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
    font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
    isolation: isolate;
}

/* -------------------------------------------------------------------------- */
/*                                CSS Reset End                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                             Container style start                           */
/* -------------------------------------------------------------------------- */

@media (min-width: 1536px) {
    .container {
        max-width: 1440px !important;
        /* Bootstrap override */
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
}


.section-spacing {
    margin: 96px 0px;
}

/* -------------------------------------------------------------------------- */
/*                             Container style end                            */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                             Back to Top style start                        */
/* -------------------------------------------------------------------------- */

#button {
    display: inline-block;
    background-color: var(--color-primary);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button::after {
    font-family: 'tabler-icons';
    content: '\ea25';
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: var(--color-secondary);
}

#button:active {
    background-color: var(--color-secondary);
}

#button.show {
    opacity: 1;
    visibility: visible;
}

/* -------------------------------------------------------------------------- */
/*                             Back to Top style end                          */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                             Navbar style start                             */
/* -------------------------------------------------------------------------- */

.sticky-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.custom-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;

  /* 1. Transparent background */
  background: rgba(255, 255, 255, 0.5);

  /* 2. Safari-specific mixin */
  -webkit-backdrop-filter: blur(18px) !important;
  backdrop-filter: blur(18px) !important;

  /* 3. Ensure backdrop applies across its area */
  background-clip: padding-box;
  transition: position 0.3s ease,
              backdrop-filter 0.3s ease,
              height 0.3s ease,
              box-shadow 0.3s ease;
  z-index: 1000;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--color-primary);
}

.custom-navbar .stroke ul li a.active::after,
.custom-navbar .fill ul li a.active::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: var(--color-primary);
    height: 1px;
}

/* Show stroke effect if nav-link is active */
.custom-navbar .stroke ul li a.active::after {
    width: 100%;
}

/* Keep fill effect visible when nav-link is active */
.custom-navbar .fill ul li a.active::after {
    z-index: -10;
    opacity: 1;
    animation: fill 1s forwards;
    -webkit-animation: fill 1s forwards;
    -moz-animation: fill 1s forwards;
}

/* Optional: Set text color for active state */
.custom-navbar .stroke ul li a.active,
.custom-navbar .fill ul li a.active {
    color: var(--color-primary);
    /* or white if needed */
}


.custom-navbar .nav-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color-tertiary);
}

.custom-navbar .login-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    width: 138px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
    padding: 0;
}

.custom-navbar .login-btn .vertical-line {
    width: 0;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login-dropdown-menu {
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 10px;
    border: transparent;
}

.login-dropdown-menu .dropdown-item {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-tertiary);
    padding: 12px;
}

.login-dropdown-menu .dropdown-item:hover {
    background: var(--color-primary);
    color: white;
}

/* NAVIGATION */

.custom-navbar .stroke ul li a {
    margin: 0 10px;
}

.custom-navbar .stroke ul li a,
.custom-navbar .stroke ul li a:after,
.custom-navbar .stroke ul li a:before {
    transition: all .5s;
}

.custom-navbar .stroke ul li a:hover {
    color: var(--color-primary);
}


/* stroke */
.custom-navbar .stroke ul li a,
.custom-navbar .fill ul li a {
    position: relative;
}

.custom-navbar .stroke ul li a:after,
.custom-navbar .fill ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: var(--color-primary);
    height: 1px;
}

.custom-navbar .stroke ul li a:hover:after {
    width: 100%;
}

.custom-navbar .fill ul li a {
    transition: all 2s;
}

.custom-navbar .fill ul li a:after {
    text-align: left;
    content: '.';
    margin: 0;
    opacity: 0;
}

.custom-navbar .fill ul li a:hover {
    color: #fff;
    z-index: 1;
}

.custom-navbar .fill ul li a:hover:after {
    z-index: -10;
    animation: fill 1s forwards;
    -webkit-animation: fill 1s forwards;
    -moz-animation: fill 1s forwards;
    opacity: 1;
}

/* Keyframes */
@keyframes fill {
    0% {
        width: 0%;
        height: 1px;
    }

    50% {
        width: 100%;
        height: 1px;
    }

    100% {
        width: 100%;
        height: 100%;
        background: var(--color-primary);
    }
}

@-webkit-keyframes fill {
    0% {
        width: 0%;
        height: 1px;
    }

    50% {
        width: 100%;
        height: 1px;
    }

    100% {
        width: 100%;
        height: 100%;
        background: var(--color-primary);
    }
}

/* Sidebar Base */
.sidebar-nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background-color: var(--color-white);
    color: #fff;
    transition: left 0.3s ease;
    z-index: 1050;
    padding: 20px;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.4);
}

.sidebar-nav.open {
    left: 0;
}

.sidebar-close {
    font-size: 24px;
    color: var(--color-secondary);
    background: none;
    border: none;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.sidebar-list {
    list-style: none;
    padding: 60px 0 0 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 15px;
}

.sidebar-list a {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 18px;
    display: flex;
    font-weight: 600;
    align-items: center;
    justify-content: space-between;
}

.sidebar-list .ti-chevron-right {
    color: var(--color-secondary);
}

.sidebar-list a:hover .ti-arrow-right {
    color: var(--color-primary);
}

.sidebar-list a:hover {
    color: var(--color-primary);
}

/* Toggle Button */
.sidebar-toggle {
    background-color: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
}



/* -------------------------------------------------------------------------- */
/*                             Navbar style end                               */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                             Hero banner style end                          */
/* -------------------------------------------------------------------------- */

.hero-section {
    background-image: url('../images/medicare-telidox-hero-banner.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    max-height: 100vh;
    height: 700px;
    position: relative;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    color: white;
    /* overflow-x: hidden; */
    /* z-index: -1; */
}

.swiper.heroSwiper {
    width: 100%;
    max-width: 1440px;
    z-index: 2;
    height: 100%;
}

.hero-banner-heading {
    font-weight: 700;
    font-size: 60px;
    line-height: 90px;
    color: var(--color-white);
}

.hero-banner-subtext {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
}

/* ---------------------------- custom btn style start ---------------------------- */

.book-appoint-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: fit-content;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color-white);
    outline: none;
    overflow: hidden;
    position: relative;
}

.book-appoint-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.button {
    cursor: pointer;
    border: none;
    color: #fff;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    display: grid;
    place-content: center;
    transition:
        background 300ms,
        transform 200ms;
    font-weight: 600;
}

.button__circle {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button__icon--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.book-appoint-btn:hover .button__icon {
    color: var(--color-white);
}

.book-appoint-btn:hover .button__icon:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.book-appoint-btn:hover .button__icon--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

.book-appoint-btn:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.book-appoint-btn::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -200px;
    opacity: 0.3;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

/* ---------------------------- custom btn style end ---------------------------- */

.hero-banner-teleradiology-doctor,
.hero-banner-diagnostics-doctor,
.hero-banner-healthtech-doctor,.hero-banner-consultancy-doctor {
    aspect-ratio: 3 / 2;
    height: 100%;
    width: auto;
    object-fit: contain;
    overflow: visible;
}

.hero-banner-visamedical-doctor{
    aspect-ratio: 3 / 2.5;
    height: 100%;
    width: auto;
    object-fit: contain;
    overflow: visible;
}

.hero-banner-teleradiology-element {
    position: absolute;
    top: 5%;
    left: 10%;
    animation: floatSoft 4s ease-in-out infinite;
}

.hero-banner-healthtech-element {
    position: absolute;
    top: 40%;
    left: 0;
    animation: floatSoft 4s ease-in-out infinite;
}

.hero-banner-diagnostics-element {
    position: absolute;
    top: 30%;
    left: 0;
    animation: floatSoft 4s ease-in-out infinite;
}

.hero-banner-visa-element {
    position: absolute;
    top: 30%;
    left: 0;
    animation: floatSoft 4s ease-in-out infinite;
}

.hero-banner-consultancy-element {
    position: absolute;
    top: 30%;
    left: -7%;
    animation: floatSoft 4s ease-in-out infinite;
}

.hero-banner-consultancy-element1 {
    position: absolute;
    top: 10%;
    right: 0%;
    animation: pulseDrift 3s ease-in-out infinite;
}

.hero-banner-teleradiology-element1 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    animation: pulseDrift 3s ease-in-out infinite;
}



.hero-banner-healthtech-element1 {
    position: absolute;
    bottom: 40%;
    right: 0;
    animation: pulseDrift 3s ease-in-out infinite;
}

.hero-banner-diagnostics-element1 {
    position: absolute;
    bottom: 50%;
    right: 5%;
    animation: pulseDrift 3s ease-in-out infinite;
}

.hero-banner-visa-element1 {
    position: absolute;
    top: 10%;
    right: 0%;
    animation: pulseDrift 3s ease-in-out infinite;
}

@keyframes floatSoft {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-1.5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes pulseDrift {
    0% {
        transform: scale(1) translateX(0);
        opacity: 1;
    }

    50% {
        transform: scale(1.05) translateX(5px);
        opacity: 0.9;
    }

    100% {
        transform: scale(1) translateX(0);
        opacity: 1;
    }
}

.hero-banner-teleradiology-slide {
    padding-top: 85px;
}

.hero-banner-healthtech-slide {
    padding-top: 85px;
}

.hero-banner-diagnostic-slide {
    padding-top: 85px;
}

.hero-banner-visa-slide {
    padding-top: 85px;
    gap: 100px;
}

.hero-banner-consultancy-slide {
    padding-top: 85px;
}
/* -------------------------------------------------------------------------- */
/*                             Hero banner style end                          */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                             our product style end                          */
/* -------------------------------------------------------------------------- */


/* .slick-track {
    display: flex;
    gap: 30px;
}  */


/* .slick-slider {
    margin: 0 -15px;
}

.slick-slide {
    padding: 10px 0px;
    margin-right: 15px;
    margin-left: 15px;
} */

.product-heading {
    font-weight: 600;
    font-size: 60px;
    line-height: 90px;
    text-align: center;
    color: var(--color-tertiary);
}

.product-subtext {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: var(--color-secondary);
    opacity: 0.7;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 36px;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 24px;
    height: 100%;
}

.icon-circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px;
    min-width: 140px;
    min-height: 140px;
    background: rgba(17, 119, 255, 0.05);
    border-radius: 100px;
}

.explore-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 48px;
    background: var(--color-primary);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color-white);
    outline: none;
    overflow: hidden;
    position: relative;
}

.explore-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.button {
    cursor: pointer;
    border: none;
    color: #fff;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    display: grid;
    place-content: center;
    transition:
        background 300ms,
        transform 200ms;
    font-weight: 600;
}

.button__circle {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button__icon--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.explore-btn:hover .button__icon {
    color: var(--color-white);
}

.explore-btn:hover .button__icon:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.explore-btn:hover .button__icon--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

.explore-btn:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.product-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: var(--color-primary);
}

.product-fullname {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: var(--color-tertiary);
}

/* -------------------------------------------------------------------------- */
/*                             our product style end                          */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                             Specialization style start                     */
/* -------------------------------------------------------------------------- */

.skewed-bg {
    background-image: url(/assets/images/medicare-telidox-skewed-bg.webp);
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 0;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: calc(68vw + 0px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



/* .skewed-bg .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

.specialization-heading {
    font-weight: 600;
    font-size: 60px;
    line-height: 90px;
    text-align: center;
    color: var(--color-white);
}

.specialization-para {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color-white);
}

.specialization-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0px;
    gap: 28px;
    width: 333px;
    height: 333px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-out;
    text-decoration: none;
    z-index: 0;
}

.specialization-card:hover {
    transform: translateY(-5px) scale(1.005) translateZ(0);
    background: rgba(255, 255, 255, 0.2);
}

.specialization-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: var(--color-white);
}

/* .specialization-card:hover .specialization-circle {
    border-color: var(--color-white);
    background: var(--color-white);
  }

  .specialization-card:hover .specialization-circle svg path {
    stroke: var(--color-primary);
    fill: var(--color-primary);
  }

  .specialization-card:active {
    transform: scale(1) translateZ(0);
    box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11),
      0 15px 24px var(--box-shadow-color);
  } */

.specialization-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-out;
}

/* .specialization-circle svg {
    z-index: 2;
    transform: translateZ(0);
    transition: all 0.3s ease-out;
  }

  .overlay {
    width: 140px;
    height: 140px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    border-radius: 50%;
    background: var(--color-primary);
    z-index: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease;
    opacity: 0;
  }

  .specialization-card:hover .overlay {
    transform: translate(-50%, -50%) scale(4) translateZ(0);
    opacity: 1;
  }
   */


/* -------------------------------------------------------------------------- */
/*                             Specialization style end                       */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                              patients review style start                   */
/* -------------------------------------------------------------------------- */

.patient-heading {
    font-weight: 600;
    font-size: 60px;
    line-height: 90px;
    text-align: center;
    color: #011632;
}

.patient-heading span {
    font-weight: 600;
    font-size: 60px;
    line-height: 90px;
    text-align: center;
    color: #1177FF;
}

.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border: 1px solid #E1E9EF;
    border-radius: 50px;
    position: relative;
    left: 0;
    right: 0;
    margin-top: 24px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-primary);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: '' !important;
}

.swiper-button-next .ti-arrow-right,
.swiper-button-prev .ti-arrow-left {
    font-size: 24px;
}

.swiper-button-next:hover .ti-arrow-right,
.swiper-button-prev:hover .ti-arrow-left {
    color: var(--color-white);
}

.client-review-card {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 24px;
    border: transparent;
}

.client-profile-img img {
    width: 60px;
    height: 60px;
    border-radius: 40px;
}

.client-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #011632;
}

.client-name p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #011632;
    text-align: left;
}

.client-comment {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #011632;
    margin-bottom: 0;
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.3;
}

/* -------------------------------------------------------------------------- */
/*                             patients review style end                      */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                             partner style end                              */
/* -------------------------------------------------------------------------- */

/* .masked-shield {
    height: auto;
    mask-image: url('/assets/images/shield-shape.png');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

    -webkit-mask-image: url('/assets/images/shield-shape.png');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    position: absolute;
    right: 0;
    bottom: 0;
} */

.masked-image {
    position: absolute;
    right: -45%;
    bottom: -60%;
    height: max-content;
}

.partners-img {
    width: 550px;
    height: 350px;
    border-radius: 12px;
    /* transform: matrix(-1, 0, 0, 1, 0, 0); */
}

.partner-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: max-content;
    height: 48px;
    background: var(--color-primary);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color-white);
    outline: none;
    overflow: hidden;
    position: relative;
}

.partner-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}


.partner-btn:hover .button__icon {
    color: var(--color-white);
}

.partner-btn:hover .button__icon:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.partner-btn:hover .button__icon--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

.partner-btn:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.partner-heading {
    font-weight: 600;
    font-size: 60px;
    line-height: 86px;
    color: #011632;
}

.partner-heading span {
    font-weight: 600;
    font-size: 60px;
    line-height: 86px;
    color: #1177FF;
}

.partner-para {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #011632;
}

.tile {
    display: flex;
    align-items: end;
    justify-content: end;
    width: 550px;
    height: 350px;
    border-radius: 12px;

    background-image: url('/assets/images/medicare-telidox-partners.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-shadow: 6px 10px 37px -10px rgba(250, 250, 250, 0.3);

    position: relative;
    cursor: pointer;

    /* 3D enhancement */
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;

    perspective: 1000px;
    -webkit-perspective: 1000px;
}


.inner {
    width: 60%;
    height: 60%;
    transform: translateZ(100px);
    transform-style: preserve-3d;
    -webkit-transform: translateZ(100px); /* Safari */
    -webkit-transform-style: preserve-3d;
}

/* -------------------------------------------------------------------------- */
/*                             partner style end                              */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                             Appointment style end                          */
/* -------------------------------------------------------------------------- */

.appointment-banner-card {
    background-image: url("/assets/images/medicare-telidox-request-banner.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    width: 100%;
    height: auto;
    margin-top: 140px;
    border-radius: 24px;
}

.appointment-banner-card .appointment-heading {
    font-weight: 600;
    font-size: 44px;
    line-height: 72px;
    color: var(--color-white);
}

.appointment-banner-card .appointment-para {
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: var(--color-white);
}

.appointment-card p {
    font-weight: 600;
    font-size: 48px;
    line-height: 72px;
    color: var(--color-white);
}

.appointment-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: max-content;
    height: 48px;
    background: #E92126;
    border-radius: 7px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color-white);
    outline: none;
    overflow: hidden;
    position: relative;
    border: transparent;
}

.appointment-btn:hover {
    background: #E92126;
    color: var(--color-white);
}


.appointment-btn:hover .button__icon {
    color: var(--color-white);
}

.appointment-btn:hover .button__icon:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.appointment-btn:hover .button__icon--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

.appointment-btn:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.request-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: max-content;
    height: 48px;
    background: #ffffff10;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color-white);
    outline: none;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
}

.request-btn:hover {
    background: #ffffff10;
    color: #ffffff;
    border: 1px solid var(--color-white);
}

.request-btn:hover .button__icon {
    color: #ffffff;
}

.request-btn:hover .button__icon:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.request-btn:hover .button__icon--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

.request-btn:hover::before {
    animation: shine 1.5s ease-out infinite;
}

/* -------------------------------------------------------------------------- */
/*                             Appointment style end                          */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                             Global branch style start                      */
/* -------------------------------------------------------------------------- */

.global-center-heading {
    font-weight: 600;
    font-size: 60px;
    line-height: 90px;
    text-align: center;
    color: #011632;
}

.global-center-heading span {
    font-weight: 600;
    font-size: 60px;
    line-height: 90px;
    text-align: center;
    color: #1177FF;
}

/* -------------------------------------------------------------------------- */
/*                             Global branch style end                        */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                             Footer style end                               */
/* -------------------------------------------------------------------------- */

.footer-bg {
    background-image: url("/assets/images/medicare-telidox-footer-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    width: 100%;
    height: 100%;
    padding: 50px 0px;
}

.social-media-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bg .company-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    opacity: 0.7;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.page-links a,
.contact-detail span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    opacity: 0.7;
    text-decoration: none;
}

.page-links a:hover,
.contact-detail span:hover {
    opacity: 1;
}

.copyright-bg {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background: #000635;
}

.copyright-bg span {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
}

/* -------------------------------------------------------------------------- */
/*                             Footer style end                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                           Our Product Page style start                     */
/* -------------------------------------------------------------------------- */

.product-left-side img {
    width: 592px;
    height: 400px;
    border: 6px solid #FFFFFF;
    box-shadow: 0px 8px 36px rgba(17, 119, 255, 0.24);
    border-radius: 20px;
}

.product-title span {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #1177FF;
}

.product-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #002250;
}

.product-para {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-secondary);
    opacity: 0.7;
}

.product-login-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: max-content;
    height: 48px;
    background: var(--color-primary);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color-white);
    outline: none;
    overflow: hidden;
    position: relative;
    transition: all .3s ease;
}

svg {
    transition: all .3s ease;
}

.product-login-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    opacity: .9;
}

.product-login-btn:hover svg {
    transform: translateX(5px);
}

.our-product-hero-banner {
    background-image: url(/assets/images/medicare-telidox-hero-banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    min-height: 677px;
    height: 100%;
    display: flex;
    align-items: center;
}

.our-partner-hero-banner {
    background-image: url(/assets/images/medicare-telidox-hero-banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    min-height: 677px;
    height: 100%;
    display: flex;
    align-items: end;
}

.our-resource-hero-banner {
    background-image: url(/assets/images/medicare-telidox-hero-banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    min-height: 677px;
    height: 100%;
    display: flex;
    align-items: end;
}

.our-contact-hero-banner {
    background-image: url(/assets/images/medicare-telidox-hero-banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    min-height: 677px;
    height: 100%;
    display: flex;
    align-items: end;
}

.our-service-hero-banner {
    background-image: url(/assets/images/medicare-telidox-hero-banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    min-height: 677px;
    height: 100%;
    display: flex;
    align-items: end;
}

.our-product-hero-banner .hero-banner-subpara {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.our-service-hero-banner .hero-banner-subpara {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.our-resource-hero-banner .hero-banner-subpara {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.our-contact-hero-banner .hero-banner-subpara {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.our-partner-hero-banner .hero-banner-subpara {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.telidox-product-right-side img {
    width: 592px;
    height: 400px;
    background: linear-gradient(180deg, #1177FF -54.77%, #E92126 100%);
    border: 6px solid #FFFFFF;
    box-shadow: 0px 8px 36px rgba(17, 119, 255, 0.24);
    border-radius: 20px;
}

/* -------------------------------------------------------------------------- */
/*                           Our Product Page style end                       */
/* -------------------------------------------------------------------------- */



/* -------------------------------------------------------------------------- */
/*                           Our Services Page style end                       */
/* -------------------------------------------------------------------------- */

.visa-service-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #002250;
    margin-bottom: 10px;
}

.visa-service-para {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #002250;
    opacity: 0.7;
    margin-bottom: 10px;
}

.our-services {
    margin: 96px 0px;
}

.our-services-banner-img,
.our-products-banner-img,.our-locations-banner-img,.our-resources-banner-img,.our-contact-banner-img,.our-partner-banner-img {
    max-height: 65vh;
    /* Limits image height to 60% of the viewport height */
    width: auto;
    /* Maintains aspect ratio */
    max-width: 100%;
    /* Ensures it doesn't overflow horizontally */
    height: auto;
    /* Let the browser calculate based on aspect ratio */
}

.our-services-left-side {
    height: 460px;
}


/* -------------------------------------------------------------------------- */
/*                           Our Services Page style end                      */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                           About Us Page style end                          */
/* -------------------------------------------------------------------------- */

.main-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 72px;
    text-align: center;
    color: var(--color-primary);
}

.main-title-para {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #002250;
}

.global-branches {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 12px;
    width: max-content;
    height: 48px;
    background: #E1E9EF;
    border: 1px solid #BDCBD5;
    border-radius: 6px;
}

.global-branches span {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: var(--color-tertiary);
}

.mission-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: var(--color-tertiary);
}

.mission-title span {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: var(--color-primary);
}

.mission-desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    color: var(--color-tertiary);
}

.mission-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.our-mission-card {
    position: relative;
}

.mission-icon {
    margin: 0 auto;
    display: block;
}

.divider {
    width: 60%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
}

.our-mission-card:not(:last-child) .mission-img::after {
    content: "";
    position: absolute;
    top: 16%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 30%;
    background: rgba(0, 0, 0, 0.08);
}

.our-mission-card:not(:last-child) .mission-content::after {
    content: "";
    position: absolute;
    bottom: -18%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(0, 0, 0, 0.08);
}


.skewed-shaped-bg {
    position: relative;
    width: 100%;
    height: calc(50vw + 300px);
    background: linear-gradient(360deg, rgba(69, 1, 48, 0) 31.45%, rgba(13, 16, 51, 0.15) 59.68%, rgba(0, 76, 120, 0.15) 100%);
    color: white;
    overflow: hidden;
    z-index: 10;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: transparent;
}

/* .skewed-shaped-bg .container {
    margin-top: 15%;
} */

.skewed-shaped-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: #ffffff;
    transform: skewY(-4deg);
    transform-origin: top left;
    z-index: -1;
}

.main-title-industries,
.main-title-community {
    font-weight: 600;
    font-size: 60px;
    line-height: 90px;
    text-align: center;
    color: var(--color-primary);
}

.main-title-industries span,
.main-title-community span {
    font-weight: 600;
    font-size: 60px;
    line-height: 90px;
    text-align: center;
    color: var(--color-tertiary);
}

.industires-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.industires-card {
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #FFFFFF;
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 24px
}

.industires-card img {
    width: 48px;
    margin-bottom: 1rem;
}

.industires-card p {
    margin: 0;
    font-weight: 500;
    color: #0a0a0a;
}

.industires-card:hover,
.industires-image-card:hover {
    transform: translateY(-4px);
}

.industires-image-card {
    transition: all 0.3s ease;
    background-image: url(../images/medicare-telidox-industries-card-bg-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    background-color: #fff;
}

.industires-card,
.industires-image-card {
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: none;
    width: 100%;
}


.industries-type-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 140px;
    height: 140px;
    background: rgba(17, 119, 255, 0.05);
    border-radius: 100px;
    flex-shrink: 0;
}

.industires-card p {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: var(--color-tertiary);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    row-gap: 50px;
}

.companies-card {
    background: #FFFFFF;
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.country-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    gap: 8px;
    width: 200px;
    height: 40px;
    background: #F3F8FF;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: rgba(17, 119, 255, 0.1);
    border-radius: 0px 0px 7px 7px;
    margin: 0px auto;
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #000000;
}

.logo-wrapper {
    aspect-ratio: 3 / 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.companies-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}


.company-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: var(--color-tertiary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    row-gap: 50px;
}

.partners-card {
    background: #FFFFFF;
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.partners-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.partners-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: var(--color-tertiary);
}

.journey {
    background-image: url(../images/medicare-telidox-journery-timeline-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    /* overflow-x: hidden; */
    position: relative;
}

.main-title-journey {
    font-weight: 600;
    font-size: 72px;
    line-height: 108px;
    text-align: center;
    color: #FFFFFF;
}

.journey-para {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
    height: auto;
    position: relative;
}

.slider-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 20s linear infinite;
}

.slider-track img {
    width: auto;
    height: auto;
    max-height: 300px;
    /* adjust as per design */
    margin-right: 0;
    flex-shrink: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

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


.zig-zag-line {
    --a: 90deg;
    /* angle of zig-zag slope */
    --s: 250px;
    /* size of each zig-zag */
    --b: 15px;
    /* thickness of the zig-zag */

    /* Use your desired linear-gradient here */
    background: linear-gradient(176.68deg, #1177FF 1.12%, #E92126 95.64%);

    height: calc(var(--b) + var(--s)/(2 * tan(var(--a)/2)));
    width: 100%;

    /* Zigzag mask pattern using conic gradients */
    --_g: var(--s) repeat-x conic-gradient(from calc(var(--a)/-2) at bottom,
            #0000,
            #000 1deg,
            #000 calc(var(--a) - 1deg),
            #0000 var(--a));

    mask:
        50% calc(-1 * var(--b)) / var(--_g) exclude,
        50% / var(--_g);

    mask-composite: intersect;
    -webkit-mask-composite: destination-out;
}

.globalaccreditations {
    height: 100%;
}

.globalaccreditations-card {
    background: #FFFFFF;
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 30px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    padding: 48px 36px;
    height: 100%;
}

.globalaccreditations-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.globalaccreditations-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: var(--color-tertiary);
}

.globalaccreditations-card .logo-wrapper {
    aspect-ratio: 3 / 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    overflow: hidden;
}

.globalaccreditations-card .company-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: start;
    color: var(--color-tertiary);
}


/* -------------------------------------------------------------------------- */
/*                           About Us Page style end                          */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                           Location style end                               */
/* -------------------------------------------------------------------------- */

/* Make all location cards the same height */
.location-card {
    /* Allow flex item to grow and shrink */
    display: flex;
    /* Make the card a flex container */
    flex-direction: column;
    /* Stack children vertically */
    justify-content: space-between;
    /* Distribute space between elements */
    max-width: 456px;
    width: 100%;
    /* Set maximum width */
    min-height: 420px;
    height: 100%;
    /* Set minimum height */
    background: #FFFFFF;
    filter: drop-shadow(6px 4px 70px rgba(48, 123, 196, 0.16));
    border-radius: 24px;
    border: transparent;
    height: 100%;
}

.card-body {
    flex-grow: 1;
    /* Make card body grow to fill the remaining space */
    display: flex;
    flex-direction: column;
    justify-content: start;
    /* Ensure elements are spaced out */
    padding: 20px;
    /* Adjust padding as needed */
}

.address h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #1177FF;
    text-align: left;
}

.address p {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #002250;
    text-align: left;
}

.hl {
    width: 100%;
    border-top: 2px solid #E7F1FF;
}

.contact-info a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #002250;
}

/* Apply hover color to the first two anchor tags */
.contact-info .d-flex:nth-child(1) a:hover,
.contact-info .d-flex:nth-child(2) a:hover {
    color: #1177FF;
    /* Change to the desired color on hover */
}

#location-vadodara-carousel .carousel-item img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    width: 100%;
    height: 300px;
}

.carousel-indicators .active {
    opacity: 1 !important;
    width: 20px !important;
    height: 10px !important;
    background: #1177FF !important;
    border-radius: 100px !important;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    opacity: 1;
    transition: opacity .6s ease;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}

.community-para {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-tertiary);
}

.community-para {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-tertiary);
    opacity: 0.7;
}

.before-img-project,
.after-img-project {
    width: 100%;
}

.before-img-project img,
.after-img-project img {
    width: 702px;
    height: 500px;
    border: 10px solid #FFFFFF;
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 24px;
    object-fit: cover;
    position: relative;
}

/* .before-img-project .red-box,
.after-img-project .red-box {} */

.project-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px;
    gap: 24px;
    background: #FFFFFF;
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 24px;
    color: var(--color-tertiary);
    font-weight: 400;
    font-size: 18px;
    height: 100%;
}

.title {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 20px;
}


.project-description .divider {
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
}

.highlight-box {
    background: #F0F4FD;
    padding: 16px;
    border-radius: 12px;
    color: var(--color-tertiary);
    width: 100%;
}

.bullets {
    margin-top: -10px;
}

.bullets li {
    margin-bottom: 8px;
}

.result-title {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 24px;
}

.final-text {
    color: var(--color-tertiary);
}

.icon-location {
    margin-right: 8px;
    color: var(--color-primary);
}

.patient-review-skewed-shaped-bg {
    position: relative;
    width: 100%;
    height: calc(50vh + 300px);
    background: linear-gradient(360deg, rgba(69, 1, 48, 0) 31.45%, rgba(13, 16, 51, 0.15) 59.68%, rgba(0, 76, 120, 0.15) 100%);
    color: white;
    overflow: hidden;
    z-index: 10;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: transparent;
}

.patient-review-skewed-shaped-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: #ffffff;
    transform: skewY(-4deg);
    transform-origin: top left;
    z-index: -1;
}

#location-halol-carousel .carousel-item img,
#location-vadodara-carousel .carousel-item img,
#location-singapore-carousel .carousel-item img,
#location-kenya-carousel .carousel-item img,
#location-mombasa-carousel .carousel-item img,
#location-uganda-1-carousel .carousel-item img,
#location-uganda-2-carousel .carousel-item img,
#location-accra-carousel .carousel-item img,
#location-masai-carousel .carousel-item img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    width: 100%;
    max-height: 250px;
}

#locations-pills-tab .nav-link {
    color: #333;
    transition: 0.2s ease-in-out;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(17, 119, 255, 0.1);
    border-radius: 10px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

#locations-pills-tab .nav-link.active {
    background-color: var(--color-primary);
    color: white;
    border-color: transparent;
}

.since-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 10px;
    width: 122px;
    height: 36px;
    background: #002250;
    border-radius: 6px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    right: 15px;
    top: 15px;
}

 .carousel-control-prev {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    gap: 10px;
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 100px;
    top: calc(100% - 55%);
    left: 4%;
    opacity: 1;
}


.carousel-control-next {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    gap: 10px;
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 100px;
    top: calc(100% - 55%);
    right: 4%;
    opacity: 1;
}


/* -------------------------------------------------------------------------- */
/*                          Location Page style end                           */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                           Resource Page style end                          */
/* -------------------------------------------------------------------------- */

.blog-type span {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-primary);
}

.blog-read-time {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #E92126;
}

.blog-title h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: var(--color-tertiary);
}

.blog-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-secondary);
    opacity: 0.7;
}

.blog-author-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-tertiary);
}

.blog-date {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-tertiary);
}

.blog-author-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author-profile img {
    max-width: 48px;
    height: 48px;
    border-radius: 100px;
    object-fit: cover;
}

.dot {
    min-width: 9px;
    height: 9px;
    background: linear-gradient(180deg, #1177FF -54.77%, #E92126 100%);
    border-radius: 100px;
}

.view-all-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    gap: 12px;
    width: 158px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    border: transparent;
}

/* .product-demo-skewed-shaped-bg {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 8%;
    background: linear-gradient(360deg, rgba(69, 1, 48, 0) 31.45%, rgba(13, 16, 51, 0.15) 59.68%, rgba(0, 76, 120, 0.15) 100%);
    color: white;
    overflow: hidden;
    z-index: 10;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: transparent;
}

.product-demo-skewed-shaped-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: #ffffff;
    transform: skewY(-4deg);
    transform-origin: top left;
    z-index: -1;
} */

.product-demo-skewed-shaped-bg p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color-tertiary);
}

.product-demo {
    height: 400px;
    max-height: 100%;
    background: linear-gradient(252.25deg, rgba(0, 0, 0, 0.2) 2.47%, rgba(0, 0, 0, 0) 96.45%), url(.png);
    border: 6px solid #FFFFFF;
    filter: drop-shadow(0px 8px 36px rgba(17, 119, 255, 0.24));
    border-radius: 20px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    min-width: 75px;
    height: 75px;
    left: calc(100% - 50%);
    top: calc(100% - 50%);
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #1177FF -54.77%, #E92126 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
}

.play-icon {
    min-width: 59px;
    height: 59px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(27px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.play-button:hover .play-icon {
    background: linear-gradient(180deg, #1177FF -54.77%, #E92126 100%);
}

.product-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: var(--color-secondary);
}

.product-title span {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: var(--color-primary);
}

#faq-pills-tab {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    filter: drop-shadow(6px 4px 70px rgba(48, 123, 196, 0.16));
    border-radius: 12px !important;
    background: white;
}

#faq-pills-tab .nav-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 36px;
    gap: 24px;
    width: 100%;
    height: 90px;
    border-bottom: 1px solid #BDCBD5;
    border-radius: 0px;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    display: flex;
    align-items: center;
    color: var(--color-tertiary);
    transition: all .3s ease;
}

#faq-pills-tab .nav-link:first-child {
    border-top-right-radius: 12px;
}

#faq-pills-tab .nav-link:last-child {
    border-bottom-right-radius: 12px;
}

#faq-pills-tab .nav-link:hover {
    background: linear-gradient(90deg, rgba(225, 233, 239, 0) 0%, #E1E9EF 100%);
}

#faq-pills-tab .nav-link.active {
    background: linear-gradient(90deg, rgba(225, 233, 239, 0) 0%, #E1E9EF 100%);
}

#faq-pills-tab .nav-link:last-child {
    border-bottom: 1px solid transparent;
}

#faq-pills-tab .arrow-right {
    transform: translateX(-100px);
    opacity: 0;
    transition: all .8s ease;
}

#faq-pills-tab .nav-link:hover .arrow-right {
    transform: translateX(0px);
    opacity: 1;
}

#faq-pills-tab .nav-link.active .arrow-right {
    transform: translateX(0px);
    opacity: 1;
}

.accordion-item {
    margin-bottom: 20px !important;
}

.accordion-item {
    border: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 12px;
    width: 100%;
}

.accordion-button {
    padding: 0px;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    display: flex;
    align-items: center;
    color: var(--color-tertiary);
    width: 100% !important;
    background: transparent;
}

.accordion-button:focus,
.accordion-button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent;
}


.accordion-header {
    background: transparent;
    width: 100%;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: transparent;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    border-bottom: 1px solid #BDCBD5;
    padding-bottom: 16px;
}

.accordion-button::after {
    background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 0.999999L13 13M13 13L13 2.2M13 13L2.2 13" stroke="%23E92126" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    transition: rotate .3s ease;
    transform: rotate(360deg) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 13L13 1M13 1L2.2 1M13 1V11.8" stroke="%23E92126" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    transform: rotate(0deg) !important;
}

.accordion-body {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-tertiary);
    padding: 0px;
}

/* -------------------------------------------------------------------------- */
/*                           Resource Page style end                          */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                           Partner with Us Page style start                 */
/* -------------------------------------------------------------------------- */

.partnership-model-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 36px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 24px;
    width: 100%;
    height: 100%;
}

/* .managing-person-img {
    background-image: url(../images/medicare-telidox-managing-person-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
} */

.managing-person-bg {
    border-radius: 24px;
}

.managing-person-wrapper {
    background: linear-gradient(180deg, #0A4799, #002658);
    /* gradient border */
    padding: 20px;
    /* border thickness */
    border-radius: 1000px;
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.managing-person-img {
    background-color: white;
    /* white background inside */
    width: 100%;
    height: 100%;
    border-radius: 1000px;
    object-fit: cover;
    border: transparent;
}

.managing-person-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: var(--color-tertiary);
}

.managing-person-title span {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: var(--color-primary);
}

.managing-person-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-tertiary);
    opacity: 0.7;
}

.managing-person-description p {
    margin-bottom: 30px;
}

.partner-skewed-shaped-bg {
    position: relative;
    width: 100%;
    height: calc(65vh + 300px);
    background: linear-gradient(360deg, rgba(69, 1, 48, 0) 31.45%, rgba(13, 16, 51, 0.15) 59.68%, rgba(0, 76, 120, 0.15) 100%);
    color: white;
    overflow: hidden;
    z-index: 10;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: transparent;
    color: var(--color-tertiary);
}

.partner-skewed-shaped-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: #ffffff;
    transform: skewY(-4deg);
    transform-origin: top left;
    z-index: -1;
}

.partner-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0px;
    gap: 26px;
    width: 333px;
    height: 333px;
    background: #FFFFFF;
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 24px;
}

.partner-icon-circle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 25px;
    margin: 0 auto;
    width: 120px;
    height: 120px;
    background: #E1E9EF;
    border: 1px solid #BDCBD5;
    border-radius: 100px;
}

.number-count {
    font-weight: 600;
    font-size: 48px;
    line-height: 72px;
    text-align: center;
    color: var(--color-tertiary);
}

.services-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color-tertiary);
}

.custom-form-control,
.custom-form-select {
    height: 66px;
    background: #FFFFFF;
    border: 1px solid rgba(1, 22, 50, 0.1);
    border-radius: 12px;
}

.form-label {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-tertiary);
}

.custom-form-control::placeholder {
    color: #01163266;
}

/* Base select style */
.select-interest {
    color: #01163266; /* Placeholder color by default */
}

/* When user selects a real option */
.select-interest:valid {
    color: #011632; /* Darker shade for selected */
}



/* -------------------------------------------------------------------------- */
/*                           Partner with Us Page style end                   */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                           Contact Us Page style Start                      */
/* -------------------------------------------------------------------------- */

.qr-code-card {
    width: 400px;
    height: 397px;
    background: #FFFFFF;
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    gap: 50px;
}

.whatsapp-qr-code {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
}

.qr-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.scan-label {
    background: black;
    color: white;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 8px;
    white-space: nowrap;
}

.scan-label::after {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.whatsapp-icon {
    position: absolute;
    top: 0px;
    right: 40px;
    object-fit: contain;
}

.whatsapp-integration-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: var(--color-tertiary);
    text-wrap: unset;
}

.qr-code-img {
    max-width: 200px;
    height: 200px;
    object-fit: cover;
}

.contact-info-card {
    padding: 36px;
    background: #ffffff20;
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 24px;
    height: 100%;
}

.center-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: var(--color-tertiary);
}

.email-box,
.phone-box {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    gap: 10px;
}

.email-box a,
.phone-box a {
    color: var(--color-secondary);
    text-decoration: none;
}

.email-icon,
.phone-icon {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-skewed-shaped-bg {
    position: relative;
    width: 100%;
    height: calc(65vh + 300px);
    background: linear-gradient(0deg, rgba(69, 1, 48, 0) 12.56%, rgba(13, 16, 51, 0.1) 38.36%, rgba(0, 76, 120, 0.15) 100%);
    color: white;
    overflow: hidden;
    z-index: 10;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: transparent;
    color: var(--color-tertiary);
}

.contact-skewed-shaped-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: #ffffff;
    transform: skewY(-4deg);
    transform-origin: top left;
    z-index: -1;
}

.iti {
    width: 100%;
}

.iti__selected-flag {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}


/* -------------------------------------------------------------------------- */
/*                           Contact Us Page style end                        */
/* -------------------------------------------------------------------------- */

/* ------------------------------ Timeline Css ------------------------------ */

.controls {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  background: white;
  z-index: 10;
}

.controls:hover {
    background: var(--color-primary);
}

.controls:hover .ti-arrow-left,
.controls:hover .ti-arrow-right {
    color: var(--color-white);
}

.controls.next {
  left: auto;
  right: 20px;
}

.controls .ti-arrow-left,
.controls .ti-arrow-right {
    color: var(--color-primary);
    font-size: 30px;
}

.time-line {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}
.time-line * {
  transition: 0.5s all ease;
}
.time-line .dates-overflow {
  left: calc(100% - 80%);
  width: calc(160px * 13);
  position: absolute;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
}
.time-line .dates-wrap {
  display: inline-block;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
}

.time-line .dates-wrap .date {
  width: 160px;
  position: relative;
  float: left;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 2s all ease;
}
.time-line .dates-wrap .date .date-content {
  visibility: hidden;
  position: absolute;
  bottom: 100%;
  margin-bottom: 20px;
  transform-origin: 50% 100%;
  transform: scale(0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 19px 17px;
  gap: 12px;
  width: 250px;
  height: 160px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  z-index: 20;
}
/* .time-line .dates-wrap .date .date-content:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  top: 100%;
  margin-top: 8px;
  height: 60px;
  opacity: 0;
  background-color: #fff;
  transform: scaleY(0);
  transform-origin: 100% 100%;
  transition: 2s all ease;
} */

.time-line .dates-wrap .date .date-content > div {
  opacity: 0;
  transform: translateY(40px);
}
.time-line .dates-wrap .date .date-content .date-text {
font-weight: 700;
font-size: 24px;
line-height: 36px;
text-align: center;
color: #FFFFFF;
}

.time-line .dates-wrap .date .date-content .para-year {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}
.time-line .dates-wrap .date .date-year {
  opacity: 0.4;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.time-line .dates-wrap .date .date-year:hover {
  opacity: 1 !important;
}
.time-line .dates-wrap .date .date-year:hover:after {
  transform: scale(1) !important;
}
.time-line .dates-wrap .date .date-year p {
  position: absolute;
  top: 36px;
  line-height: 0;
  color: #fff;
  font-size: 35px;
  font-weight: 900;
  transform: scale(0.4);
  z-index: 2;
}
.time-line .dates-wrap .date .date-year:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #fff;
  bottom: 100%;
  margin-bottom: -7px;
  border-radius: 50%;
  transform: scale(0.4);
  transition: 2s all;
}
.time-line .dates-wrap .date .date-year:before {
  content: "";
  position: absolute;
  top: 0;
  width: 200%;
  height: 1px;
  background-color: #fff;
}
.time-line .dates-wrap .date.sibling .date-year {
  opacity: 0.6;
}
.time-line .dates-wrap .date.sibling .date-year:after {
  transform: scale(0.8);
}
.time-line .dates-wrap .date.sibling .date-year p {
  transform: scale(0.6);
}
.time-line .dates-wrap .date.active + .date .date-year {
  opacity: 0.6;
}
.time-line .dates-wrap .date.active + .date .date-year:after {
  transform: scale(0.8);
}
.time-line .dates-wrap .date.active + .date .date-year p {
  transform: scale(0.6);
}
.time-line .dates-wrap .date.active .date-year {
  opacity: 1;
}
.time-line .dates-wrap .date.active .date-year:before {
  width: calc(200% - 11px);
}
.time-line .dates-wrap .date.active .date-year:after {
  transform: scale(1);
}
.time-line .dates-wrap .date.active .date-year p {
  transform: scale(1.2);
}
.time-line .dates-wrap .date.active .date-content {
  transform: scale(1);
  visibility: visible;
}
/* .time-line .dates-wrap .date.active .date-content:after {
  transition-delay: 0.1s;
  opacity: 1;
  transform: scaleY(1);
} */
.time-line .dates-wrap .date.active .date-content div {
  /* transition-delay: 0.1s; */
  opacity: 1;
  transform: translateY(0px) scale(1);
}

.slick-prev,
.slick-next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  border: transparent;
}

.slick-prev {
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.slick-next {
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.slick-prev i,
.slick-next i {
  font-size: 22px;
  color: #000;
  line-height: 1;
}
/* Target slick slides */
.slick-slide {
  margin: 0 10px; /* 10px space on left & right */
}

/* Compensate the extra margin on the track */
.slick-list {
  margin: 0 -10px;
  padding: 20px 0px;
}


/* ---------------------------- Timeline CSS End ---------------------------- */

#partnerForm,#contactForm {
    background: #FFFFFF;
    box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
    border-radius: 24px;
    padding: 36px;
}


.our-location-element {
    position: absolute;
    top: 10%;
    right: 20%;
}


.ulpoad-file-btn {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color-primary) !important;
}

.ulpoad-file-btn label {
    color: var(--color-primary) !important;
}

.ti-mail {
    color: #1177FF;
}

/* -------------------------------------------------------------------------- */
/*                           Media Query start                                */
/* -------------------------------------------------------------------------- */

@media (max-width: 1662px) {
    .custom-navbar .navbar-brand {
        margin: 0;
    }
}

@media (max-width: 1536px) {
    .specialization-card {
        width: 100%;
        height: 100%;
        padding: 20px 0px;
    }

    .specialization-circle {
        width: 120px;
        height: 120px;
    }

    .hero-banner-heading {
        font-size: 50px;
        line-height: normal;
    }

    .hero-banner-visamedical-doctor {
        aspect-ratio: 3 / 3;
    }

    .custom-navbar .navbar-brand {
        width: 300px;
    }

    .whatsapp-icon {
        right: 10px;
    }

    .partner-card {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 1400px) {
    .custom-navbar .stroke ul li a {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .specialization-card {
        padding: 20px;
    }

    .custom-navbar .navbar-brand {
        width: 250px;
    }

     .managing-person-wrapper {
        width: 400px;
        height: 400px;
     }

     .tile {
        width: 450px;
     }


    .whatsapp-icon {
        max-width: 30%;
    }
     /* .product-demo-skewed-shaped-bg::before {
        height: 100px;
    } */

    .hero-banner-diagnostics-doctor {
        aspect-ratio: 3 / 3;
    }

 .industires-card {
        aspect-ratio: unset !important;
        height: auto;
    }

    .skewed-shaped-bg {
        height: calc(60vw + 100px);
    }

    .partner-card {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 1200px) {

    .swiper.heroSwiper {
        width: 100%;
        max-width: 1400px;
        z-index: 2;
    }

    .our-services-banner-img,.our-products-banner-img,.our-locations-banner-img,.our-resources-banner-img,.our-contact-banner-img,.our-partner-banner-img {
        max-height: 60vh;
    }

    .whatsapp-icon {
        right: 0px;
    }

     .managing-person-wrapper {
        width: 320px;
        height: 320px;
     }

     .partner-card {
        padding: 12px;
     }

     .partner-skewed-shaped-bg {
        height: calc(105vh + 300px);
     }

    .our-location-element {
        position: absolute;
        top: 0;
        right: 0;
        width: 29%;
    }

    .hero-banner-visamedical-doctor {
        aspect-ratio: 3 / 4;
    }

    .companies-grid {
        gap: 1rem;
        grid-template-columns: repeat(3, 1fr);
    }

    .skewed-bg {
        height: 100%;
        padding: 100px 12px;
    }

    .partners-img {
        height: 100%;
        width: 100%;
        border-radius: 0px;
    }

    .qr-code-card {
        width: 300px;
    }

    .partner-heading,
    .partner-heading span {
        line-height: normal;
        font-size: 40px;
    }

    .skewed-shaped-bg {
        height: calc(60vw + 300px);
        padding-top: 5%;
    }
}

@media (max-width: 992px) {

    .product-left-side img,
    .telidox-product-right-side img {
        width: 100%;
        height: 100%;
    }

    .copyright-bg {
        height: auto;
        padding: 10px 0px;
    }

    .section-spacing {
        margin-top: 48px !important;
        margin-bottom: 48px;
    }

    .mission-container {
        grid-template-columns: 1fr;
    }

    .our-mission-card::after {
        display: none;
    }

    .patient-heading,
    .patient-heading span,
    .global-center-heading,
    .global-center-heading span,
    .partner-heading,
    .partner-heading span,
    .product-heading,
    .specialization-heading,.main-title-industries,.main-title-industries span, .main-title-community span,.main-title-journey,.main-title-community {
        font-size: 45px;
        line-height: normal;
        text-align: center;
    }

    .contact-skewed-shaped-bg {
        height: 100%;
        padding-top: 25%;
        padding-bottom: 10%;
    }

    .whatsapp-icon {
        right: 46px;
    }

    .managing-person-bg {
        height: 400px;
        width: 100%;
    }

    .slick-slide {
        margin: 0 8px; /* Adjust as needed */
    }
    .slick-list {
        margin: 0 -8px;
    }

    .slick-track {
        padding: 20px 0px;
    }

    .industires-card {
        height: 200px !important;
        box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.1);
        padding: 9px;
    }

    .industires-image-card {
        height: 200px;
    }
    .industries-type-icon {
        width: 80px;
        height: 80px;
    }
    .industries-type-icon svg {
        width: 40px;
        height: 40px;
    }

    .globalaccreditations-card {
        padding: 36px;
        height: 250px;
    }
}

@media (max-width: 991px) {
    .product-title span,
    .product-title {
        font-size: 20px;
        line-height: normal;
        text-align: center;
    }

    .whatsapp-integration-title, .product-para {
        /* text-align: center; */
        line-height: normal;
    }

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

    .our-mission-card:not(:last-child) .mission-img::after {
        content: none;
    }

    .our-mission-card:not(:last-child) .mission-content::after {
        content: none;
    }

    /* .product-demo-skewed-shaped-bg {
        padding-top: 10%;
    } */

    .our-services-left-side {
        height: 100%;
    }

    .hero-section {
        height: 100%;
    }

    .hero-banner-consultancy-element {
        left: 0;
    }

     .hero-banner-diagnostic-slide,
    .hero-banner-teleradiology-slide,
    .hero-banner-healthtech-slide,
    .hero-banner-visa-slide,
    .hero-banner-consultancy-slide {
        flex-wrap: wrap;
        gap: 50px;
    }

    .hero-banner-visamedical-doctor,.hero-banner-diagnostics-doctor {
        aspect-ratio: 3 / 2;
    }

    .industires-grid,.companies-grid,.partners-grid {
        gap: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .skewed-shaped-bg {
        height: 100%;
        padding-top: 20%;
    }


    .globalaccreditations-card .company-name {
        font-size: 18px;
        line-height: normal;
    }

    .ulpoad-file-btn {
        position: relative;
        right: 0;
        top: 0;
        background: var(--color-primary);
        color: white !important;
        border-radius: 6px;
        padding-right: 0px !important;
        margin-top: 10px;
        width: max-content;
    }

     .partner-skewed-shaped-bg {
        height: 100%;
        padding-top: 15%;
        padding-bottom: 5%;
     }

    .ulpoad-file-btn label {
        color: white !important;
    }

    #removeIconContainer {
        top: 50%;
        right: 10%;
        position: absolute;
        z-index: 1;
    }

    .skewed-bg {
        height: 100%;
        padding: 100px 12px;
    }

    .hero-banner-subpara,
    .appointment-para,
    .partner-para,.appointment-banner-card .appointment-heading {
        text-align: center;
    }

    .custom-navbar .navbar-brand {
        width: 250px;
    }

    .number-count {
        font-size: 30px;
        line-height: normal;
    }


    .partner-icon-circle {
        width: 100px;
        height: 100px;
        padding: 12px;
    }

    .journey {
        padding: 5% 0px;
    }

    .contact-info-card {
        padding: 18px;
    }

    .hero-banner-heading {
        text-align: center;
    }

    .book-appoint-btn {
        margin: 0px auto;
    }

    .our-services-banner-img,.our-products-banner-img,.our-locations-banner-img,.our-resources-banner-img,.our-contact-banner-img,.our-partner-banner-img {
        max-height: 30vh;
    }

    .our-location-element {
        right: 10%;
        width: 21%;
    }

    .play-button {
        left: calc(100% - 50%);
        top: calc(100% - 60%);
    }

}

@media (max-width: 768px) {

    #faq-pills-tab .nav-link,.accordion-button {
        font-size: 18px;
        line-height: normal;
    }

    .product-demo {
        height: auto;
    }

    .play-button {
        transform: translate(-50%, -100%);
    }

    .blog-author-profile {
        flex-wrap: wrap;
    }

    .blog-date,.blog-author-name,.blog-description {
        font-size: 16px;
    }

    .blog-title h3 {
        font-size: 18px;
    }

    .contact-skewed-shaped-bg {
        height: 100%;
        padding-top: 30%;
    }

    /* .product-demo-skewed-shaped-bg {
        height: 100%;
        padding-top: 15%;
    } */

    .number-count {
        font-size: 24px;
        line-height: normal;
    }

    .skewed-shaped-bg,.product-demo-skewed-shaped-bg,.contact-skewed-shaped-bg {
        height: 100%;
        padding-top: 30%;
    }

    .patient-review-skewed-shaped-bg::before,.product-demo-skewed-shaped-bg::before,.contact-skewed-shaped-bg::before,.partner-skewed-shaped-bg::before,.skewed-shaped-bg::before {
        height: 40px;
    }

    .patient-review-skewed-shaped-bg {
        height: 100%;
        padding-top: 20%;
    }
    .our-services {
        margin: 48px 0px;
    }

    .masked-image {
        right: 0;
        position: relative;
        bottom: 0;
    }

    .product-para {
        line-height: normal;
        font-size: 16px;
        text-align: start;
    }

    /* Timeline mobile adjustments */
    /* .time-line {
        height: 250px;
    } */

    .time-line .dates-wrap .date {
        width: 140px;
    }

    .time-line .dates-overflow {
        width: calc(140px * 12);
    }

    .controls {
        left: 20px;
        top: 35%;
        transform: translate(-50% , -50%);
    }

    .controls.next {
        right: -20px;
    }

    .appointment-banner-card .appointment-heading,
    .hero-banner-heading,.whatsapp-integration-title {
        font-size: 24px;
        line-height: normal;
        text-align: center;
    }

    .patient-heading,
    .patient-heading span,
    .global-center-heading,
    .global-center-heading span,
    .partner-heading,
    .partner-heading span,
    .product-heading,
    .specialization-heading,.main-title-industries,.main-title-industries span, .main-title-community span,.main-title-journey,.main-title-community {
        font-size: 30px;
    }

    /* .product-para {
        margin-bottom: 0px;
    } */

    .custom-navbar .login-btn {
        gap: 0px;
        width: max-content;
    }

    .custom-navbar {
        height: auto;
    }

    .appointment-banner-card {
        margin-top: 48px;
    }

    .tile {
        width: 100%;
    }

    .specialization-card,
    .product-card {
        width: 100%;
        height: 100%;
        padding: 12px;
        border-radius: 12px;
    }

    .specialization-circle {
        width: 90px;
        height: 90px;
    }

    .specialization-circle,
    .icon-circle {
        min-width: 90px;
        min-height: 90px;
    }

    .specialization-card svg,
    .icon-circle svg {
        width: 40px;
        height: 40px;
    }

    .specialization-name,
    .product-fullname,
    .product-name,.managing-person-title span,.managing-person-title {
        font-size: 18px;
        line-height: normal;
    }

    .managing-person-description {
        font-size: 16px;
        line-height: normal;
    }

    .hero-banner-healthtech-slide,.hero-banner-diagnostic-slide,.hero-banner-visa-slide,.hero-banner-teleradiology-slide,.hero-banner-consultancy-slide {
        padding-top: 0px;
    }

    .hero-banner-diagnostic-slide, .hero-banner-teleradiology-slide, .hero-banner-healthtech-slide, .hero-banner-visa-slide{
        gap: 50px;
    }

    .hero-section {
        padding-top: 48px;
        height: 100%;
    }

    /* .hero-banner-teleradiology-slide .hero-banner-teleradiology-doctor,
    .hero-banner-diagnostic-slide .hero-banner-diagnostics-doctor,
    .hero-banner-visa-slide .hero-banner-visamedical-doctor,
    .hero-banner-healthtech-slide .hero-banner-healthtech-doctor,
    .hero-banner-consultancy-slide .hero-banner-consultancy-doctor {
        width: 100%;
        max-width: 100%;
        height: 300px !important;
        object-fit: cover;
        aspect-ratio: none;
    } */

    .hero-banner-teleradiology-element,
    .hero-banner-teleradiology-element1,
    .hero-banner-healthtech-element,
    .hero-banner-healthtech-element1,
    .hero-banner-diagnostics-element,
    .hero-banner-diagnostics-element1,
    .hero-banner-visa-element1,
    .hero-banner-visa-element,
    .hero-banner-consultancy-element1,
    .hero-banner-consultancy-element {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .hero-banner-consultancy-element {
        left: 0;
    }

    .hero-banner-teleradiology-element {
        left: calc(100vw - 90%);
    }

    .hero-banner-teleradiology-element1 {
        right: calc(100vw - 90%);
    }

    .global-branches {
        height: auto;
        width: 100%;
    }
    .global-branches span {
        text-align: center;
    }

    .industires-grid,.companies-grid,.partners-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .industires-card {
        aspect-ratio: auto; /* Reset to default */
        width: 100%;        /* Ensure it spans full width */
    }

    .project-description {
        padding: 18px;
        gap: 12px;
    }

    .industries-type-icon {
        width: 100px;
        height: 100px;
    }


    .industires-image-card img {
        height: 100%;
    }

    .whatsapp-icon {
        width: 100px;
        height: 100px;
        position: relative;
        left: 0;
        right: auto;
    }

    .whatsapp-qr-code {
        justify-content: flex-start;
        gap: 20px;
        height: 100%;
    }

    .qr-code-card {
        width: 100%;
        height: auto;
        padding: 12px;
    }

    .email-box, .phone-box {
        flex-wrap: wrap;
    }

    .time-line .dates-overflow {
        width: calc(140px * 13);
    }

    .time-line .dates-wrap {
        top: 0;
    }

    .skewed-shaped-bg, .product-demo-skewed-shaped-bg, .contact-skewed-shaped-bg {
        height: 100%;
        padding-top: 10%;
    }

    .managing-person-wrapper {
        width: 240px;
        height: 240px;
    }

    .partner-card {
        padding: 24px;
    }

    .partner-icon-circle {
        width: 80px;
        height: 80px;
        padding: 12px;
    }

    .partner-skewed-shaped-bg {
        height: 100%;
        padding-top: 25%;
    }

    .our-location-element {
        position: absolute;
        top: 0;
        right: 0;
        width: 29%;
    }

    .location-card {
        max-width: 100%;
        width: 100%;
        min-height: 100%;
        height: 100%;
    }

    .location-card img {
        object-fit: cover;
        width: 100%;
    }

    .world-map {
        transform: scale(1.4) !important;
        position: relative;
        top: 0;
        left: -10%;
    }

    .hero-banner-teleradiology-doctor,
    .hero-banner-diagnostics-doctor,
    .hero-banner-healthtech-doctor,.hero-banner-consultancy-doctor,
    .hero-banner-visamedical-doctor {
        aspect-ratio: auto !important;
    }

    .our-service-hero-banner,.our-product-hero-banner,.our-resource-hero-banner,.our-contact-hero-banner,.our-partner-hero-banner {
        min-height: 570px;
    }

    .controls .ti-arrow-left,
    .controls .ti-arrow-right {
        color: var(--color-primary);
        font-size: 24px;
    }

    .before-img-project img,
    .after-img-project img {
        width: 100%;
        height: 250px;
        border: 10px solid #FFFFFF;
        box-shadow: 6px 4px 70px rgba(48, 123, 196, 0.16);
        border-radius: 24px;
        object-fit: cover;
        position: relative;
    }

    .mission-desc {
        font-size: 18px;
        line-height: normal;
    }

     .mission-icon {
        width: 100px;
     }

    .divider {
        margin: 1rem auto;
    }

    .community-para {
        font-size: 16px;
        line-height: normal;
    }
}

@media (max-width: 576px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .skewed-shaped-bg, .product-demo-skewed-shaped-bg, .contact-skewed-shaped-bg {
        height: 100%;
        padding-top: 30%;
    }

    .world-map {
        transform: scale(2) !important;
        position: relative;
        top: 0;
        left: -15%;
    }

    .custom-navbar .navbar-brand {
        width: max-content;
    }
}

@media (max-width: 397px) {
  .time-line .dates-overflow {
        width: calc(120px * 15);
    }

    .our-service-hero-banner,.our-product-hero-banner,.our-resource-hero-banner {
        min-height: 598px;
    }
}

@media (max-width: 361px) {
    .time-line .dates-overflow {
        width: calc(110px * 15);
    }

    .dot {
        display: none;
    }

}

@media (max-width: 331px) {
    .time-line .dates-overflow {
        width: calc(100px * 14);
    }

    .time-line .dates-wrap .date {
        width: 100px;
    }

}

@media (max-width: 992px) and (min-width: 362px) {
  .time-line .dates-wrap {
    left: 40px;
  }
}

@media (max-width: 361px) and (min-width: 332px) {
  .time-line .dates-wrap {
    left: 35px;
  }
}

@media (max-width: 331px) {
  .time-line .dates-wrap {
    left: 20px;
  }
}


/* -------------------------------------------------------------------------- */
/*                           Media Query end                                  */
/* -------------------------------------------------------------------------- */



