/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/

@media only screen and (max-width: 1023px) {
  body.cs-open {
    overflow: hidden;
  }
  body.scroll #navbar {
    transform: translateY(-3.3125rem);
  }
  #navbar {
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 10000;
    transition: transform 0.3s;
  }
  #navbar:before {
    content: "";
    width: 100%;
    height: 0vh;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: absolute;
    display: block;
    top: 100%;
    right: 0;
    z-index: -1100;
    opacity: 0;
    transition: height 0.5s, opacity 0.5s;
  }
  #navbar.cs-active:before {
    height: 150vh;
    opacity: 1;
  }
  #navbar.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.15s;
  }
  #navbar.cs-active .cs-li {
    transform: translateY(0);
    opacity: 1;
  }
  #navbar .cs-top-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #navbar .cs-top-container {
    width: 100%;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    background-color: #f7f7f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  #navbar .cs-top-contact {
    width: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  #navbar .cs-top-link {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }
  #navbar .cs-top-link:nth-of-type(2) {
    display: none;
  }
  #navbar .cs-link-icon {
    width: 1rem;
    height: auto;
    display: block;
  }
  #navbar .cs-top-social {
    visibility: visible;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
  }
  #navbar .cs-social-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #navbar .cs-social-icon {
    width: 1.25rem;
    height: auto;
    display: block;
  }
  #navbar .cs-container {
    width: 100%;
    padding: 1.25rem 1rem;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
  }
  #navbar .cs-logo {
    width: auto;
    height: 2.5rem;
    margin: 0 auto 0 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
    z-index: 10;
  }
  #navbar .cs-logo img {
    width: 230px;
    height: 100%;
    object-fit: contain;
  }
  #navbar .cs-nav {
    order: 2;
  }
  #navbar .cs-toggle {
    width: 2.875rem;
    height: 2.875rem;
    margin: 0 0 0 auto;
    background-color: var(--primary);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s;
  }
  #navbar .cs-toggle.cs-active {
    transform: rotate(180deg);
  }
  #navbar .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #navbar .cs-active .cs-line2 {
    top: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
  }
  #navbar .cs-active .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }
  #navbar .cs-box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 0.75rem;
    position: relative;
  }
  #navbar .cs-line {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #fafbfc;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #navbar .cs-line1 {
    top: 0;
    transform-origin: center;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #navbar .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #navbar .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #navbar .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 3rem;
    opacity: 0;
    background-color: #fff;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s, opacity 0.3s;
  }
  #navbar .cs-ul {
    margin: 0;
    padding: 3rem 0 0 0;
    width: 100%;
    height: auto;
    max-height: 65vh;
    overflow: scroll;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  #navbar .cs-li {
    width: 100%;
    text-align: center;
    list-style: none;
    margin-right: 0;
    transform: translateY(-4.375rem);
    opacity: 0;
    transition: transform 0.6s, opacity 0.9s;
  }
  #navbar .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #navbar .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #navbar .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #navbar .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #navbar .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #navbar .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #navbar .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #navbar .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #navbar .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #navbar .cs-li:nth-of-type(10) {
    transition-delay: 0.5s;
  }
  #navbar .cs-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }
  #navbar .cs-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }
  #navbar .cs-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }
  #navbar .cs-li-link {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
  }
  #navbar .cs-li-link.cs-active {
    color: var(--primary);
  }
  #navbar .cs-li-link:hover {
    color: var(--primary);
  }
  #navbar .cs-button-solid {
    display: none;
  }
}

@media only screen and (min-width: 48rem) {
  #navbar .cs-top-link:nth-of-type(2) {
    display: flex;
  }
}

/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/

@media only screen and (max-width: 1023px) {
  #navbar .cs-li {
    text-align: center;
    width: 100%;
    display: block;
  }
  #navbar .cs-dropdown {
    position: relative;
    color: var(--bodyTextColorWhite);
  }
  #navbar .cs-dropdown.cs-active .cs-drop-ul {
    height: auto;
    opacity: 1;
    visibility: visible;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0;
  }
  #navbar .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }
  #navbar .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }
  #navbar .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
  }
  #navbar .cs-drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s,
      visibility 0.3s;
  }
  #navbar .cs-drop-li {
    list-style: none;
  }
  #navbar .cs-li-link.cs-drop-link {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #fff;
  }
}
@media only screen and (min-width: 64rem) {
  #navbar .cs-dropdown {
    position: relative;
  }
  #navbar .cs-dropdown:hover {
    cursor: pointer;
  }
  #navbar .cs-dropdown:hover .cs-drop-ul {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  #navbar .cs-dropdown:hover .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #navbar .cs-drop-icon {
    width: 0.75rem;
    height: auto;
    margin-left: 0.25rem;
    display: inline-block;
  }
  #navbar .cs-drop-ul {
    min-width: 12.5rem;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
    border-bottom: 5px solid var(--primary);
    position: absolute;
    top: 100%;
    z-index: -100;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
  }
  #navbar .cs-drop-li {
    list-style: none;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0;
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(-0.625rem);
    transition: opacity 0.6s, transform 0.6s;
  }
  #navbar .cs-drop-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #navbar .cs-drop-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #navbar .cs-drop-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #navbar .cs-drop-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #navbar .cs-drop-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #navbar .cs-drop-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #navbar .cs-drop-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #navbar .cs-drop-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #navbar .cs-drop-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #navbar .cs-drop-li:nth-of-type(10) {
    transition-delay: 0.5s;
  }
  #navbar .cs-drop-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }
  #navbar .cs-drop-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }
  #navbar .cs-drop-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }
  #navbar .cs-li-link.cs-drop-link {
    font-size: 1rem;
    white-space: nowrap;
    line-height: 1.5em;
    text-decoration: none;
    width: 100%;
    padding: 0.75rem;

    box-sizing: border-box;
    color: var(--bodyTextColor);
    display: block;
    transition: color 0.3s, background-color 0.3s;
  }
  #navbar .cs-li-link.cs-drop-link:hover {
    color: var(--primary);
    background-color: #f7f7f7;
  }
  #navbar .cs-li-link.cs-drop-link:before {
    display: none;
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/

@media only screen and (min-width: 64rem) {
  body.scroll #navbar {
    transform: translateY(-3.3125rem);
  }
  #navbar {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 10000;
    transition: transform 0.3s;
  }
  #navbar .cs-top-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #navbar .cs-top-container {
    width: 100%;
    max-width: 80rem;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.125rem;
    position: relative;
    z-index: 1;
  }
  #navbar .cs-top-container:before {
    content: "";
    width: 100vw;
    height: 100%;
    background: #ececec;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
  }
  #navbar .cs-top-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
  }
  #navbar .cs-top-link {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }
  #navbar .cs-top-link:hover {
    text-decoration: underline;
  }
  #navbar .cs-link-icon {
    width: 1.2rem;
    height: auto;
    display: block;
  }
  #navbar .cs-top-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #navbar .cs-social-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
  }
  #navbar .cs-social-link:hover {
    transform: scale(1.1);
  }
  #navbar .cs-social-icon {
    width: 1.65rem;
    height: auto;
    display: block;
  }
  #navbar .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    padding: 0 1rem;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    position: relative;
  }
  #navbar .cs-toggle {
    display: none;
  }
  #navbar .cs-logo {
    height: clamp(2.5rem, 4vw, 2.75rem);
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  #navbar .cs-logo img {
    /* width: auto;
    height: 100%; */
    width: 200px;
    height: auto;
    object-fit: contain;
  }
  #navbar .cs-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
  }
  #navbar .cs-li {
    list-style: none;
    padding: 1.9375rem 0;
    flex: none;
  }
  #navbar .cs-li-link {
    font-size: clamp(0.875rem, 1.3vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color 0.3s;
  }
  #navbar .cs-li-link:hover {
    color: var(--primary);
  }
  #navbar .cs-li-link.cs-active {
    font-weight: 700;
    color: var(--headerColor);
  }
  #navbar .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    padding: 0 2rem;
    background-color: var(--primary);
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;

    box-sizing: border-box;
    transition: color 0.3s;
  }
  #navbar .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #1a1a1a;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #navbar .cs-button-solid:hover:before {
    width: 100%;
  }
  #navbar .cs-nav-button1 {
    line-height: 2.875rem;
    border-radius: 1.5rem;
    margin-left: 1rem;
    background: linear-gradient(127.08deg, #4611b8 28.48%, #3f88f5 100.16%);

  }
  #navbar .cs-nav-button {
    line-height: 2.875rem;
    border-radius: 1.5rem;
    margin-left: 1rem;
    background: linear-gradient(127.08deg, #3f88f5 28.48%, #4611b8 100.16%);
    
  }
}

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-home {
    padding: var(--sectionPadding);
    padding-top: clamp(12.5rem, 31.95vw, 18.75rem);
    position: relative;
    z-index: 1;
  }
  #hero-home .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: clamp(3.75rem, 13vw, 11.25rem);
  }
  #hero-home .cs-content {
    text-align: left;
    width: 100%;
    max-width: 48.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #hero-home .cs-topper {
    font-size: clamp(0.8125rem, 1.5vw, 1rem);
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }
  #hero-home .cs-chevron {
    --chevronColor: var(--primary);
    width: 3rem;
    height: auto;
  }
  #hero-home .cs-title {
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 100%;
    margin: 0 0 2.5rem 0;
    color: #fff;
    position: relative;
  }
  #hero-home .cs-text {
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 0 2.5rem 0;
    color: #fff;
  }
  #hero-home .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    margin: 0;
    color: #fff;
    padding: 0 1.5rem;
    background: linear-gradient(127.08deg, #3f88f5 28.48%, #4611b8 100.16%);
    display: inline-block;
    position: relative;
    border-radius: 0.5rem;
    z-index: 1;
  }
  #hero-home .cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
    border-radius: 0.5rem;
  }
  #hero-home .cs-button-solid:hover:before {
    width: 100%;
    border-radius: 0.5rem;
  }
  #hero-home .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2.3vw, 1.25rem);
  }
  #hero-home .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    margin: 0;
    /* 24px - 32px */
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: #fff;
    box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);

    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  #hero-home .cs-icon {
    width: 3rem;
    height: auto;
    margin: 0 0 1.5rem 0;
  }
  #hero-home .cs-h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }
  #hero-home .cs-item-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    max-width: 28.125rem;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColor);
  }
  #hero-home .cs-background {
    width: 100%;
    height: 55%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero-home .cs-background:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #111926;
    opacity: 0.8;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
  }
  #hero-home .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
}

@media only screen and (min-width: 48rem) {
  #hero-home {
    padding-bottom: 0;
  }
  #hero-home .cs-container {
    align-items: flex-start;
  }
  #hero-home .cs-content {
    text-align: left;
    margin-left: 0;
    align-items: flex-start;
  }
  #hero-home .cs-item {
    grid-column: span 6;
  }
  #hero-home .cs-background {
    height: 87%;
  }
  #hero-home .cs-background:before {
    background: linear-gradient(
      90deg,
      #111926 21.41%,
      rgba(17, 25, 38, 0.72) 34.98%,
      rgba(17, 25, 38, 0) 62.53%
    );
    opacity: 1;
  }
}

@media only screen and (min-width: 81.25rem) {
  #hero-home .cs-item {
    grid-column: span 3;
    border-radius: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
      rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  }
}
@media only screen and (min-width: 100rem) {
  #hero-home .cs-background {
    background: url("./assets/images/hero/1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  #hero-home .cs-background img {
    display: none;
  }
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
  #about-us2 {
    border-radius: 3rem;
  }
  #about-us1,
  #about-us2 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #about-us1 .cs-container,
  #about-us2 .cs-container {
    width: 100%;
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 7.1vw, 6.75rem);
  }
  #about-us1 .cs-content,
  #about-us2 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #about-us1 .cs-text,
  #about-us2 .cs-text {
    margin-bottom: 1rem;
  }
  #about-us1 .cs-text:last-of-type,
  #about-us2 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #about-us1 .cs-button-solid,
  #about-us2 .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  #about-us1 .cs-button-solid:before,
  #about-us2 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #about-us1 .cs-button-solid:hover:before,
  #about-us2 .cs-button-solid:hover:before {
    width: 100%;
  }
  #about-us1 .cs-image-group,
  #about-us2 .cs-image-group {
    font-size: min(2.5vw, 1em);
    width: 36.1875em;
    height: 33.875em;
    order: -1;
    position: relative;
  }
  #about-us1 .cs-picture,
  #about-us2 .cs-picture {
    border-radius: 1.25em;
    overflow: hidden;
    position: absolute;
    display: block;
  }
  #about-us1 .cs-picture:hover:before,
  #about-us2 .cs-picture:hover:before {
    opacity: 0.6;
  }
  #about-us1 .cs-picture:hover img,
  #about-us2 .cs-picture:hover img {
    transform: scale(1.1);
  }
  #about-us1 .cs-picture:before,
  #about-us2 .cs-picture:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 10;
    transition: opacity 0.3s;
  }
  #about-us1 .cs-picture img,
  #about-us2 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  #about-us1 .cs-picture1,
  #about-us2 .cs-picture1 {
    width: 12.75em;
    height: 19.625em;
    top: 0;
    left: 0;
  }
  #about-us1 .cs-picture2,
  #about-us2 .cs-picture2 {
    width: 21.75em;
    height: 19.625em;
    top: 0;
    right: 0;
  }
  #about-us1 .cs-picture3,
  #about-us2 .cs-picture3 {
    width: 36.1875em;
    height: 12.625em;
    bottom: 0;
    left: 0;
  }
}

@media only screen and (min-width: 64rem) {
  #about-us1 .cs-container,
  #about-us2 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  #about-us1 .cs-content,
  #about-us2 .cs-content {
    width: 48%;
  }
  #about-us1 .cs-image-group,
  #about-us2 .cs-image-group {
    font-size: min(1.15vw, 1em);
    flex: none;
  }
}

/*-- -------------------------- -->
<---    Side By Side Reverse    -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
  #about-us2 {
    background-color: #f7f7f7;
  }
}
@media only screen and (min-width: 64rem) {
  #about-us2 .cs-container {
    justify-content: flex-end;
  }
  #about-us2 .cs-content {
    order: -1;
  }
}

/*-- -------------------------- -->
<---        Why Choose Us       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #why-choose-us {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  #why-choose-us .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    padding: var(--sectionPadding);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 3.9vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #why-choose-us .cs-container:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #why-choose-us .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #why-choose-us .cs-title {
    margin: 0;
    max-width: 23ch;
  }
  #why-choose-us .cs-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(1rem, 3.2vw, 2rem);
  }
  #why-choose-us .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    /* 16px - 32px */
    gap: clamp(1rem, 2vw, 2rem);
  }
  #why-choose-us .cs-item {
    list-style: none;

    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
  #why-choose-us .cs-item-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #why-choose-us .cs-item-number {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #why-choose-us .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
  }
  #why-choose-us .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #why-choose-us .cs-picture {
    width: 100%;
    max-width: 80rem;
    height: clamp(21.25rem, 47vw, 38.75rem);
    display: block;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
  }
  #why-choose-us .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 1rem;
  }
  #why-choose-us .cs-floater {
    width: clamp(15.375rem, 50vw, 36.375rem);
    height: auto;
    position: absolute;
    right: -4rem;
    top: -0.5rem;
    z-index: -1;
  }
}
@media only screen and (min-width: 48rem) {
  #why-choose-us {
    padding: var(--sectionPadding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3.75rem, 3.9vw, 6.25rem);
  }
  #why-choose-us .cs-container {
    padding: 0;
  }
  #why-choose-us .cs-container:before {
    width: 130vw;
    height: 180%;
    top: -9.375rem;
    left: 50%;
    transform: translateX(-50%);
  }
  #why-choose-us .cs-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
}

/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
  #cta {
    padding: var(--sectionPadding);
    position: relative;
  }
  #cta .cs-background {
    width: 100%;
    height: 100%;
    background-blend-mode: multiply;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cta .cs-background:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #1a1a1a;
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #cta .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 0% 30%;
  }
  #cta .cs-container {
    width: 100%;
    max-width: 100rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta .cs-content {
    text-align: center;
    width: 100%;
    max-width: 32.3125rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #cta .cs-title,
  #cta .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #cta .cs-text {
    opacity: 0.8;
    margin-bottom: 1rem;
  }
  #cta .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #cta .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  #cta .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #7c7c7c;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #cta .cs-button-solid:hover:before {
    width: 100%;
  }

  /* Add this new mobile-first media query section for the CTA contact wrapper */
  #cta .cs-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  #cta .cs-contact-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  #cta .cs-icon-wrapper {
    background: #333;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #cta .cs-icon-wrapper img {
    width: 30px;
    height: 30px;
  }
}

/* Desktop styles */
@media only screen and (min-width: 64rem) {
  #cta .cs-background {
    overflow: hidden;
  }
  #cta .cs-background:before {
    width: 40%;
    opacity: 1;
  }
  #cta .cs-background:after {
    content: "";
    width: 31.25rem;
    height: 93.75rem;
    margin-right: -3.125rem;
    background: -moz-linear-gradient(
      left,
      #1a1a1a 0%,
      #1a1a1a 57%,
      rgba(26, 26, 26, 0) 100%
    );
    background: -webkit-linear-gradient(
      left,
      #1a1a1a 0%,
      #1a1a1a 57%,
      rgba(26, 26, 26, 0) 100%
    );
    background: linear-gradient(
      to right,
      #1a1a1a 0%,
      #1a1a1a 57%,
      rgba(26, 26, 26, 0) 100%
    );
    opacity: 1;
    position: absolute;
    display: block;
    top: 50%;
    right: 50%;
    transform: rotate(10deg) translateY(-50%);
  }
  #cta .cs-background img {
    width: 60%;
    object-position: right;
    left: auto;
    right: 0;
  }
  #cta .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #cta .cs-content {
    text-align: left;
    align-items: flex-start;
    width: 45%;
  }
  #cta .cs-text,
  #cta .cs-title {
    margin-left: 0;
  }

  #cta .cs-contact-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
  }

  #cta .cs-contact-item {
    width: auto;
    max-width: none;
  }

  #cta .cs-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
  }

  #cta .cs-icon-wrapper img {
    width: 40px;
    height: 40px;
  }
}

/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #testimonials {
    padding: var(--sectionPadding);
  }
  #testimonials .cs-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #testimonials .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #testimonials .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 2.5vw, 1.15rem);
  }
  #testimonials .cs-item {
    list-style: none;
    width: 100%;
    max-width: 39.375rem;
    box-sizing: border-box;
    padding: clamp(1.25rem, 3.15vw, 2.5rem) clamp(1.25rem, 3.15vw, 2.5rem);
    background-color: #f7f7f7;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  #testimonials .cs-quote {
    width: 2.5rem;
    height: auto;
    margin-bottom: 2rem;
    display: block;
  }
  #testimonials .cs-quote-white {
    width: 3.75rem;
    height: auto;
    display: block;
    position: absolute;
    right: 1.5rem;
    bottom: 0;
    z-index: 1;
  }
  #testimonials .cs-review {
    /* 14px - 20px */
    font-size: clamp(0.875rem, 1.6vw, 1.25rem);
    line-height: 1.5em;
    margin: 0;
    /* 20px - 40px */
    margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
    color: var(--bodyTextColor);
  }
  #testimonials .cs-flex-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
  }
  #testimonials .cs-profile {
    width: 3.125rem;
    height: 3.125rem;
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: 50%;
    display: block;
    position: relative;
  }
  #testimonials .cs-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #testimonials .cs-name {
    font-size: clamp(1.25rem, 3vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
    margin-top: auto;
    color: var(--headerColor);
    display: block;
    z-index: 2;
  }
  #testimonials .cs-job {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    font-weight: 400;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #testimonials .cs-card-group {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
  }
  #testimonials .cs-item {
    width: clamp(31.5%, 30vw, 32.3%);
  }
}

/*-- -------------------------- -->
<---   Side By Side Reverse     -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #what-we-do .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 7vw, 4rem);
  }
  #what-we-do .cs-content {
    text-align: left;
    width: 100%;
    max-width: 32.625rem;
    padding: var(--sectionPadding);
    padding-top: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #what-we-do .cs-text {
    margin-bottom: 1rem;
  }
  #what-we-do .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #what-we-do .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  #what-we-do .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #what-we-do .cs-button-solid:hover:before {
    width: 100%;
  }
  #what-we-do .cs-picture {
    display: block;
    position: relative;
    width: 100%;
    height: 18.75rem;
  }
  #what-we-do .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }
}

@media only screen and (min-width: 48rem) {
  #what-we-do {
    padding: var(--sectionPadding);
  }
  #what-we-do .cs-container {
    flex-direction: row;
    justify-content: flex-end;
    gap: clamp(3.75rem, 10vw, 8rem);
  }
  #what-we-do .cs-content {
    width: 53%;
    padding: 0;
  }
  #what-we-do .cs-picture {
    width: 47vw;
    max-width: 30.875rem;
    height: clamp(32.375rem, 63vw, 43.75rem);
    margin: 0 0 clamp(1rem, 2.4vw, 1.75rem) clamp(1rem, 2.4vw, 1.75rem);
    position: relative;
    order: 2;
  }
  #what-we-do .cs-picture:before {
    content: "";
    width: 50%;
    height: 60%;
    background: var(--secondary);
    opacity: 1;
    display: block;
    position: absolute;
    bottom: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
    right: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
    border-radius: 1rem;
  }
}

/*-- -------------------------- -->
<---          Steps             -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
  #our-steps {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #our-steps .cs-container {
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
  }
  #our-steps .cs-wrapper {
    max-width: 31.25rem;
    margin: auto;
    padding: var(--sectionPadding);
    display: flex;
    flex-direction: column;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #our-steps .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #our-steps .cs-title {
    margin: 0;
  }
  #our-steps .cs-card-group {
    margin: 0;
    padding: 0;
    display: grid;
    justify-items: center;
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2rem);
    grid-auto-flow: row;
  }
  #our-steps .cs-item {
    list-style: none;
    display: flex;
    align-items: flex-start;
    position: relative;
  }
  #our-steps .cs-number {
    font-size: clamp(5rem, 9vw, 6.25rem);
    font-weight: 900;
    line-height: 1.2em;
    letter-spacing: -2px;
    margin-right: -1.25rem;
    color: var(--primary);
    opacity: 0.12;
    display: block;
  }
  #our-steps .cs-h3 {
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #our-steps .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #our-steps .cs-background {
    width: 100%;
    height: 22.5rem;
    display: block;
  }
  #our-steps .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }
}

@media only screen and (min-width: 48rem) {
  #our-steps {
    padding: var(--sectionPadding);
  }
  #our-steps .cs-container {
    padding: 0;
    justify-content: flex-start;
  }
  #our-steps .cs-title {
    margin: 0;
  }
  #our-steps .cs-wrapper {
    width: 65vw;
    max-width: 39.375rem;
    margin: 0;
    padding: 0;
  }
  #our-steps .cs-card-group {
    gap: clamp(1rem, 3vw, 2rem);
  }
  #our-steps .cs-item {
    flex-direction: row;
  }
  #our-steps .cs-picture {
    width: 11.25rem;
    height: 11.25rem;
  }
  #our-steps .cs-background {
    width: 30%;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
  }
}

@media only screen and (min-width: 64rem) {
  #our-steps .cs-wrapper {
    width: 50vw;
  }
  #our-steps .cs-background {
    width: 50vw;
    left: 50%;
    right: auto;
    margin-left: 8rem;
  }
}

/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
  #our-services {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 3rem;
  }
  #our-services .cs-container {
    width: 100%;
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 3.9vw, 4rem);
  }
  #our-services .cs-image-group {
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
  }
  #our-services .cs-picture {
    width: 100%;
    min-height: 20.5rem;
    display: block;
    position: relative;
  }
  #our-services .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }
  #our-services .cs-floater {
    width: clamp(20.125rem, 40vw, 28.1875rem);
    height: clamp(20.1875rem, 40vw, 28.25rem);
    position: absolute;
    bottom: 0rem;
    z-index: 1;
    mix-blend-mode: soft-light;
  }
  #our-services .cs-content {
    text-align: left;
    width: 100%;
    max-width: 40.625rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: none;
  }
  #our-services .cs-title {
    margin: 0 0 clamp(1rem, 1.96vw, 1.5rem) 0;
  }
  #our-services .cs-text {
    margin: 0 0 clamp(1rem, 1.96vw, 1.5rem) 0;
  }
  #our-services .cs-faq-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: clamp(1rem, 2.4vw, 1.25rem);
  }
  #our-services .cs-faq-item {
    list-style: none;
    width: 100%;
    background-color: transparent;
    border: 1px solid #e8e8e8;
    padding: 0;
    box-sizing: border-box;
    transition: border-bottom 0.3s;
  }
  #our-services .cs-faq-item.active .cs-indicator:before {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  #our-services .cs-faq-item.active .cs-indicator:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  #our-services .cs-faq-item.active .cs-item-p {
    height: auto;
    padding-top: 1rem;
    opacity: 1;
    transform: scaleY(1);
  }
  #our-services .cs-faq-item:hover {
    cursor: pointer;
  }
  #our-services .cs-button {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    width: 100%;
    padding: 1rem 1rem 0 1rem;
    border: none;
    background: transparent;
    color: var(--headerColor);
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #our-services .cs-button:hover {
    cursor: pointer;
  }
  #our-services .cs-indicator {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    z-index: 1;
  }
  #our-services .cs-indicator:before {
    content: "";
    width: 1rem;
    height: 0.125rem;
    background-color: #767676;
    opacity: 1;
    border-radius: 2px;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.5s;
  }
  #our-services .cs-indicator:after {
    content: "";
    width: 1rem;
    height: 0.125rem;
    background-color: #767676;
    opacity: 1;
    border-radius: 2px;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.5s;
  }
  #our-services .cs-button-text {
    width: 90%;
    padding: 0;
    display: block;
  }
  #our-services .cs-item-p {
    font-size: 0.875rem;
    line-height: 1.5em;
    width: 100%;
    max-width: none;
    height: 0;
    margin: 0;
    padding: 0 1rem 1rem 1rem;
    box-sizing: border-box;
    opacity: 0;
    color: var(--bodyTextColor);
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s, padding-bottom 0.3s, padding-top 0.3s;
  }
  #our-services .cs-icon {
    width: 2rem;
    height: 2rem;
    display: block;
  }
  #our-services .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    width: clamp(11.625rem, 23vw, 13.625rem);
    margin: clamp(1.75rem, 3.9vw, 2.5rem) 0 0 0;

    box-sizing: border-box;
    padding: 0 1.5rem;
    color: #fff;
    background: linear-gradient(127.08deg, #3f88f5 28.48%, #4611b8 100.16%);
    border-radius: 12px;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #our-services .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
    border-radius: 12px;
  }
  #our-services .cs-button-solid:hover:before {
    width: 100%;
    border-radius: 12px;
  }
}

@media only screen and (min-width: 48rem) {
  #our-services .cs-picture {
    height: 100%;
    min-width: 36.5rem;
    width: 48vw;
    right: 0;
    top: 0;
  }
}

@media only screen and (min-width: 64rem) {
  #our-services .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #our-services .cs-content {
    width: 55%;
  }
  #our-services .cs-image-group {
    width: 100%;
    max-width: 33.875rem;
  }
  #our-services .cs-picture {
    width: 100%;
    min-width: 100%;
  }
  #our-services .cs-floater {
    width: 28.1875rem;
    right: clamp(50%, 18vw, 75%);
    bottom: -6.25rem;
  }
}

/* --------------------------------- */



@media only screen and (min-width: 0rem) {
  #meet-Founder {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 3rem;
  }
  #meet-Founder .cs-container {
    width: 100%;
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 3.9vw, 4rem);
  }
  #meet-Founder .cs-image-group {
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
  }
  #meet-Founder .cs-picture {
    width: 100%;
    min-height: 20.5rem;
    display: block;
    position: relative;
  }
  #meet-Founder .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }
  #meet-Founder .cs-floater {
    width: clamp(20.125rem, 40vw, 28.1875rem);
    height: clamp(20.1875rem, 40vw, 28.25rem);
    position: absolute;
    bottom: 0rem;
    z-index: 1;
    mix-blend-mode: soft-light;
  }
  #meet-Founder .cs-content {
    text-align: left;
    width: 100%;
    max-width: 40.625rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: none;
  }
  #meet-Founder .cs-title {
    margin: 0 0 clamp(1rem, 1.96vw, 1.5rem) 0;
  }
  #meet-Founder .cs-text {
    margin: 0 0 clamp(1rem, 1.96vw, 1.5rem) 0;
  }
  #meet-Founder .cs-faq-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: clamp(1rem, 2.4vw, 1.25rem);
  }
  #meet-Founder .cs-faq-item {
    list-style: none;
    width: 100%;
    background-color: transparent;
    border: 1px solid #e8e8e8;
    padding: 0;
    box-sizing: border-box;
    transition: border-bottom 0.3s;
  }
  #meet-Founder .cs-faq-item.active .cs-indicator:before {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  #meet-Founder .cs-faq-item.active .cs-indicator:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  #meet-Founder .cs-faq-item.active .cs-item-p {
    height: auto;
    padding-top: 1rem;
    opacity: 1;
    transform: scaleY(1);
  }
  #meet-Founder .cs-faq-item:hover {
    cursor: pointer;
  }
  #meet-Founder .cs-button {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    width: 100%;
    padding: 1rem 1rem 0 1rem;
    border: none;
    background: transparent;
    color: var(--headerColor);
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #meet-Founder .cs-button:hover {
    cursor: pointer;
  }
  #meet-Founder .cs-indicator {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    z-index: 1;
  }
  #meet-Founder .cs-indicator:before {
    content: "";
    width: 1rem;
    height: 0.125rem;
    background-color: #767676;
    opacity: 1;
    border-radius: 2px;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.5s;
  }
  #meet-Founder .cs-indicator:after {
    content: "";
    width: 1rem;
    height: 0.125rem;
    background-color: #767676;
    opacity: 1;
    border-radius: 2px;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.5s;
  }
  #meet-Founder .cs-button-text {
    width: 90%;
    padding: 0;
    display: block;
  }
  #meet-Founder .cs-item-p {
    font-size: 0.875rem;
    line-height: 1.5em;
    width: 100%;
    max-width: none;
    height: 0;
    margin: 0;
    padding: 0 1rem 1rem 1rem;
    box-sizing: border-box;
    opacity: 0;
    color: var(--bodyTextColor);
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s, padding-bottom 0.3s, padding-top 0.3s;
  }
  #meet-Founder .cs-icon {
    width: 2rem;
    height: 2rem;
    display: block;
  }
  #meet-Founder .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    width: clamp(11.625rem, 23vw, 13.625rem);
    margin: clamp(1.75rem, 3.9vw, 2.5rem) 0 0 0;

    box-sizing: border-box;
    padding: 0 1.5rem;
    color: #fff;
    background: linear-gradient(127.08deg, #3f88f5 28.48%, #4611b8 100.16%);
    border-radius: 12px;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #meet-Founder .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
    border-radius: 12px;
  }
  #meet-Founder .cs-button-solid:hover:before {
    width: 100%;
    border-radius: 12px;
  }
}

@media only screen and (min-width: 48rem) {
  #meet-Founder .cs-picture {
    height: 100%;
    min-width: 36.5rem;
    width: 48vw;
    right: 0;
    top: 0;
  }
}

@media only screen and (min-width: 64rem) {
  #meet-Founder .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #meet-Founder .cs-content {
    width: 55%;
  }
  #meet-Founder .cs-image-group {
    width: 100%;
    max-width: 33.875rem;
  }
  #meet-Founder .cs-picture {
    width: 100%;
    min-width: 100%;
  }
  #meet-Founder .cs-floater {
    width: 28.1875rem;
    right: clamp(50%, 18vw, 75%);
    bottom: -6.25rem;
  }
}

/* ---------------------------------------- */

/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
  #footer {
    padding: var(--sectionPadding);
    padding-bottom: clamp(1.875rem, 5vw, 3.125rem);
    background-color: #f7f7f7;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #fff;
  }
  #footer .cs-card-group {
    max-width: 34.375rem;
    margin: auto;
    padding: 0 0 clamp(3.75rem, 7vw, 6.25rem) 0;
    display: grid;
    gap: clamp(1.25rem, 4vw, 3.625rem);
  }
  #footer .cs-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  #footer .cs-picture {
    padding: 1.5rem;
    background-color: var(--primary);
    display: block;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  #footer .cs-icon {
    width: 2rem;
    height: auto;
    display: block;
  }
  #footer .cs-h3 {
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
    color: var(--headerColor);
  }
  #footer .cs-card-info {
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    display: block;
  }
  #footer .cs-container {
    width: 100%;
    max-width: 34.375rem;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 7vw, 3rem);
  }
  #footer .cs-logo-group {
    width: 100%;
    position: relative;
  }
  #footer .cs-logo {
    width: 13.125rem;
    height: auto;
    margin: 0 0 1rem 0;
    display: block;
  }
  #footer .cs-text {
    max-width: 44rem;
    margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
    opacity: 0.8;
  }
  #footer .cs-logo-img {
    width: 300px;
    height: auto;
  }
  #footer .cs-contact {
    display: grid;
    gap: 2rem;
  }
  #footer .cs-topper {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  #footer .cs-contact-link {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    text-decoration: none;
    color: var(--headerColor);
  }
  #footer .cs-header {
    font-size: clamp(1.25rem, 3vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.5em;
    margin: 0 0 clamp(1rem, 4vw, 1.5rem) 0;
    color: var(--headerColor);
    display: block;
    position: relative;
  }
  #footer .cs-ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #footer .cs-li {
    list-style: none;
  }
  #footer .cs-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    text-decoration: none;
    color: var(--bodyTextColor);
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    transition: color 0.3s;
  }
  #footer .cs-link:hover {
    color: var(--primaryLight);
  }
  #footer .cs-bottom {
    width: 100%;
    max-width: 80rem;
    margin: clamp(3.75rem, 7vw, 5rem) auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-border-10, #e8e8e8);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  #footer .cs-credit,
  #footer .cs-bottom-link,
  #footer .cs-credit-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    color: var(--bodyTextColor);
  }
  #footer .cs-credit {
    width: 100%;
  }
  #footer .cs-credit-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    width: auto;
    margin: 0;
    display: inline-block;
    position: relative;
  }
  #footer .cs-credit-link:hover {
    color: var(--primary);
  }
  #footer .cs-bottom-links {
    width: 100%;
    display: flex;
  }
  #footer .cs-bottom-link {
    display: flex;
    align-items: center;
  }
  #footer .cs-bottom-link:hover {
    color: var(--primary);
  }
  #footer .cs-bottom-link:last-of-type:before {
    content: "";
    width: 1px;
    height: 0.875rem;
    margin: 0 0.75rem;
    background: currentColor;
    opacity: 1;
    display: block;
  }
  #footer .cs-graphic {
    width: 100%;
    min-width: 120rem;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 9rem;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
  }
  #footer .cs-light {
    display: block;
  }
  #footer .cs-dark {
    display: none;
  }
}
@media only screen and (min-width: 37.5rem) {
  #footer .cs-card-group {
    max-width: 80rem;
  }
  #footer .cs-container {
    padding: var(--sectionPadding);
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    max-width: 80rem;
    grid-template-columns: repeat(12, 1fr);
  }
  #footer .cs-logo-group {
    grid-column: span 12;
  }
  #footer .cs-ul-wrapper {
    grid-column: span 4;
  }
  #footer .cs-contact {
    grid-template-columns: repeat(12, 1fr);
    grid-column: span 12;
  }
  #footer .cs-table {
    grid-column: span 12;
  }
  #footer .cs-bottom {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  #footer .cs-credit {
    text-align: left;
  }
  #footer .cs-bottom-links {
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 64rem) {
  #footer .cs-card-group {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  #footer .cs-card {
    grid-column: span 4;
  }
  #footer .cs-logo-group {
    grid-column: span 4;
  }
  #footer .cs-ul-wrapper {
    grid-column: span 2;
  }
  #footer .cs-contact {
    display: flex;
    flex-direction: column;
    grid-column: span 4;
  }
}

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
  #hero-terms {
    padding: clamp(9rem, 25.95vw, 18.75rem) 1rem 0;
    padding-bottom: clamp(8.125rem, 12.5vw, 10.9375rem);
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
  }
  #hero-terms .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #hero-terms .cs-content {
    text-align: left;
    width: 90%;
    max-width: 34.0625rem;
    margin-top: clamp(6.25rem, 28vw, 9.375rem);
  }
  #hero-terms .cs-title {
    font-size: clamp(2.4375rem, 6.7vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 clamp(1rem, 4vw, 2rem) 0;
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #hero-terms .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0 0 clamp(2.5rem, 6.3vw, 4rem);
    color: var(--bodyTextColorWhite);
  }
  #hero-terms .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: auto;
    color: #1a1a1a;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--secondary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    transition: color 0.3s;
  }
  #hero-terms .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #hero-terms .cs-button-solid:hover {
    color: #fff;
  }
  #hero-terms .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-terms .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero-terms .cs-background:before {
    content: "";
    position: absolute;
    display: block;
    height: 125rem;
    width: 187.5rem;
    background: rgba(12, 12, 12, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    top: 70.3125rem;
    left: 50%;
    z-index: 1;
    transform: rotate(30deg) translateX(-50%);
  }
  #hero-terms .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 48rem) {
  #hero-terms .cs-content {
    width: 48%;
    margin-top: 0rem;
  }
  #hero-terms .cs-background:before {
    top: 7.5rem;
    margin-left: -127.1875rem;
    transform: rotate(60deg);
  }
}

/*********************************  privacy policy and terms of use styles *********************************/

.privacy-policy-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 5rem;
}

.privacy-header-image {
  border-radius: 2rem;
}

.privacy-main-desc {
  text-align: justify;
  font-weight: 300;
  color: #000000;
}

.privacy-content-lists {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.privacy-title {
  font-size: 2rem;
  font-weight: 600;
}

.privacy-desc {
  text-align: justify;
  font-weight: 400;
  color: #5a5a5a;
}

@media screen and (max-width: 768px) {
  .privacy-policy-content {
    padding: 1rem 2rem 4rem 2rem;
  }

  .privacy-title {
    font-size: 1.2rem;
  }

  .header__terms {
    padding: 5.5rem 1rem 1rem 1rem;
  }
}

/****************************  privacy policy and terms of use styles ******************************/
/**************************** teams  ******************************/
/* General Container Styling */
#team-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#team-section .cs-container {
  max-width: 1200px;
  margin: 0 auto;
}

#team-section .cs-content {
  margin-bottom: 40px;
}

#team-section .cs-topper {
  font-size: clamp(0.8125rem, 1.5vw, 1rem);
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

#team-section .cs-title {
  font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 100%;
    margin: 0 0 2.5rem 0;
    color: #060606;
    position: relative;
}

#team-section .cs-text {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Team Section Styling */
.cs-team {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cs-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.cs-picture img {
  border-radius: 5%;
  border: 3px solid #ddd;
  width: 200px;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cs-picture img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Member Details */
.cs-member-details {
  margin-top: 15px;
  text-align: center;
}

.cs-member-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 5px 0;
}

.cs-member-role {
  font-size: 14px;
  color: #777;
}

/* Zoho Form Lightbox Styling */
.zf_lB_Dimmer_283450 { 
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgb(0, 0, 0);
    opacity: 0.8;
    z-index: 10000000;
}

.zf_lB_Container_283450 {
    position: fixed;
    background-color: white;
    margin: 0;
    margin-right: 0px;
    padding: 0;
    height: 1280px;
    width: 70%;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    border: 7px solid none;
    max-height: calc(100% - 60px);
    z-index: 999999;
}

.zf_lB_Wrapper_283450 {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: 0;
    margin-top: -180px;
    z-index: 10000001;
}

.zf_main_id_283450 {
    height: calc(100% - 0px);
    display: flex;
    overflow-y: auto;
    overflow-x: hidden;
}

.zf_lb_closeform_283450 {
    position: absolute;
    right: -20px;
    background: #2f2e2e;
    padding: 0;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    top: -15px;
    cursor: pointer;
    border: 2px solid #d9d9d9;
}

.zf_lb_closeform_283450:before, 
.zf_lb_closeform_283450:after {
    position: absolute;
    left: 16px;
    content: ' ';
    height: 19px;
    width: 2px;
    top: 7px;
    background-color: #f7f7f7;
}

.zf_lb_closeform_283450:before {
    transform: rotate(45deg);
}

.zf_lb_closeform_283450:after {
    transform: rotate(-45deg);
} 

@media screen and (min-device-width: 10px) and (max-device-width: 380px) {  
    .zf_lB_Container_283450 {
        width: 270px !important;
    } 
}

@media screen and (min-device-width: 360px) and (max-device-width: 480px) {  
    .zf_lB_Container_283450 {
        width: 350px !important;
    } 
}

@media screen and (min-device-width: 440px) and (max-device-width: 500px) {  
    .zf_lB_Container_283450 {
        width: 380px !important;
    } 
}

@media only screen and (min-width:500px) and (max-width:600px) {  
    .zf_lB_Container_283450 {
        width: 450px;
    }
}

@media only screen and (min-width:601px) and (max-width:700px) {  
    .zf_lB_Container_283450 {
        width: 540px;
    }
}

@media only screen and (min-width:700px) and (max-width:800px) { 
    .zf_lB_Container_283450 {
        width: 650px;
    }
}

@media screen and (min-device-width: 801px) and (max-device-width: 1268px) {  
    .zf_lB_Container_283450 {
        width: 750px !important;
    } 
}



/**************************** teams  ******************************/

/* Join Us Section */
.join-us-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

.join-us-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.join-us-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.join-us-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.join-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 0.3s ease;
}

.join-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.join-role {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color:var(--primary);
}

.join-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.join-button {
  font-size: 1rem;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    padding: 0 2rem;
    background-color: var(--primary);
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;

    box-sizing: border-box;
    transition: color 0.3s;
}

.join-button::before{
  content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
}

.join-button:hover {
  color: #fff;
}

.join-button:hover:before{
  width: 100%;
}


/*********************************  external page styles *********************************/

.external-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 5rem;
}

.external-header-image {
  border-radius: 2rem;
}

.external-main-desc {
  text-align: justify;
  font-weight: 300;
  color: #000000;
}

.external-content-lists {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.external-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.external-title {
  font-size: 2rem;
  font-weight: 600;
}

.external-desc {
  text-align: justify;
  font-weight: 400;
  color: #5a5a5a;
}

@media screen and (max-width: 768px) {
  .external-content {
    padding: 1rem 2rem 4rem 2rem;
  }

  .external-title {
    font-size: 1.2rem;
  }

  .header__terms {
    padding: 5.5rem 1rem 1rem 1rem;
  }
}

/* ============================================ */
/*        MODERN TEAM CARDS STYLES              */
/* ============================================ */

/* Grid Layout for Team Cards */
.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Card Wrapper */
.team-card-wrapper {
  width: 100%;
}

/* Main Team Card */
.team-card-modern {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid #f0f0f0;
  overflow: hidden;
}

.team-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0066cc, #0099ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.team-card-modern:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
  border-color: #0066cc;
}

.team-card-modern:hover::before {
  transform: scaleX(1);
}

/* CEO Badge */
.badge-ceo-modern {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0066cc, #0099ff);
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
  z-index: 10;
}

/* Image Container */
.team-img-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
}

.team-img-container::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc, #0099ff, #0066cc);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.team-card-modern:hover .team-img-container {
  border-color: transparent;
  transform: scale(1.05);
}

.team-card-modern:hover .team-img-container::after {
  opacity: 1;
}

/* Team Image */
.team-img-modern {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card-modern:hover .team-img-modern {
  transform: scale(1.1);
}

/* Team Info Section */
.team-info-modern {
  text-align: center;
}

/* Team Name */
.team-name-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

/* Team Position */
.team-position-modern {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  margin: 0 0 12px 0;
}

/* NMLS Badge */
.team-nmls-modern {
  display: inline-block;
  background: rgba(0, 102, 204, 0.1);
  color: #0066cc;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Contact Links Container */
.team-contacts-modern {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

/* Individual Contact Link */
.team-contact-link-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.team-contact-link-modern:hover {
  background: rgba(0, 102, 204, 0.08);
  border-color: #0066cc;
  transform: translateX(5px);
}

/* Contact Icon (SVG) */
.team-icon-modern {
  width: 20px;
  height: 20px;
  color: #0066cc;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.team-contact-link-modern:hover .team-icon-modern {
  transform: scale(1.15);
}

/* Contact Text */
.team-contact-text-modern {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Apply Now Button */
.team-apply-btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.team-apply-btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.team-apply-btn-modern:hover::before {
  left: 100%;
}

.team-apply-btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.5);
}

.team-apply-btn-modern:active {
  transform: translateY(-1px);
}

/* Apply Button Icon */
.team-btn-icon-modern {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

/* ============================================ */
/*          RESPONSIVE STYLES                   */
/* ============================================ */

/* Tablet */
@media screen and (max-width: 1024px) {
  .team-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 30px 15px;
  }
}

@media screen and (max-width: 768px) {
  .team-grid-modern {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 15px;
  }

  .team-card-modern {
    padding: 35px 25px;
  }

  .team-img-container {
    width: 180px;
    height: 180px;
  }

  .team-name-modern {
    font-size: 1.3rem;
  }

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

  .team-apply-btn-modern {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}

/* Mobile */
@media screen and (max-width: 480px) {
  .team-grid-modern {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px 10px;
  }

  .team-card-modern {
    padding: 30px 20px;
  }

  .badge-ceo-modern {
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    font-size: 0.7rem;
  }

  .team-img-container {
    width: 160px;
    height: 160px;
  }

  .team-name-modern {
    font-size: 1.25rem;
  }

  .team-position-modern {
    font-size: 0.95rem;
  }

  .team-contact-link-modern {
    padding: 12px 15px;
  }

  .team-contact-text-modern {
    font-size: 0.8rem;
  }

  .team-apply-btn-modern {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .team-icon-modern {
    width: 18px;
    height: 18px;
  }
}