@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  margin: 0px;
  overflow-x: hidden;
  padding: 0px;
}
body::-webkit-scrollbar {
  width: 0.5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  outline: 1px solid var(--secondary-color);
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #123358;
  --secondary-color: #fdc41a;
  --gradient-color: #f99e0b;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p {
  font-size: 17px;
  color: #000;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}
section {
  padding: 70px 0 70px;
}
.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}

.leftLogo img {
  max-width: 100%;
  width: 120px;
}
.header.stricky-fixed .leftLogo img {
  max-width: 100%;
  width: 70px;
}
.centerMenu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.centerMenu ul {
  display: flex;
  gap: 35px;
}

.centerMenu ul li a {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}
.centerMenu ul li:hover a{
  color: var(--secondary-color);
}
.centerMenu ul li a.active{
      color: var(--secondary-color);
}

.large_heading {
  font-size: 65px;
  line-height: 1.1;
}
.heading {
  font-size: 50px;
}
.sub_heading {
  font-size: 35px;
}

.small_heading {
  font-size: 25px;
}
.title {
  font-size: 18px;
}
.text {
  font-size: 16px;
}
.fontWeight300 {
  font-weight: 300;
}
.fontWeight400 {
  font-weight: 400;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight700 {
  font-weight: 700;
}
.fontWeight800 {
  font-weight: 800;
}
.fontWeight900 {
  font-weight: 900;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  background: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  padding: 10px 0;
}
.header.stricky-fixed .sub_heading {
  color: #000 !important;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.fontHeading {
  font-family: "DM Sans", sans-serif;
}
.text_secondary {
  color: var(--secondary-color);
}
.text_primary {
  color: var(--primary-color);
}
.bgPrimary {
  background: var(--primary-color);
}
.bgSecondary {
  background: var(--secondary-color);
}
.containerFull {
  max-width: 1300px;
  margin: 0 auto;
}
.bgGrey {
  background-color: #f1f1f1;
}
.header {
  position: absolute;
  padding: 5px 0;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 9;
}

.rightMenu ul {
  display: flex;
}
.rightMenu ul li a {
  display: inline-block;
  color: #000;
  padding: 12px;
  font-size: 18px;

  font-weight: 700;
}
.rightMenu ul li a.active {
  color: var(--secondary-color);
}
.rightMenu ul li a:hover {
  color: var(--secondary-color);
}
.btnTheme {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: none;
  font-weight: 800;
  font-size: 17px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.hoverPrimary:hover {
  background: var(--secondary-color) !important;
  color: #ffffff !important;
}

.hoverSecondary:hover {
  background: var(--primary-color) !important;
  color: #ffffff !important;
}
.hover-border:hover {
  border: 2px solid var(--gradient-color) !important;
  color: #ffffff !important;
  background: none;
}

.btnTheme i {
  margin-right: 10px;
}
.headerRight a:hover {
  background: var(--secondary-color) !important;
}

.ai-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 100px;
  background:
    radial-gradient(
      circle at 0% 75%,
      rgba(18, 51, 88, 0.24) 0%,
      rgba(18, 51, 88, 0.08) 28%,
      transparent 52%
    ),
    radial-gradient(
      circle at 100% 75%,
      rgba(253, 196, 26, 0.28) 0%,
      rgba(253, 196, 26, 0.08) 30%,
      transparent 55%
    ),
    linear-gradient(120deg, #ffffff 0%, #f8fbff 55%, #fff9df 100%);
}

.hero-visual-wrap {
  position: relative;
  padding: 20px;
}

.hero-visual-card {
  position: relative;

  border-radius: 36px;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-visual-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 390px;
  right: 70px;
  bottom: 35px;
  background: var(--primary-color);
  border-radius: 120px 120px 40px 40px;
  z-index: 1;
}

.hero-person-img {
  position: relative;
  z-index: 2;
  max-width: 450px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.stat-card {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  border: 2px dashed rgba(18, 51, 88, 0.28);
  backdrop-filter: blur(10px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.stat-content h5 {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 700;
  color: #1f1f1f;
  line-height: 1;
}

.stat-content p {
  margin: 0;
  font-size: 15px;
  color: #555;
  line-height: 1.35;
}
.stat-card-top {
  top: 75px;
  left: -5px;
}

.stat-card-right {
  right: -30px;
  top: 250px;
}

.stat-card-bottom {
  left: 40px;
  bottom: -30px;
  min-width: 300px;
}

.floating-chip {
  position: absolute;
  z-index: 5;
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(18, 51, 88, 0.86);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(18, 51, 88, 0.18);
}
.shape-dot {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  animation: floatDot 3.5s ease-in-out infinite;
}

.shape-one {
  width: 22px;
  height: 22px;
  background: #fdc41a;
  left: 70px;
  top: 210px;
  box-shadow: 0 0 0 8px rgba(253, 196, 26, 0.12);
  animation-delay: 0s;
}

.shape-two {
  width: 16px;
  height: 16px;
  background: #123358;
  right: 28px;
  bottom: 140px;
  box-shadow: 0 0 0 7px rgba(18, 51, 88, 0.12);
  animation-delay: 1.2s;
}

@keyframes floatDot {
  0% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(8px, -10px) scale(1.08);
  }

  50% {
    transform: translate(0, -16px) scale(0.95);
  }

  75% {
    transform: translate(-8px, -8px) scale(1.05);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.audience-change-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 0% 20%,
      rgba(18, 51, 88, 0.12) 0%,
      transparent 34%
    ),
    radial-gradient(
      circle at 100% 90%,
      rgba(253, 196, 26, 0.22) 0%,
      transparent 40%
    ),
    linear-gradient(120deg, #ffffff 0%, #f8fbff 55%, #fff9df 100%);
}

.audience-image-wrap {
  position: relative;
  padding: 25px;
}

.audience-image-card {
  position: relative;
  min-height: 550px;
  border-radius: 42px;
  overflow: visible;
  background:
    linear-gradient(145deg, rgba(18, 51, 88, 0.95), rgba(18, 51, 88, 0.76)),
    radial-gradient(circle at 30% 25%, rgba(253, 196, 26, 0.4), transparent 38%);
  box-shadow: 0 30px 90px rgba(18, 51, 88, 0.22);
}

.audience-image-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: rgba(253, 196, 26, 0.28);
  z-index: 1;
}

.audience-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42px;
  z-index: 2;
  opacity: 0.92;
}

.audience-image-card::before,
.audience-image-card::after {
  pointer-events: none;
}

.audience-floating-card {
  position: absolute;
  z-index: 5;
  width: 210px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.audience-floating-card h4 {
  margin: 0 0 6px;
  color: var(--primary-color);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.audience-floating-card p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
}

.card-one {
  top: 45px;
  left: -10px;
}

.card-two {
  right: -20px;
  top: 235px;
}

.card-three {
  left: 55px;
  bottom: -20px;
  background: var(--secondary-color);
}

.card-three h4,
.card-three p {
  color: var(--primary-color);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: var(--secondary-color);
}

.numbers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.number-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(18, 51, 88, 0.1);
  box-shadow: 0 12px 32px rgba(18, 51, 88, 0.07);
  transition: all 0.3s ease;
}

.number-row:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 45px rgba(18, 51, 88, 0.12);
}

.number-row span {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 51, 88, 0.08);
  color: var(--primary-color);
  font-size: 26px;
  font-weight: 900;
}

.number-row p {
  margin: 0;
  color: #333;
}

.closing-box {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background: var(--primary-color);
  box-shadow: 0 24px 60px rgba(18, 51, 88, 0.22);
}

.closing-box i {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  background: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.closing-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.closing-box strong {
  display: block;
  color: #ffffff;
  margin-bottom: 5px;
}
.offer-card {
  position: relative;
  height: 100%;
  padding: 28px 24px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 51, 88, 0.1);
  box-shadow: 0 18px 45px rgba(18, 51, 88, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.offer-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: var(--primary-color);
  z-index: -1;
  transition: all 0.45s ease;
}

.offer-card:hover::before {
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(18, 51, 88, 0.18);
  border-color: var(--primary-color);
}

.offer-card h3,
.offer-card p {
  transition: all 0.3s ease;
}

.offer-card:hover h3,
.offer-card:hover p {
  color: #ffffff;
}

.offer-card:hover .offer-img {
  filter: brightness(0) invert(1);
  transform: scale(1.08);
}

.offer-img {
  transition: all 0.3s ease;
}

.offer-card:hover .offer-img-wrap {
  background: rgba(255, 255, 255, 0.12);
}

.offer-img-wrap {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: rgba(18, 51, 88, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offer-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}
.why-sunvale-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(253, 196, 26, 0.18) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at 95% 85%,
      rgba(18, 51, 88, 0.14) 0%,
      transparent 38%
    ),
    #ffffff;
}

.why-content,
.why-card {
  position: relative;
  z-index: 2;
}

.why-highlight-box {
  display: flex;
  gap: 18px;
  padding: 30px;
  border-radius: 28px;
  background: var(--primary-color);
  box-shadow: 0 24px 60px rgba(18, 51, 88, 0.22);
}

.why-highlight-box i {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 18px;
  background: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-highlight-box h5 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.why-highlight-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.why-card {
  height: 100%;
  padding: 30px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 51, 88, 0.1);
  box-shadow: 0 18px 45px rgba(18, 51, 88, 0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(18, 51, 88, 0.14);
}

.why-card-yellow {
  background: rgba(253, 196, 26, 0.14);
  border-color: rgba(253, 196, 26, 0.32);
}

.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 22px;
}

.why-card h3 {
  margin-bottom: 14px;
  color: var(--primary-color);
}
.industry-img-card {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(18, 51, 88, 0.1);
  box-shadow: 0 18px 45px rgba(18, 51, 88, 0.08);
  transition: all 0.35s ease;
}

.industry-img-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(18, 51, 88, 0.16);
}

.industry-img-box {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.industry-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 51, 88, 0.05) 0%,
    rgba(18, 51, 88, 0.45) 100%
  );
  z-index: 2;
}

.industry-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.45s ease;
}

.industry-img-card:hover .industry-img-box img {
  transform: scale(1.08);
}

.industry-card-body {
  padding: 28px 26px 30px;
}

.industry-card-body h3 {
  margin-bottom: 12px;
  color: var(--primary-color);
}

.sunvale-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(18, 51, 88, 0.1) 0%,
      transparent 34%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(253, 196, 26, 0.2) 0%,
      transparent 38%
    ),
    linear-gradient(120deg, #ffffff 0%, #f8fbff 55%, #fff9df 100%);
}

.sunvale-process-section .containerFull {
  position: relative;
  z-index: 2;
}

.process-card {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 34px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 51, 88, 0.1);
  box-shadow: 0 18px 45px rgba(18, 51, 88, 0.08);
  transition: all 0.35s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  border: 1px solid var(--primary-color);
  box-shadow: 0 30px 70px rgba(18, 51, 88, 0.14);
}

.process-number {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  color: rgba(18, 51, 88, 0.08);
}

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 16px 35px rgba(18, 51, 88, 0.18);
}

.process-card h3 {
  color: var(--primary-color);
}

.active-process {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.active-process .process-number {
  color: rgba(255, 255, 255, 0.12);
}

.active-process .process-icon {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.active-process h3,
.active-process p {
  color: #ffffff;
}
.resources-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.resources-box {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(253, 196, 26, 0.24) 0%,
      transparent 34%
    ),
    radial-gradient(
      circle at 95% 80%,
      rgba(18, 51, 88, 0.18) 0%,
      transparent 38%
    ),
    linear-gradient(120deg, #f8fbff 0%, #ffffff 55%, #fff9df 100%);
  border: 1px solid rgba(18, 51, 88, 0.1);
  box-shadow: 0 28px 80px rgba(18, 51, 88, 0.12);
}

.resources-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: var(--secondary-color);
  opacity: 0.25;
}

.resources-box::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  left: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.1;
}

.resources-content,
.resources-btn-wrap {
  position: relative;
  z-index: 2;
}

.resources-btn-wrap {
  display: flex;
  justify-content: flex-end;
}

.resources-btn-wrap .btnTheme {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.footer-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
  background-color: #222;
}

.footer-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -180px;
  border-radius: 50%;
  background: rgba(253, 196, 26, 0.24);
  filter: blur(8px);
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}

.footer-logo img {
  width: 130px;
  display: block;
}

.footer-about p,
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);

  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gradient-color);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--secondary-color);
  color: #000000;
  border-color: var(--secondary-color);
  transform: translateY(-4px);
}

.footer-widget h4::after,
.footer-newsletter h4::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  border-radius: 99px;
  background: #fdc41a;
  margin-top: 10px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 14px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 17px;
  transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
  color: var(--secondary-color);
  padding-left: 6px;
}

.footer-newsletter {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.095);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.footer-form {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(253, 196, 26, 0.24);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 20px;
}

.footer-form input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  padding: 13px 16px;
  font-size: 15px;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.footer-form button {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--gradient-color);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-form button:hover {
  background: #ffffff;
  color: #000000;
  transform: rotate(-20deg);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fdc41a;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-cta:hover {
  color: #ffffff;
  gap: 14px;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact ul li {
  margin-bottom: 16px;
}

.footer-contact ul li a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.footer-contact ul li a i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: rgba(253, 196, 26, 0.14);
  color: #fdc41a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-contact ul li a:hover {
  color: #fdc41a;
  transform: translateX(5px);
}

.footer-contact ul li a:hover i {
  background: #fdc41a;
  color: #000000;
}
.footer-bottom {
  margin-top: 70px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fdc41a;
}
.textHoverSecondary {
  transition: color 0.2s ease;
}

.textHoverSecondary:hover {
  color: var(--gradient-color) !important;
}
.InnerPage {
  position: relative;
  width: 100%;
  height: 380px;
  padding-top: 140px;
  box-sizing: border-box;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.platform-banner{
  background-image: url("../images/banner/banner1.jpg");
}

.industry-banner{
  background-image: url("../images/bg/industry-banner.jpg");
}

.customer-banner{
  background-image: url("../images/bg/customer-banner.jpg");
}


.resource-banner{
  background-image: url("../images/bg/resource-banner.jpg");
}

.InnerPage-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.InnerPage .hero-content {
  position: relative;
  z-index: 2;
}
.platform .header .centerMenu ul li a {
  color: #fff !important;
}

.platform .header .centerMenu ul li a:hover,
.platform .header .centerMenu ul li a.active {
  color: var(--secondary-color) !important;
}

.platform .header.stricky-fixed .centerMenu ul li a {
  color: #000 !important;
}

.platform .header.stricky-fixed .centerMenu ul li a:hover,
.platform .header.stricky-fixed .centerMenu ul li a.active {
  color: var(--secondary-color) !important;
}

.platform-overview-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(253, 196, 26, 0.16) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at 100% 85%,
      rgba(18, 51, 88, 0.12) 0%,
      transparent 38%
    ),
    #ffffff;
}

.platform-overview-content {
  position: sticky;
  top: 120px;
}

.capability-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.capability-row {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 51, 88, 0.1);
  box-shadow: 0 16px 40px rgba(18, 51, 88, 0.08);
  transition: all 0.35s ease;
}

.capability-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  z-index: 0;
  background: var(--secondary-color);
  transition: all 0.35s ease;
}

.capability-row:hover {
  transform: translateX(10px);
  box-shadow: 0 24px 60px rgba(18, 51, 88, 0.14);
}

.capability-row:hover::before {
  width: 100%;
  background: var(--primary-color);
  z-index: 0;
}

.capability-left,
.capability-info {
  position: relative;
  z-index: 2;
}

.capability-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 130px;
}

.capability-left span {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: rgba(18, 51, 88, 0.25);
  transition: all 0.3s ease;
}

.capability-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

.capability-info p {
  margin: 0 0 4px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: all 0.3s ease;
}

.capability-info h3 {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.capability-row:hover .capability-left span,
.capability-row:hover .capability-info p,
.capability-row:hover .capability-info h3 {
  color: #ffffff;
  z-index: 2;
}

.capability-row:hover .capability-icon {
  background: var(--secondary-color);
  color: #ffffff;
  z-index: 2;
}


.active-capability-row {
  background: var(--primary-color);

}

.active-capability-row::before {
  background: var(--secondary-color)!important;
}

.active-capability-row .capability-left span,
.active-capability-row .capability-info h3 {
  color: #ffffff;
}

.active-capability-row .capability-info p {
  color: var(--secondary-color);
}

.active-capability-row .capability-icon {
  background: var(--secondary-color);
  color: #fff;
}

.active-capability-row .capability-icon i {
  color:  #fff;
}
.channels-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(253, 196, 26, 0.16) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at 100% 85%,
      rgba(18, 51, 88, 0.12) 0%,
      transparent 38%
    ),
    #ffffff;
}

.channels-section .containerFull {
  position: relative;
  z-index: 2;
}

.channel-card {
  position: relative;
  height: 100%;
  padding: 32px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 51, 88, 0.1);
  box-shadow: 0 18px 45px rgba(18, 51, 88, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  isolation: isolate;
}

.channel-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 30px 70px rgba(18, 51, 88, 0.16);
}

.channel-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 16px 35px rgba(18, 51, 88, 0.16);
  transition: all 0.3s ease;
}

.channel-card h3 {
  color: var(--primary-color);
}

.active-channel-card {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.active-channel-card .channel-icon {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.active-channel-card h3,
.active-channel-card p {
  color: #ffffff;
}
.integrations-text-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #123358 0%,
    #1b4a7a 50%,
    #ffd86b 100%
  );
}
.pricing-tiers-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(253, 196, 26, 0.14) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at 100% 85%,
      rgba(18, 51, 88, 0.12) 0%,
      transparent 38%
    ),
    #ffffff;
}

.pricing-tiers-section .containerFull {
  position: relative;
  z-index: 2;
}

.pricing-col-box {
  height: 100%;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(18, 51, 88, 0.1);
  box-shadow: 0 22px 60px rgba(18, 51, 88, 0.1);
  transition: all 0.35s ease;
}

.pricing-col-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(18, 51, 88, 0.16);
}

.pricing-col-dark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.pricing-col-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.pricing-col-icon {
  width: 66px;
  height: 66px;
  min-width: 66px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
}

.pricing-col-head span {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-col-head h3 {
  color: var(--primary-color);
}

.pricing-col-dark .pricing-col-head h3 {
  color: #ffffff;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-list-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(18, 51, 88, 0.045);
  border: 1px solid rgba(18, 51, 88, 0.08);
  transition: all 0.3s ease;
}

.pricing-list-item:hover {
  transform: translateX(8px);
  background: rgba(253, 196, 26, 0.12);
  border-color: rgba(253, 196, 26, 0.35);
}

.pricing-number {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}

.pricing-list-item h4 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 800;
}

.pricing-col-dark .pricing-list-item {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.13);
}

.pricing-col-dark .pricing-list-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(253, 196, 26, 0.5);
}

.pricing-col-dark .pricing-number {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.pricing-col-dark .pricing-list-item h4 {
  color: #ffffff;
}

.pricing-col-dark .pricing-list-item p {
  color: rgba(255, 255, 255, 0.78);
}
.why-platform-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(253, 196, 26, 0.14) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at 100% 85%,
      rgba(18, 51, 88, 0.12) 0%,
      transparent 38%
    ),
    #ffffff;
}

.why-platform-content,
.why-platform-image-wrap {
  position: relative;
  z-index: 2;
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.approach-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(18, 51, 88, 0.1);
  box-shadow: 0 16px 40px rgba(18, 51, 88, 0.08);
  transition: all 0.35s ease;
}

.approach-item:hover {
  transform: translateX(8px);
  box-shadow: 0 26px 60px rgba(18, 51, 88, 0.14);
  border-color: rgba(253, 196, 26, 0.55);
}

.approach-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
}

.approach-item h3 {
  color: var(--primary-color);
}

.why-platform-image-wrap {
  padding-left: 30px;
}

.why-platform-image-card {
  position: relative;
  height: 750px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(18, 51, 88, 0.18);
}

.why-platform-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 51, 88, 0.08) 0%,
    rgba(18, 51, 88, 0.55) 100%
  );
  z-index: 2;
}

.why-platform-img {
  width: 100%;
  height: 100%;
  min-height: unset;
  object-fit: cover;
  display: block;
  transition: all 0.45s ease;
}
.why-platform-image-card:hover .why-platform-img {
  transform: scale(1.08);
}

.platform-floating-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-color);
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.platform-floating-card i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-card {
  top: 28px;
  left: 28px;
  animation: platformFloatOne 4s ease-in-out infinite;
}

.bottom-card {
  right: 28px;
  bottom: 28px;
  animation: platformFloatTwo 5s ease-in-out infinite;
}

@keyframes platformFloatOne {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes platformFloatTwo {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}
.industry-overview-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(253, 196, 26, 0.14) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at 100% 85%,
      rgba(18, 51, 88, 0.12) 0%,
      transparent 38%
    ),
    linear-gradient(120deg, #ffffff 0%, #f8fbff 55%, #fff9df 100%);
}

.industry-overview-section .containerFull {
  position: relative;
  z-index: 2;
}

.industry-deep-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.industry-deep-card {
  position: relative;
  height: 100%;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(18, 51, 88, 0.1);
  box-shadow: 0 18px 45px rgba(18, 51, 88, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  isolation: isolate;
}

.industry-deep-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 30px 70px rgba(18, 51, 88, 0.16);
}

.industry-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.industry-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  transition: all 0.3s ease;
}

.industry-top span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: all 0.3s ease;
}

.industry-top h3 {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.industry-deep-card > p {
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.industry-deep-card h4 {
  margin-bottom: 14px;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.industry-deep-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industry-deep-card ul li {
  position: relative;
  padding-left: 30px;
  color: #5b6472;
  font-size: 16px;
  transition: all 0.3s ease;
}

.industry-deep-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(253, 196, 26, 0.22);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: all 0.3s ease;
}
.industry-fit-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(253, 196, 26, 0.14) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at 100% 85%,
      rgba(18, 51, 88, 0.1) 0%,
      transparent 38%
    ),
    #ffffff;
}

.industry-fit-box {
  position: relative;
  overflow: hidden;
  padding: 65px 40px;
  border-radius: 36px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 251, 255, 0.96)
    ),
    radial-gradient(
      circle at 20% 20%,
      rgba(253, 196, 26, 0.18),
      transparent 34%
    );
  border: 1px solid rgba(18, 51, 88, 0.1);
  box-shadow: 0 28px 80px rgba(18, 51, 88, 0.12);
}

.industry-fit-box::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: rgba(253, 196, 26, 0.24);
}

.industry-fit-box::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  left: -55px;
  bottom: -55px;
  border-radius: 50%;
  background: rgba(18, 51, 88, 0.1);
}
.customer-types-section {
   position: relative;
   overflow: hidden;
   background:
      radial-gradient(circle at 10% 20%, rgba(253, 196, 26, 0.14) 0%, transparent 32%),
      radial-gradient(circle at 100% 85%, rgba(18, 51, 88, 0.12) 0%, transparent 38%),
      linear-gradient(120deg, #ffffff 0%, #f8fbff 55%, #fff9df 100%);
}

.customer-types-section .containerFull {
   position: relative;
   z-index: 2;
}


.customer-stage-card {
   position: relative;
   height: 100%;
   padding: 34px 30px;
   border-radius: 32px;
   background: rgba(255, 255, 255, 0.95);
   border: 1px solid rgba(18, 51, 88, 0.10);
   box-shadow: 0 18px 45px rgba(18, 51, 88, 0.08);
   overflow: hidden;
   transition: all 0.35s ease;
   isolation: isolate;
}

.customer-stage-card::before {
   content: "";
   position: absolute;
   left: 0;
   bottom: 0;
   width: 100%;
   height: 0;
   background: var(--primary-color);
   z-index: -1;
   transition: all 0.45s ease;
}

.customer-stage-card:hover::before {
   height: 100%;
}

.customer-stage-card:hover {
   transform: translateY(-8px);
   border-color: var(--primary-color);
   box-shadow: 0 30px 70px rgba(18, 51, 88, 0.16);
}

.stage-top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 26px;
}

.stage-number {
   font-size: 54px;
   line-height: 1;
   font-weight: 900;
   color: rgba(18, 51, 88, 0.10);
   transition: all 0.3s ease;
}

.stage-icon {
   width: 68px;
   height: 68px;
   border-radius: 22px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #ffffff;
   font-size: 26px;
   transition: all 0.3s ease;
}

.stage-label {
   display: inline-block;
   margin-bottom: 12px;
   color: var(--secondary-color);
   font-size: 13px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.09em;
   transition: all 0.3s ease;
}

.customer-stage-card h3 {
   color: var(--primary-color);
   transition: all 0.3s ease;
}

.customer-stage-card p {
   margin: 0;
   transition: all 0.3s ease;
}

.customer-stage-card:hover .stage-number {
   color: rgba(255, 255, 255, 0.14);
}

.customer-stage-card:hover .stage-icon {
   background: var(--secondary-color);
   color: var(--primary-color);
}

.customer-stage-card:hover .stage-label,
.customer-stage-card:hover h3,
.customer-stage-card:hover p {
   color: #ffffff;
}

.active-stage-card {
   background: var(--primary-color);
   border-color: var(--primary-color);
}

.active-stage-card .stage-number {
   color: rgba(255, 255, 255, 0.14);
}

.active-stage-card .stage-label {
   color: var(--secondary-color);
}

.active-stage-card h3,
.active-stage-card p {
   color: #ffffff;
}
.ideal-dot-list {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 18px;
}

.ideal-dot-list li {
   position: relative;
   padding-left: 34px;
   font-size: 18px;
}

.ideal-dot-list li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 12px;
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: var(--secondary-color);
   box-shadow: 0 0 0 7px rgba(253, 196, 26, 0.16);
}

.ideal-dot-list li::after {
   content: "";
   position: absolute;
   left: 5px;
   top: 28px;
   width: 2px;
   height: calc(100% + 8px);
   background: rgba(18, 51, 88, 0.12);
}

.ideal-dot-list li:last-child::after {
   display: none;
}
.ideal-customer-img {
   width: 100%;
   height: 400px;
   object-fit: cover;
   display: block;
   border-radius: 10px;
   transition: all 0.45s ease;
}

.ideal-customer-image-card:hover .ideal-customer-img {
   transform: scale(1.08);
}
.regions-section {
   position: relative;
   overflow: hidden;
   background:
      radial-gradient(circle at 10% 20%, rgba(253, 196, 26, 0.14) 0%, transparent 32%),
      radial-gradient(circle at 100% 85%, rgba(18, 51, 88, 0.12) 0%, transparent 38%),
      #ffffff;
}

.regions-section .containerFull {
   position: relative;
   z-index: 2;
}
.region-card {
   position: relative;
   height: 100%;
   padding: 32px 28px;
   border-radius: 30px;
   background: rgba(255, 255, 255, 0.95);
   border: 1px solid rgba(18, 51, 88, 0.10);
   box-shadow: 0 18px 45px rgba(18, 51, 88, 0.08);
   overflow: hidden;
   transition: all 0.35s ease;
   isolation: isolate;
}


.region-card:hover {
   transform: translateY(-8px);
   border-color: var(--primary-color);
   box-shadow: 0 30px 70px rgba(18, 51, 88, 0.16);
}

.region-icon {
   width: 68px;
   height: 68px;
   border-radius: 22px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #ffffff;
   font-size: 26px;
   margin-bottom: 24px;
   transition: all 0.3s ease;
}

.region-card h3 {
   color: var(--primary-color);
   transition: all 0.3s ease;
}
.resource-categories-section {
   position: relative;
   overflow: hidden;
   background:
      radial-gradient(circle at 10% 20%, rgba(253, 196, 26, 0.14) 0%, transparent 32%),
      radial-gradient(circle at 100% 85%, rgba(18, 51, 88, 0.12) 0%, transparent 38%),
      linear-gradient(120deg, #ffffff 0%, #f8fbff 55%, #fff9df 100%);
}

.resource-categories-section .containerFull {
   position: relative;
   z-index: 2;
}

.resource-category-card {
   position: relative;
   overflow: hidden;
   padding: 32px 30px;
   border-radius: 30px;
   background: rgba(255, 255, 255, 0.95);
   border: 1px solid rgba(18, 51, 88, 0.10);
   box-shadow: 0 18px 45px rgba(18, 51, 88, 0.08);
   transition: all 0.35s ease;
   isolation: isolate;
}

.resource-category-card:hover {
   transform: translateY(-8px);
   border-color: var(--primary-color);
   box-shadow: 0 30px 70px rgba(18, 51, 88, 0.16);
}

.resource-category-top {
   display: flex;
   align-items: center;
   gap: 18px;
   margin-bottom: 22px;
}

.resource-category-icon {
   width: 66px;
   height: 66px;
   min-width: 66px;
   border-radius: 22px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #ffffff;
   font-size: 26px;
   transition: all 0.3s ease;
}

.resource-category-card h3 {
   color: var(--primary-color);
   transition: all 0.3s ease;
}

.resource-category-card h4 {
   margin: 22px 0 14px;
   color: var(--primary-color);
   font-size: 18px;
   font-weight: 800;
   transition: all 0.3s ease;
}


.resource-dot-list {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 11px;
}

.resource-dot-list li {
   position: relative;
   padding-left: 28px;
   color: #5b6472;
   font-size: 15px;
   line-height: 1.6;
   transition: all 0.3s ease;
}

.resource-dot-list li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 10px;
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: var(--secondary-color);
   box-shadow: 0 0 0 6px rgba(253, 196, 26, 0.15);
}


.active-resource-card {
   background: var(--primary-color);
   border-color: var(--primary-color);
}

.active-resource-card h3,
.active-resource-card p {
   color: #ffffff;
}

.active-resource-card .resource-category-icon {
   background: var(--secondary-color);
   color: var(--primary-color);
}
.newsletter-section {
   position: relative;
   overflow: hidden;

   background:
      radial-gradient(circle at 10% 20%, rgba(253, 196, 26, 0.14) 0%, transparent 32%),
      radial-gradient(circle at 100% 85%, rgba(18, 51, 88, 0.12) 0%, transparent 38%),
      #ffffff;
}

.newsletter-box {
   position: relative;
   overflow: hidden;
   padding: 60px;
   border-radius: 36px;
   background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
      radial-gradient(circle at 80% 20%, rgba(253, 196, 26, 0.18), transparent 34%);
   border: 1px solid rgba(18, 51, 88, 0.10);
   box-shadow: 0 28px 80px rgba(18, 51, 88, 0.12);
}

.newsletter-box::before {
   content: "";
   position: absolute;
   width: 240px;
   height: 240px;
   right: -80px;
   top: -80px;
   border-radius: 50%;
   background: rgba(253, 196, 26, 0.24);
}

.newsletter-box::after {
   content: "";
   position: absolute;
   width: 180px;
   height: 180px;
   left: -70px;
   bottom: -70px;
   border-radius: 50%;
   background: rgba(18, 51, 88, 0.10);
}

.newsletter-content,
.newsletter-form-card {
   position: relative;
   z-index: 2;
}

.newsletter-content p {
   color: #5b6472;
   font-size: 18px;
   line-height: 1.8;
}

.newsletter-form-card {
   padding: 34px;
   border-radius: 30px;
   background: #ffffff;
   border: 1px solid rgba(18, 51, 88, 0.10);
   box-shadow: 0 22px 60px rgba(18, 51, 88, 0.10);
}

.form-group label {
   display: block;
   margin-bottom: 8px;
   color: var(--primary-color);
   font-size: 17px;
   font-weight: 700;
}

.form-group input {
   width: 100%;
   height: 56px;
   border: 1px solid rgba(18, 51, 88, 0.14);
   border-radius: 16px;
   padding: 0 18px;
   color: #111827;
   font-size: 15px;
   outline: none;
   background: #f8fbff;
   transition: all 0.3s ease;
}

.form-group input::placeholder {
   color: #8b95a5;
}

.form-group input:focus {
   border-color: var(--secondary-color);
   background: #ffffff;
   box-shadow: 0 0 0 4px rgba(253, 196, 26, 0.16);
}

.newsletter-form-card .btnTheme {
   margin-top: 8px;
}
.faq-section {
   position: relative;
   overflow: hidden;
   background:
      radial-gradient(circle at 10% 20%, rgba(253, 196, 26, 0.14) 0%, transparent 32%),
      radial-gradient(circle at 100% 85%, rgba(18, 51, 88, 0.12) 0%, transparent 38%),
      #ffffff;
}

.faq-section .containerFull {
   position: relative;
   z-index: 2;
}

.faq-accordion {
   display: flex;
   flex-direction: column;
   gap: 18px;
}

.faq-item {
   border: 1px solid rgba(18, 51, 88, 0.10);
   border-radius: 24px !important;
   overflow: hidden;
   background: rgba(255, 255, 255, 0.95);
   box-shadow: 0 16px 40px rgba(18, 51, 88, 0.08);
}

.faq-item .accordion-button {
   padding: 20px 20px;
   color: var(--primary-color);
   font-size: 20px;
   font-weight: 700;
   background: #ffffff;
   box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
   color: #ffffff;
   background: var(--primary-color);
}

.faq-item .accordion-button::after {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background-color: rgba(253, 196, 26, 0.18);
   background-position: center;
   background-size: 16px;
   padding: 10px;
}

.faq-item .accordion-button:not(.collapsed)::after {
   background-color: var(--secondary-color);
   filter: none;
}

.faq-item .accordion-body {
   padding: 20px 20px;
font-size: 17px;
   background: #ffffff;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 80px;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 5px;
  background-color: var(--primary-color);
  z-index: 999;
  width: 45px;
  height: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  transition: 0.9s;
  overflow: hidden;
}
/* Hamburger Button */
.hamburgerBtn {
   display: none;
   width: 44px;
   height: 44px;
   min-width: 44px;
   border: none;
   border-radius: 10px;
   background: var(--secondary-color);
   color: #fff;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   cursor: pointer;
   position: relative;
   z-index: 10001;
   padding: 0;
}

/* Overlay */
.mobileMenuOverlay {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.55);
   z-index: 9998;
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   transition: all 0.3s ease;
}

.mobileMenuOverlay.active {
   opacity: 1;
   visibility: visible;
   pointer-events: auto;
}

/* Sidebar */
.mobileSidebar {
   position: fixed;
   top: 0;
   right: -340px;
   width: 320px;
   max-width: 85%;
   height: 100vh;
   background: #fff;
   z-index: 9999;
   padding: 20px;
   transition: right 0.35s ease;
   overflow-y: auto;
   box-shadow: -12px 0 35px rgba(0, 0, 0, 0.18);
}

.mobileSidebar.active {
   right: 0;
}

/* Sidebar Header */
.mobileSidebarHeader {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding-bottom: 18px;
   border-bottom: 1px solid #eee;
}

.mobileLogo img {
   width: 90px;
   max-width: 100%;
}

/* Close Button */
.closeSidebar {
   width: 42px;
   height: 42px;
   min-width: 42px;
   border: none;
   border-radius: 10px;
   background: var(--primary-color);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   cursor: pointer;
   padding: 0;
}

/* Mobile Menu */
.mobileMenu {
   margin-top: 24px;
}

.mobileMenu ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.mobileMenu ul li {
   border-bottom: 1px solid #eee;
}

.mobileMenu ul li a {
   display: block;
   padding: 15px 0;
   color: #111;
   font-size: 17px;
   font-weight: 700;
   text-decoration: none;
}

.mobileMenu ul li a:hover,
.mobileMenu ul li a.active {
   color: var(--secondary-color);
}

/* Sidebar Button */
.mobileSidebarBtn {
   margin-top: 26px;
}

.mobileSidebarBtn .btnTheme {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   text-align: center;
}


