body {
  font-family: "Poppins", sans-serif;
}

@layer base {
  :root {
    --color-primary: #1a2b41;
    --color-blue: #061e4c;
    --color-yellow: #cda35b;
    --color-gray: #d5deed;
    --color-black: #111;
  }
}

@layer utilities {
  .text-primary {
    color: var(--color-primary);
  }

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

  .text-secondary {
    color: var(--color-yellow);
  }

  .text-blue {
    color: var(--color-blue);
  }

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

  .bg-gray {
    background-color: var(--color-gray);
  }

  .text-black {
    color: var(--color-black);
  }

  .bg-black {
    color: var(--color-black);
  }

  .bg-gradient {
    background-image: linear-gradient(
      to left,
      var(--color-yellow),
      var(--color-yellowLt)
    );
  }

  .text-gradient {
    background-image: linear-gradient(
      to top,
      var(--color-yellow),
      var(--color-yellowLt)
    ) !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .border-gradient {
    border: 1px solid;
    border-image: linear-gradient(
      to right,
      var(--color-yellow),
      var(--color-yellowLt)
    );
    border-image-slice: 1;
    border-radius: 100px;
  }

  .bg-blue-gradient {
    background-image: linear-gradient(
      to top,
      var(--color-primary),
      var(--color-blue)
    );
  }

  .bg-blue-gradient-new {
    background-image: linear-gradient(to top, #9393937b, #172747, #172747);
  }

  .text-blue-gradient {
    background-image: linear-gradient(
      to top,
      var(--color-primary),
      var(--color-blue)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .text-white {
    color: #fff !important;
  }
}

header.scrolled {
  box-shadow: 0 4px 9px #0000001d !important;
}

header.scrolled .logo-main {
  transform: scale(0.9);
}

header nav ul li a.active,
header nav ul li button.active {
  background: #00000050;
  transition: 0.5s;
}

header.scrolled nav ul li a.active,
header.scrolled nav ul li button.active {
  background: #ffffff23;
}

h1 {
  color: #111111d5;
}

h5 {
  background: -webkit-linear-gradient(var(--color-primary), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) and (max-height: 820px) {
  .golden-layer {
    height: 80vh;
  }
}

@media (max-width: 600px) and (max-height: 760px) {
  .golden-layer {
    height: 90vh;
  }

  .c-mask {
    transform: scale(0.965);
    right: -60px;
  }
}

@media (max-width: 600px) and (max-height: 620px) {
  .golden-layer {
    height: 95vh;
  }

  .c-mask {
    transform: scale(0.8);
    right: -80px;
  }
}

@media (max-width: 600px) and (min-height: 820px) {
  .golden-layer {
    height: 70vh;
  }
}

@media (min-width: 768px) {
  header {
    background: transparent;
  }

  .c-mask {
    right: unset;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -35%);
  }
}

@media (max-width: 1280px) {
  .banner-mob {
    background: url("./assets/images/BANNER-IMG-WEB2.webp");
    background-size: cover;
    /* background-position: top; */
  }
}

.card-wrapper {
  box-shadow: 12px 12px 10px rgba(0, 0, 0, 0.15);
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    radial-gradient(134.23% 88.35% at 66.1% 56.75%, #28447b 0%, #172747 100%);
}

.linked-to-btn {
  background-image: linear-gradient(to top, #385fad, var(--color-primary));
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.skewed-bg {
  transform: skewY(-8deg);
}

.vision-card {
  background-image: url("./assets/images/vision-card-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vision-line {
  height: 110%;
  width: 1px;
  /* background-image: linear-gradient(to bottom, #ffffff4e, #fff, #ffffffb1); */
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 105, 0.349),
    yellow,
    rgba(220, 220, 0, 0.371)
  );
  display: none;
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.vision-line::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 0%;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #17274786;
  animation: line-anim 40s linear infinite;
  z-index: 100;
  outline: 6px solid #1727472d;
}

.circle-spin {
  animation: circle-spin 15s linear infinite;
}

@keyframes line-anim {
  0% {
    top: 0%;
  }

  20% {
    top: 20%;
  }

  30% {
    top: 80%;
  }

  50% {
    top: 100%;
  }

  80% {
    top: 30%;
  }

  100% {
    top: 0%;
  }
}

@keyframes circle-spin {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0d);
  }
}

.contact-blue {
  background-image: linear-gradient(to top, #385fad, var(--color-primary));
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.contact-yellow {
  background-image: linear-gradient(
    to right,
    var(--color-yellow),
    var(--color-yellowLt)
  );
  color: #fff;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-left 50s linear infinite;
}

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

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

.clients-shadow {
  background-image: linear-gradient(
    to left,
    rgba(173, 143, 0, 0.3),
    rgba(230, 201, 1, 0.3),
    rgba(255, 255, 255, 0.3)
  );
  width: 120px;
}

/* swiper slider */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  transition: 2s !important;
}

@media (max-width: 799.98px) {
  .swiper-slide-prev,
  .swiper-slide-next {
    opacity: 0.8;
    transition: 2s !important;
    transform: scale(0.97) translateY(6px) !important;
  }
}

.swiper-container-wrapper {
  width: 100%;
  position: relative;
}

.swiper-pagination-bullet {
  margin: 0 !important;
}

.swiper-pagination-bullet {
  background-color: #999999;
  width: 10px;
  height: 10px;
  transition: 0.6s !important;
}

.swiper-pagination-bullet-active {
  background-color: #f5f5f5;
  width: 14px;
  height: 14px;
}

@media (min-width: 576px) {
  .swiper-slide {
    width: 80%;
  }
}

@media (min-width: 800px) {
  .swiper-container-wrapper {
    padding-inline: 5rem;
  }

  .swiper-wrapper {
    gap: 3%;
  }

  .swiper-slide {
    width: 48.5%;
    margin: 0px !important;
  }
}

/* Accordion styles */
.accordion-trigger {
  background-image: linear-gradient(to right, #172747c8, #172747);
  box-shadow: 0 4px 12px #0000001b;
  transition: 0.6s !important;
}

.accordion-content {
  background: #e2e2e2;
  transition: 0.6s !important;
  transform: skewX(-5deg);
}

.accordion-content div {
  transform: skewX(5deg);
}

#accordion-btn.open #accordion-btn2.open {
  background-image: linear-gradient(to right, #172747af, #315eff97);
  transition: 0.6s !important;
}

.accordion-icon {
  box-shadow: 0 4px 12px #00000039;
  border: 0.5px solid rgba(255, 255, 255, 0.125);
  cursor: pointer;
}

@media (max-width: 824.98px) {
  .container {
    padding: 0 16px;
    max-width: 100%;
  }
}

@media (min-width: 825px) {
  .container {
    padding: 0 5rem;
    max-width: 100%;
  }

  .clients-section {
    padding-left: 5rem;
  }

  .swiper-container-wrapper {
    padding-left: 5rem;
  }
}

@media (min-width: 1025px) {
  .linked-to-btn {
    transition: 0.3s;
  }

  .card-wrapper:hover .linked-to-btn {
    transform: scale(1.1);
  }

  .card-wrapper {
    box-shadow: 8px 14px 24px rgba(0, 0, 0, 0.1);
    transition: 0.6s !important;
  }

  .card-wrapper:hover {
    box-shadow: 8px 14px 30px rgba(0, 0, 0, 0.4);
  }

  .card-wrapper img {
    transition: 0.7s ease-out;
  }

  .card-wrapper:hover img {
    transform: scale(1.08);
  }

  .card-wrapper::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    width: 50%;
    height: 70%;
    background: radial-gradient(
      ellipse at center,
      rgba(253, 223, 62, 0.4) 0%,
      rgba(253, 223, 62, 0.2) 40%,
      rgba(253, 223, 62, 0.1) 70%,
      transparent 100%
    );
    transform: translate(-50%, -50%) rotate(-20deg);
    filter: blur(20px);
    opacity: 0;
    transition: 0.6s;
  }

  .card-wrapper:hover::before {
    opacity: 1;
  }

  .vision-line {
    display: inline-block;
  }
}

@media (min-width: 1286px) {
  .c-mask {
    display: none;
  }

  .business-man {
    width: 54%;
  }

  .vision-section {
    background-image: linear-gradient(to top, #ffffff, #999999, #ffffff);
  }

  .slider-section {
    background-color: var(--color-primary);
    /* background-image: url('/assets/images/resource-background.webp') !important; */
    background-position: bottom;
    background-blend-mode: lighten;
    --bgSize: 100%;
    background-size: var(--bgSize);
    transition: background-size 0.3s ease;
    background-repeat: no-repeat;
  }
}

@media (min-width: 1500px) {
  .container {
    padding: 0 7rem;
    max-width: 100%;
  }

  .clients-section {
    padding-left: 7rem;
  }

  .swiper-container-wrapper {
    padding-inline: 7rem;
  }
}

@media (min-width: 1630px) {
  .card-grid {
    gap: 40px;
  }

  .business-man {
    width: 50%;
  }
}

@media (min-width: 1800px) {
  .container {
    padding: 0 10rem;
    max-width: 100%;
  }

  .clients-section {
    padding-left: 10rem;
    padding-top: 140px;
  }

  .clients-section h5 {
    font-size: 60px;
    line-height: 70px;
  }

  .business-man {
    width: 46%;
  }

  .swiper-container-wrapper {
    padding-inline: 10rem;
  }

  .swiper-wrapper {
    gap: 8%;
  }

  .swiper-slide {
    width: 46%;
  }

  .main-heading {
    font-size: 58px;
    line-height: 72px;
    max-width: 840px;
  }

  .number-title {
    font-size: 60px;
    line-height: 66px;
  }

  .label-title {
    font-size: 24px;
    line-height: 32px;
  }

  .cards-section {
    padding-top: 60px;
  }

  .card-grid {
    gap: 60px;
  }

  .card-wrapper {
    padding: 32px 28px;
  }

  .card-wrapper p {
    font-size: 16px;
    line-height: 28px;
  }

  .highlight-wrapper {
    height: 170px;
  }

  .office-address {
    gap: 90px;
  }
}

@media (min-width: 2100px) {
  .container {
    padding: 0 15rem;
    max-width: 100%;
  }

  .swiper-wrapper {
    gap: 16%;
  }

  .swiper-slide {
    width: 42%;
  }

  .business-man {
    width: 40%;
  }

  .office-address {
    gap: 120px;
  }
}

@media (min-width: 2200px) {
  .business-man {
    width: 33%;
  }
}

.yellow-line-1 {
  background-image: linear-gradient(
    to bottom,
    var(--color-yellow),
    var(--color-yellow),
    var(--color-yellowLt)
  );
  border-radius: 0 0 30px 30px;
  transform: rotate(27deg);
}

.yellow-line-2 {
  background-image: linear-gradient(
    to bottom,
    var(--color-yellow),
    var(--color-yellow),
    var(--color-yellowLt)
  );
  border-radius: 30px 30px 0 0;
  transform: rotate(27deg);
}

@media (min-width: 1024px) and (max-width: 1279.98px) {
  .follow-ons {
    display: contents;
  }

  .follow-on-title {
    visibility: hidden;
  }

  .social-link-icons {
    display: flex;
    justify-content: end;
    margin-top: 24px;
  }

  .banner-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .banner-bottom h1 {
    text-align: center;
  }
}

footer a:hover {
  color: var(--color-yellowLt) !important;
}

@media (min-width: 461px) and (max-width: 767.98px) {
  .vision-c-layer {
    width: 141%;
  }

  .vision-section {
    margin-top: 40px;
    padding-bottom: 54px;
  }

  .vision-section h2 {
    color: #fff;
  }

  .vision-section p {
    margin-bottom: 60px;
  }
}

@media (min-width: 600px) and (max-width: 767.98px) {
  .vision-section p {
    margin-bottom: 90px;
  }
}

.service-banner-block {
  border: 8px solid #460060;
  border-left: 0;
  border-top: 0;
}

@keyframes fadeInLeftZoom {
  from {
    opacity: 0;
    transform: translateX(-40px) scale(1);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1.04);
  }
}

.fadeInLeftZoom {
  animation: fadeInLeftZoom 1s ease-out forwards;
}

.spinner-wrap {
  position: absolute;
  right: 15%;
  transform: scale(1.6);
}

.spinner-item {
  border: 1px solid rgb(72, 72, 72);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: zoom 2s linear 0.75s infinite;
}

.spinner-item--2 {
  animation-delay: 1.25s;
}

.spinner-item--3 {
  animation-delay: 1.75s;
}

@keyframes zoom {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }

  50% {
    opacity: 0.9;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.circles {
  background-image: linear-gradient(to right, #0095eb35, #ffffff0d, #ffffff02);
}

.animated-border {
  position: relative;
}

.animated-border::before,
.animated-border::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--color-yellow);
  top: 0;
  left: 0;
  transition: width 0.7s ease;
}

.animated-border::after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}

.group:hover .animated-border::before,
.group:hover .animated-border::after {
  width: 100%;
}

.animated-border .side-border {
  content: "";
  position: absolute;
  height: 0%;
  width: 2px;
  background: rgb(205, 205, 205);
  top: 0;
  left: 0;
  transition: height 0.7s ease;
}

.animated-border .side-border.right {
  left: auto;
  right: 0;
}

.group:hover .animated-border .side-border {
  height: 100%;
}

@media (max-width: 1023.98px) {
  .service-img-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    background-image: linear-gradient(to top, #111, #1111119f, #11111105);
  }

  .spinner-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    transform: scale(1.2);
  }

  .animated-border::before,
  .animated-border::after {
    height: 0px;
  }
}

@media (min-width: 1024px) {
  .service-img-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    width: 15%;
    height: 100%;
    background-image: linear-gradient(to left, #111, #1111119f, #11111105);
  }
}

/* #About styles */
.video-gradient {
  background-image: linear-gradient(to top, #000, #000000ca, #000);
}

.shadow-light {
  text-shadow: 2px 4px 8px #ffffff39;
}

.team-card {
  box-shadow: rgba(17, 12, 46, 0.1) 0px 24px 50px 0px;
  transition: 0.8s;
}

.team-card .pro-img-shadow {
  background: linear-gradient(to top, #000000, #00000067, #00000000);
}

.team-card .pro-card-content {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
}

.team-card .pro-card-content p,
.team-card .pro-card-content span {
  color: gray;
}

@media (min-width: 1800px) {
  .team-card-grid {
    grid-column: 4;
  }
}

/* Contact page styles */
.contact-wrapper {
  box-shadow: rgba(17, 12, 46, 0.1) 0px 24px 50px 0px;
}

.contact-left::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #000000, #0000004b, #00000000);
}

@media (max-width: 1023.98px) {
  .contact-mob-img {
    background-position: 50% 25%;
    padding-top: 160px;
    padding-bottom: 30px;
  }
}

/* _____________________________________________________________________ */

.banner-content-wrap::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-image: linear-gradient(to top, #000000d4, #0000008e, #00000000);
}

@media (max-width: 767.98px) {
  .card__footer {
    background-color: #fff;
  }
}

footer .office-address img {
  opacity: 0.8;
}

footer .office-address a:hover {
  color: #fff !important;
}

#mobileMenu {
  top: 83px !important;
  transition: 0.6s ease;
}

#mobileMenu.open {
  height: 532px;
}

#mobileMenu ul li a.active,
.mobileMenu-service li a.active {
  color: #cda35b !important;
  background-color: transparent;
}

#services-toggle.active {
  background-color: #0000001c;
}

@media (min-width: 1900px) {
  .banner-content .serv-img {
    height: 330px;
  }
}

#contactSection input:not(:placeholder-shown) + label,
#contactSection textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #172747;
}

body:has(.investment-readiness-block) .investment-readiness-li,
body:has(.accounting-solutions-block) .accounting-solutions-li,
body:has(.processes-block) .processes-li,
body:has(.risk-growth-block) .risk-growth-li,
body:has(.setting-business-block) .setting-business-li,
body:has(.regulatory-compliances-block) .regulatory-compliances-li,
body:has(.promoter-interests-block) .promoter-interests-li
{
  background-color: #d1d5db;
}

body:has(.services-top) #services-toggle, body:has(.about-top) .about-link {
  background-color: #e5e7eb;
}

