/***************************************************
/***************************************************
/***************************************************
 * Project Name:SGS Website
 * File: main.css
 * Description: Webpage Design- Legacy Application Development
 * Author: Team UI/UX
 * Created: 05-09-2026
 * Last Modified: 24-09-2026
  ***************************************************/

/* External CSS Files Imports */
@import url(variables.css);
@import url(responsive.css);

/* General Page and components Styles */
*,
html,
body {
  font-family: var(--font-inter);
  font-optical-sizing: auto;
  font-style: normal;
  box-sizing: border-box !important;
}
section {
  scroll-margin-top: 50px;
}
body {
  margin: 0;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 !important;
  padding: 0 !important;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #70386f #f1f1f1;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #663577 0%, #70386f 50%, #e35430 100%);
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #55295f 0%, #5c2d5c 50%, #c94526 100%);
}

::-webkit-scrollbar-corner {
  background: #f1f1f1;
}
.section-container {
  width: 1550px;
  margin: 0 auto;
}
.cta-btn {
  position: relative;
  background: linear-gradient(90deg, #663577 0%, #70386f 45%, #e35430 100%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  z-index: 0;
  transition: transform 0.15s ease;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #663577;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
  }

  &:hover {
    &::before {
      transform: scaleX(1);
    }
  }

  &:active {
    transform: scale(0.98);
  }
}
.cta-outlined-btn {
  position: relative;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  z-index: 0;
  transition: color 0.35s ease;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
  }

  &:hover {
    color: #fff;

    &::before {
      transform: scaleX(1);
    }
  }

  &:active {
    transform: scale(0.98);
  }
}
.cta-outlined-secondary-btn {
  position: relative;
  background: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  z-index: 0;
  transition: color 0.35s ease;
  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
  }

  &:hover {
    color: #fff;

    &::before {
      transform: scaleX(1);
    }
  }

  &:active {
    transform: scale(0.98);
  }
}
.dark-section-secondary-text {
  color: #efefef !important;
}
.gradient-bg {
  padding-block: 50px;
  background: linear-gradient(90deg, #fff4f0 0%, #f9f3f8 50%, #f2eef7 100%);
}
.default-bg {
  padding-block: 50px;
}
.dark-gradient-bg {
  position: relative;
  padding-block: 50px;
  background: linear-gradient(
    90deg,
    #663577 0%,
    #03133d 50%,
    #01091e 75%,
    #01091e 88%,
    #01091e 100%
  );
  .dark-bg-abstract {
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
    width: auto;
  }
}
.dark-gradient-ltl-bg {
  background: linear-gradient(
    to left,
    #663577 0%,
    #03133d 24%,
    #01091e 75%,
    #01091e 88%,
    #01091e 100%
  );
  position: relative;
  padding-block: 50px;
  .dark-bg-ltl-abstract {
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
  }
}
.section-title-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 40px;
  h2 {
    font-weight: var(--fw-semibold);
  }
  p {
    color: #6d6d6d;
    font-size: clamp(14px, 4vw, 20px);
  }
}
.badge-primary {
  border: 1px solid #e4e4e4;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 4px;
  display: block;
  font-weight: var(--fw-semibold);
  width: fit-content;
  text-transform: uppercase;
  color: var(--primary-color);
}
.badge-secondary {
  border: 1px solid #e4e4e4;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 4px;
  display: block;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  width: fit-content;
  color: var(--secondary-color);
}
/* Header navigation menu style */
.site-header {
  background: transparent;
  border-color: transparent !important;
  z-index: 100;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: #01091ed4;
  border-color: #7b7b7b !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-header__container {
  max-width: 1550px;
  padding: 0;
}

.site-header__logo {
  height: 45px;
  width: auto;
}

.navbar-toggler {
  padding: 0 !important;
  border: none;
  box-shadow: none !important;
  color: var(--ink);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav {
  gap: 20px !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: filter 0.3s ease;
}

/* Remove this rule if --header-bg stays dark even when scrolled */
.site-header.is-scrolled .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-nav .nav-link {
  position: relative;
  color: #ffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
  padding-block: 0 !important;

  &::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--nav-link-hovered);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  &:hover,
  &:focus-visible {
    color: var(--nav-link-hovered);

    &::after {
      transform: scaleX(1);
    }
  }
}

.icon-open,
.icon-close {
  img {
    height: 24px;
    width: auto;
  }
}

.icon-close {
  display: none;
}

.navbar-toggler[aria-expanded='true'] .icon-open {
  display: none;
}

.navbar-toggler[aria-expanded='true'] .icon-close {
  display: inline;
}
/* Hero section style */

.hero-section-container {
  margin-top: -80px; /* match your real header height */
  padding-top: 80px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: clamp(650px, 80vw, 750px);
  background-color: var(--hero-section-bg);
}
.hero-title {
  text-transform: uppercase;
  font-size: clamp(28px, 8vw, 45px);
  font-weight: var(--fw-bold);
  color: #ffff;
  span {
    background: linear-gradient(
      90deg,
      rgba(241, 169, 151, 0.95) 68%,
      rgba(107, 4, 142, 0.95) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.hero-sub-content {
  font-size: clamp(18px, 4vw, 20px);
  color: #d7d7d7;
}
.hero-business-partners-section {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 36px;
}
/* What is legacy card style */
.what-is-legacy-card-container {
  .what-is-legacy-card {
    border-radius: 12px;
    height: 256px;
    padding: 24px;
    background-color: #ffff;
    border: 1px solid var(--card-border-color);
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease,
      border-color 0.25s ease;
    .primary-card-icon-container {
      background-color: #ffefeb;
      padding: 16px;
      width: fit-content;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .secondary-card-icon-container {
      background-color: #f8e9fe;
      padding: 16px;
      width: fit-content;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    h5 {
      color: #2c2c2c;
      font-size: 20px;
      font-weight: var(--fw-semibold);
      padding-bottom: 10px !important;
    }
    p {
      color: #6d6d6d;
    }
    &:hover {
      transform: translateY(-4px);
      box-shadow: 0px 16px 40px 2px rgba(0, 0, 0, 0.09);
    }
  }
}
/* What do we modernize style */
.scope-modernize-card {
  background-color: var(--secondary-color);
  padding: 32px;
  border-radius: 12px;
  height: 100%;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  p {
    color: var(--primary-color);
    font-weight: var(--fw-semibold);
    font-size: 18px;
  }

  .scope-modernize-card-content {
    padding-top: 20px;

    h6 {
      color: #ffff;
      font-weight: 500;
      font-size: 26px;
      padding-bottom: 14px !important;
    }

    p {
      font-size: 18px;
      color: #efefef;
      line-height: 28px;
      font-weight: 400;
    }
  }

  img {
    position: absolute;
    right: 0;
    bottom: 0;
    transition: transform 0.25s ease;
  }

  &:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);

    img {
      transform: scale(1.05);
    }
  }
}
.what-we-do-small-cards {
  background-color: #fff;
  border: 1px solid var(--card-border-color);
  box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.05);
  padding: 24px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  div {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    content: '';
    width: 4px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background: linear-gradient(180deg, #663577 0%, #70386f 50%, #e35430 100%);
    bottom: 0;
  }
  h5 {
    font-weight: var(--fw-semibold);
    padding-bottom: 14px !important;
  }
  p {
    color: #6d6d6d;
    font-size: 16px;
  }

  &:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);
  }
}
/* Real Results section */
.real-result-card {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 12px;
  overflow: hidden;
  height: 227px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.97) 50%,
      rgba(255, 255, 255, 1) 100%
    );
    z-index: 1;
    transition: background 0.25s ease;
  }

  .real-result-card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    height: 100%;

    h5 {
      font-weight: bold;
      color: #2c2c2c;
    }

    p {
      color: #2c2c2c;
      font-weight: 500;
      padding-block: 14px !important;
    }
  }

  &:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);

    &::before {
      background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.92) 50%,
        rgba(255, 255, 255, 1) 100%
      );
    }
  }
}
.real-result-card-government {
  background: url(assets/images/Government-card-img.png);
}
.real-result-card-healthcare {
  background: url(assets/images/Healthcare-card-img.png);
}
.real-result-card-enterprise {
  background: url(assets/images/Enterprise-card-img.png);
}
.real-result-card-chip {
  margin-bottom: 12px;
  font-size: 12px;
  background-color: #2c2c2c;
  color: #fff;
  border-radius: 4px;
  width: fit-content;
  padding: 4px 8px;
}
.read-case-study-button {
  border: 0;
  background-color: transparent;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 14px;
}
/* Modernization  benefits Section */
.modernization-benefits-point-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 36px;
  .modernization-benefits-points {
    display: flex;
    align-items: center;
    gap: 16px;
    p {
      font-size: 18px;
      color: var(--primary-text-color);
      font-weight: 500;
    }
  }
}
.modernization-benefits-data-card {
  border-radius: 12px;
  padding: 32px;
  background-color: #ffff;
  border: 1px solid var(--card-border-color);
  box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.05);
  .modernization-benefits-data-card-title {
    font-size: 20px;
    font-weight: 600;
  }
}
.modernization-benefits-number-count {
  border-radius: 10px;
  background-color: #f6f6f6;
  padding: 24px;
  height: 130px;
  text-align: center;
  h6 {
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 16px !important;
  }
  p {
    font-weight: 500;
    color: #3c3c3c;
    font-size: 14px;
  }
}
/* Modernization journey section styles */
.modernization-journey-list-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 800px;
  gap: 30px;
  .modernization-journey-list {
    width: 100%;
    display: flex;
    border-radius: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #ffff;
    border: 1px solid var(--card-border-color);
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.05);
    .modernization-journey-list-content {
      h6 {
        font-size: 20px !important;
        font-weight: 600;
        padding-bottom: 10px !important;
      }
      p {
        color: #6d6d6d;
        font-size: 16px;
      }
    }
    .modernization-journey-list-icon {
      padding: 12px;
      border-radius: 10px;
      width: fit-content;
      background: linear-gradient(90deg, #fff4f0 0%, #f9f3f8 50%, #f2eef7 100%);
    }
  }
}
.modernization-journey-list-count {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modernization-journey-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  position: relative;
}
.modernization-journey-list-number {
  width: 52px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffff;
  font-weight: 600;
  font-size: 18px;
  color: var(--secondary-color);
  position: relative;
  z-index: 2;
  border: 1px solid var(--secondary-color);
}
.modernization-list-divider {
  content: '';
  width: 1.5px;
  border-left: 2.5px dashed #2c2c2c;
  height: 100%;
  position: absolute;
  transform: translateX(23px);
  bottom: -67px;
  z-index: 1;
}
.list-number-active {
  color: #fff !important;
  background-color: var(--secondary-color) !important;
}
.modernization-list-divider {
  content: '';
  width: 1.5px;
  border-left: 2.5px dashed #2c2c2c;
  height: 0; /* hidden initially */
  position: absolute;
  transform: translateX(22px);
  bottom: -67px;
  z-index: 1;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.modernization-list-divider.revealed {
  height: 100%;
}
.modernization-journey-list {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.modernization-journey-list.revealed {
  opacity: 1;
  transform: translateY(0);
}

.modernization-journey-list-number {
  transition: background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Strategy section styles */
.strategy-card {
  background-color: #080e1d;
  border: 1px solid #26344d;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 160px;
  position: relative;
  z-index: 11;
  h1 {
    font-weight: bolder;
    font-size: 70px;
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(241, 169, 151, 0.95) 44%,
      rgba(102, 53, 119, 0.95) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .strategy-card-content {
    h5 {
      font-size: 24px;
      color: #ffff;
      padding-bottom: 8px !important;
    }
    p {
      color: #bfbfbf;
      line-height: 24px;
      font-weight: 400;
    }
  }
}
/* What we do section styles */

.whatwedo-dark-card {
  background-image: url(assets/images/whatwedo-dark-card.png);
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: #021f3e;
  align-items: stretch;
  width: auto;
  h1 {
    font-weight: bolder;
    font-size: 70px;
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(241, 169, 151, 0.95) 44%,
      rgba(102, 53, 119, 0.95) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.whatwedo-subcontent {
  h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
  }
  p {
    color: #e4e4e4;
    line-height: 24px;
    font-weight: 400;
  }
}
.whatwedo-light-card {
  background-color: #ffff;
  border: 1px solid var(--card-border-color);
  box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.05);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 164px;
  position: relative;
  z-index: 11;
  h1 {
    font-weight: bolder;
    font-size: 70px;
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(241, 169, 151, 0.95) 44%,
      rgba(102, 53, 119, 0.95) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .whatwedo-light-card-card-content {
    h5 {
      font-size: 22px;
      color: #2c2c2c;
      font-weight: 600;
      padding-bottom: 8px !important;
    }
    p {
      color: #6d6d6d;
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
    }
  }
}
.technology-landscape-container {
  display: flex;
  justify-content: center;
}
/* Security section styles */
.security-first-content {
  h4 {
    font-size: 26px;
    color: #2c2c2c;
    font-weight: 600;
    padding-bottom: 14px !important;
  }
  p {
    color: #696969;
    font-weight: 500;
    font-size: 18px;
  }
}
.security-checklist-container {
  gap: 15px;
  p {
    color: #696969;
    font-size: 18px;
    font-weight: 500;
  }
  img {
    height: 28px;
  }
}
.certifications-container {
  border: 1px solid #fab7a7;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
  h6 {
    font-weight: 600;
  }
}
/* Why sgs section */
.why-sgs-card {
  background-color: #ffff;
  border: 1px solid var(--card-border-color);
  box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 194px;
  z-index: 11;
  h1 {
    padding-bottom: 20px !important;
    font-weight: bolder;
    font-size: 70px;
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(241, 169, 151, 0.95) 44%,
      rgba(102, 53, 119, 0.95) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .why-sgs-card-content {
    p {
      color: #6d6d6d;
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
    }
  }
}
/* Realted service styles */
.related-service-dark-card {
  position: relative;
  background-image: url(assets/images/related-services-dark-card.jpg);
  background-position: center !important;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-size: 100%;
  background-color: #02244a;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(2, 36, 74, 0.6);
    z-index: 1;
  }

  h5,
  p {
    position: relative;
    z-index: 2;
  }

  h5 {
    color: #ffff;
    font-size: 26px;
    padding-bottom: 12px !important;
  }
  p {
    color: #efefef;
    font-size: 18px;
  }
}
.related-services-card {
  background-color: #ffff;
  border: 1px solid var(--card-border-color);
  box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  .related-services-card-icon {
    background-color: #ffefeb;
    border-radius: 10px;
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .realted-services-card-content {
    p {
      color: #2c2c2c;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 20px !important;
    }
    button {
      position: relative;
      border: 0;
      font-size: 15px;
      text-align: center;
      color: #fff;
      border-radius: 20px;
      padding: 8px 17px;
      background: linear-gradient(90deg, #663577 0%, #70386f 50%, #e35430 100%);
      cursor: pointer;
      overflow: hidden;
      z-index: 0;
      transition: transform 0.15s ease;

      &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          #532a60 0%,
          #5c2e5c 50%,
          #c94526 100%
        );
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
        z-index: -1;
      }

      &:hover {
        &::before {
          transform: scaleX(1);
        }
      }

      &:active {
        transform: scale(0.98);
      }
    }
  }
}

.accordion-flush .accordion-item {
  border: 1px solid #e8e9ea !important;

  border-radius: 10px !important;
}
.accordion-main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  .accordion-btns-container {
    width: 900px;
  }
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 10px !important;
  font-size: 17px !important;
  color: #6d6d6d !important;
  font-weight: 500 !important;
}
.accordion-flush .accordion-item:not(.accordion-item:last-child) {
  margin-bottom: 25px !important;
}
.ready-to-modernize-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border-radius: 12px;
  height: 100%;
  background: linear-gradient(90deg, #fff4f0 0%, #f9f3f8 50%, #f2eef7 100%);
  img {
    position: absolute;
    right: 16px;
    bottom: -7px;
    width: auto;
    height: 200px;
  }
  h1 {
    font-size: 24px !important;
    color: #2c2c2c;
    font-weight: 600;
    padding-bottom: 16px !important;
  }
  p {
    color: #6d6d6d;
    font-size: 18px;
  }
  button {
    width: fit-content !important;
  }
}
.accordion-button:not(.collapsed) {
  background-color: #fff !important;
}
.accordion-button:focus {
  border-color: #ffefeb !important;
  box-shadow: 0 0 0 0.25rem #fde2dc !important;
}
/* Logo Carousel Section Style */
.logo-carousel-track {
  display: flex;
  width: calc(170px * 10);
  animation: scroll 40s linear infinite;
  .partners-slide {
    width: 170px;
    text-align: center;
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    img {
      width: 120px !important;
      height: auto;
    }
  }
}
.logo-carousel-track {
  display: flex;
  width: calc(170px * 20); /* 10 original + 10 duplicated */
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(
      -50%
    ); /* moves exactly one full original set — seamless loop */
  }
}
/* Talk to expert section styles */
.talk-toexpert-section {
  padding-block: 24px;
  background: linear-gradient(90deg, #2d1b54 0%, #7e3579 50%, #d4654b 100%);
}
.talk-toexpert-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  p {
    font-size: 20px;
    color: #ffff;
  }
  button {
    border: 0;
    background-color: #ffff;
    padding: 10px 18px;
    border-radius: 21px;
    font-size: 16px;
    font-weight: 500;
    color: #e35430;
    display: flex;
    gap: 10px;
    align-items: center;
  }
}
/* Footer styles  */
footer {
  background-color: #01091e;
  padding-top: 50px;
}
.footer-logo {
  width: auto;
  height: 40px;
  margin-bottom: 20px !important;
}
.footer-text {
  color: #cfcfcf;
  font-size: 16px;
}
.subscribe-news-letter-section {
  margin-top: 30px;
  h6 {
    color: #ffffff;
    font-size: 20px;
    padding-bottom: 12px !important;
  }
  p {
    color: #cfcfcf;
  }
}
.subscribe-mail-input-container {
  background-color: #0a1429;
  border: 1px solid #26344d;
  display: flex;
  height: 52px;
  align-items: center;
  border-radius: 50px;
  width: max-content;
  padding-right: 7px;
  padding-left: 17px;
  margin-top: 20px;
  margin-bottom: 30px;
  gap: 14px;

  input {
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 16px;
    flex: 1;
    min-width: 0;
  }
  input:focus-visible {
    border-color: transparent !important;
    box-shadow: none !important;
    outline: transparent !important;
  }
  button {
    background-color: #e35430;
    border: 0;
    color: #fff;
    height: 42px;
    padding-inline: 16px;
    border-radius: 25px;
    flex-shrink: 0;
    white-space: nowrap;
  }
}

.follow-us-container {
  h5 {
    color: #ffff;
    font-weight: 600;
  }
}
.social-media-icons-container {
  display: flex;
  align-items: center;
  gap: 15px;
  .social-media-icon-btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: #26344d;
    &:hover {
      background-color: var(--primary-color);
    }
  }
}
.footer-links-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px !important;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 !important;
  list-style: none !important;
  margin: 0;
  li {
    a {
      color: #cfcfcf;
      list-style: none;
      text-decoration: none;
      transition: all 0.3s ease;
      &:hover{
        color: var(--primary-color);
      }
    }
  }
}
.footer-copy-rights-container {
  height: 60px;
  background-color: #0a1429;
  display: flex;
  padding-inline: 15px;
  align-items: center;
  margin-top: 42px;
  justify-content: center;
  text-align: center;
  p {
    font-size: 16px !important;
    color: #cfcfcf;
  }
}
.contact-us-model-content {
  border-radius: 12px !important;

  .modal-header {
    align-items: flex-start !important;
    padding: 1.5rem !important;
  }
  .modal-body {
    padding: 1.5rem !important;
  }
}
.contact-us-popup-dialog {
  max-width: 600px !important;
}
/* Floating button styles */
#backToHero {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #e05d36;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.2s ease;
  z-index: 1000;
}
#backToHero.visible {
  opacity: 1;
  pointer-events: auto;
}
#backToHero:hover {
  transform: translateY(-2px);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
.progress-ring__fill {
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  transition: stroke-dashoffset 0.1s linear;
}
.arrow-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.arrow-icon.nudge {
  transform: translateY(-6px);
}
.animate__animated {
  animation-play-state: paused;
}

.page-node-490 .navbar ul li:hover > a{
  background: unset;
}


.newsletter-error-modal .modal-dialog-centered{
  max-width: 500px;
}