/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #07309b;
  --secondary: #333333;
  --new: #00c7ce;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Inter", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "DM Sans", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Animated Background Grid */
.grid-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 102, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.3;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

/* Market Chart Lines */
.chart-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--new), transparent);
  opacity: 0.4;
  animation: chartFlow 3s ease-in-out infinite;
}

.chart-line:nth-child(1) {
  top: 20%;
  animation-delay: 0s;
}

.chart-line:nth-child(2) {
  top: 40%;
  animation-delay: 0.5s;
}

.chart-line:nth-child(3) {
  top: 60%;
  animation-delay: 1s;
}

.chart-line:nth-child(4) {
  top: 80%;
  animation-delay: 1.5s;
}

@keyframes chartFlow {
  0% {
    transform: translateX(-100%);
  }

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

/* Center Content */
.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.logo-area {
  margin-bottom: 3rem;
}

.brand-name {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--new), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.5));
  }

  50% {
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8));
  }
}

.tagline {
  color: var(--white);
  font-size: 1.1rem;
  opacity: 0.8;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Trading Graph Visualization */
.trading-graph {
  width: 400px;
  height: 150px;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
}

.graph-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.graph-bar {
  position: absolute;
  bottom: 0;
  width: 8px;
  background: linear-gradient(to top, var(--primary), var(--new));
  border-radius: 4px 4px 0 0;
  animation: barGrow 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.graph-bar:nth-child(1) {
  left: 5%;
  height: 40%;
  animation-delay: 0s;
}

.graph-bar:nth-child(2) {
  left: 15%;
  height: 70%;
  animation-delay: 0.1s;
}

.graph-bar:nth-child(3) {
  left: 25%;
  height: 50%;
  animation-delay: 0.2s;
}

.graph-bar:nth-child(4) {
  left: 35%;
  height: 85%;
  animation-delay: 0.3s;
}

.graph-bar:nth-child(5) {
  left: 45%;
  height: 60%;
  animation-delay: 0.4s;
}

.graph-bar:nth-child(6) {
  left: 55%;
  height: 90%;
  animation-delay: 0.5s;
}

.graph-bar:nth-child(7) {
  left: 65%;
  height: 75%;
  animation-delay: 0.6s;
}

.graph-bar:nth-child(8) {
  left: 75%;
  height: 55%;
  animation-delay: 0.7s;
}

.graph-bar:nth-child(9) {
  left: 85%;
  height: 80%;
  animation-delay: 0.8s;
}

.graph-bar:nth-child(10) {
  left: 95%;
  height: 65%;
  animation-delay: 0.9s;
}

@keyframes barGrow {

  0%,
  100% {
    transform: scaleY(0.8);
    opacity: 0.6;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Counter */
.counter-section {
  margin: 2rem 0;
}

.counter-display {
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  font-family: "Courier New", monospace;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
  letter-spacing: 10px;
}

.counter-label {
  color: var(--new);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 0.5rem;
}

/* Market Indicators */
.market-indicators {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.indicator-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--new);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--new);
  font-weight: bold;
  animation: pulse 2s ease-in-out infinite;
}

.indicator:nth-child(1) .indicator-icon {
  animation-delay: 0s;
}

.indicator:nth-child(2) .indicator-icon {
  animation-delay: 0.3s;
}

.indicator:nth-child(3) .indicator-icon {
  animation-delay: 0.6s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
  }
}

.indicator-text {
  color: var(--white);
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Loading Status */
.loading-status {
  margin-top: 3rem;
  color: var(--new);
  font-size: 0.9rem;
  letter-spacing: 2px;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .brand-name {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 0.8rem;
  }

  .counter-display {
    font-size: 3rem;
  }

  .trading-graph {
    width: 300px;
    height: 120px;
  }

  .market-indicators {
    gap: 1rem;
  }
}

/* .preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
} */

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  /* background-color: var(--primary); */
  font-size: 1rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 1rem 1.75rem;
  border-radius: 5px;
  font-family: "Inter";
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 1rem 3.75rem 1rem 4.625rem;
  transition: 0.3s ease-in-out;
  background-color: var(--white);
  border: 1px solid rgb(255 255 255 / 9%);
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 0.9375rem;
  color: #1a4137;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 0;
  display: inline-block;
  font-family: "DM Sans";
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 920px;
}

.slideOne .themeBtn {
  font-family: "DM Sans";
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

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

.homeSlider .swiper-pagination-bullet {
  height: 1rem;
  width: 1rem;
  display: inline-block;
  margin: 0 0.75rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  position: relative;
  border-color: #07309b;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 1rem 0 1.25rem;
  color: var(--white);
  font-size: 5rem;
  line-height: 1;
  font-weight: 600;
  text-transform: capitalize;
}

.main-slider p {
  color: rgb(255 255 255 / 94%);
  line-height: 1.6;
  font-size: 1.25rem;
  width: 80%;
  margin: 0 0 1.75rem 0;
}

/* !MAIN HERO SLIDER CSS */

/* About Sec Css Start */
.themeBtn i {
  transform: rotate(-52deg);
  transition: 0.6s ease;
}

.form-inline .themeBtn {
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.8975rem 1.75rem;
  font-family: "DM Sans";
}

.slideOne h3 {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  letter-spacing: 1px;
  line-height: 1;
}

.subHead {
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  line-height: 1;
  color: #051b05;
}

.mainHead {
  font-size: 3.125rem;
  font-weight: bold;
  color: #051b05;
  letter-spacing: -2px;
  line-height: 1.1;
}

.about-content .mainHead {
  margin: 0.75rem 0;
}

.about-content p {
  font-size: 1.125rem;
  color: #595b62;
  width: 99%;
}

.about-content p+p {
  margin: 0.75rem 0 2rem;
}

.about-box {
  background-color: #f8f5f2;
  border-radius: 15px;
  padding: 2.375rem 1.875rem 2.75rem 1.875rem;
}

.about-box h5 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #07309b;
  font-family: "Inter";
}

.about-box p {
  line-height: 1.5;
  color: #595b62;
  border-top: 1px solid #d9d9d9;
  padding: 1.125rem 0 0 0;
  margin: 1.5rem 0 0 0;
}

.about-image {
  position: relative;
}

.aboutimg2 {
  position: absolute;
  left: 2.875rem;
  bottom: -5rem;
  border: 10px solid var(--white);
  border-radius: 23px;
  transform: rotate(-12deg);
}

.about-images .themeBtn {
  margin: 1.875rem 0 0 auto;
}

.news-box {
  border: 2px solid #122a86;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 0 25px rgba(18, 42, 134, 0.25);
  height: 100%;
}

.news-box .mainHead {
  margin-bottom: 0.6rem;
  font-size: 2.725rem;

}

.news-box ul li+li {
  margin-top: 0.5rem;
}

/* About Sec Css End  */

/* Future Sec Css Start */
.future-overlay {
  background: linear-gradient(183deg, #07309b, #021035);
  border-radius: 15px 0 0 15px;
  padding: 3.75rem 4.375rem 3.75rem 3.75rem;
}

.future-wrapp .mainHead {
  font-size: 3rem;
  color: #f8f5f2;
}

.future-main .mainHead {
  font-size: 3rem;
  color: #f8f5f2;
}

.future-items {
  display: flex;
  flex-flow: column wrap;
  max-height: 240px;
  gap: 2.0625rem 1.875rem;
  margin: 1.875rem 0 1.25rem;
  border-bottom: 1px solid #d9d9d9;
  padding: 0 0 2.5rem 0;
}

.future-items li a {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  background-color: rgb(229 229 229 / 20%);
  padding: 1rem 0px 1rem 1.25rem;
  border-radius: 5px;
  transition: 0.5s ease;
}

.future-items li a h5 {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: -1px;
  color: var(--white);
}

.future-items li a h5 span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #f8f5f2;
  font-family: "Inter";
  margin: 0.375rem 0 0 0;
}

.future-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.future-list li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #f8f5f2;
}

.future-sec {
  padding: 3rem 0 6rem 0;
}

.future-policy li a {
  font-size: 1.125rem;
  font-weight: 400;
  color: #f8f5f2;
}

.future-policy {
  margin: 1.5625rem 0 3.125rem;
}

.future-policy li {
  list-style: disc;
  color: #f8f5f2;
  font-size: 1.09rem;
}

.future-policy li+li {
  margin: 0.625rem 0;
}

.future-main {
  padding: 0 0 0 60px;
  border-left: 1px solid #d9d9d9;
  margin-left: 1rem;
}

.future-main .themeBtn {
  padding: 1.125rem 1.875rem;
  background-color: var(--white);
  letter-spacing: 1px;
  color: #1a4137;
}

.future-items li a:hover {
  transform: scale(0.95);
}

/* Future Sec Css End  */

/* Services Sec Css Start */
.services-heading .subHead {
  justify-content: center;
  margin: 0 0 0.6525rem 0;
}

.services-heading {
  text-align: center;
  margin: 0 0 3.125rem 0;
}

.services-sec {
  background: url(../images/servicesbg.webp) center/cover no-repeat;
}

.services-wrapp {
  border: 1px solid #d9d9d9;
  background-color: var(--white);
  border-radius: 15px;
  position: relative;
  z-index: 1;
  padding: 1.9375rem 1.875rem 2.5625rem 1.875rem;
  transition: 0.5s ease;
}

.services-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.services-img {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.services-sub {
  flex-shrink: 0;
  height: 5.25rem;
  width: 5.25rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: var(--primary);
}

.services-img::before {
  position: absolute;
  content: "";
  height: 180px;
  width: 250px;
  background-color: #07309b;
  z-index: -1;
  border-radius: 15px;
  right: -0.875rem;
  bottom: -0.875rem;
}

.services-sub img {
  filter: brightness(0) invert(1);
  transition: 0.6s ease;
}

.services-content h3 {
  font-size: 1.75rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #181818;
  letter-spacing: -1px;
  margin: 2rem 0 0;
  transition: 0.5s ease;
}

.services-content p {
  color: #595b62;
  line-height: 1.7;
  margin: 0.875rem 0 0.975rem;
  width: 98%;
  transition: 0.5s ease;
}

.services-content a {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #07309b;
}

.services-content a i {
  font-weight: 300;
  transform: rotate(-44deg);
  transition: 0.5s ease;
}

.servicesbg {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -1;
}

.servicesslider {
  margin: 0 -19rem 0 0;
}

.servicesslider .swiper-slide-active .services-wrapp {
  background: linear-gradient(183deg, #07309b, #021035);
}

.servicesslider .swiper-slide-active .services-content h3,
.servicesslider .swiper-slide-active .services-content p,
.servicesslider .swiper-slide-active .services-content a {
  color: var(--white);
}

.servicesslider .swiper-slide-active .services-sub,
.servicesslider .swiper-slide-active .services-img::before {
  background-color: var(--white);
}

.servicesslider .swiper-slide-active .servicesbg {
  opacity: 0;
}

.servicesslider .swiper-slide-active .services-sub img {
  filter: brightness(100%);
}

/* Services Sec Css End  */

/* Invest Sec Css Start */

.invest-top .subHead {
  justify-content: center;
  margin: 0 0 0.625rem 0;
}

.invest-top {
  text-align: center;
  margin: 0 0 3.75rem 0;
}

.invest-top .mainHead {
  width: 37%;
  margin: auto;
}

.invest-wrapp {
  text-align: center;
}

.invest-wrapp h5 {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #f8f5f2;
  font-family: "Inter";
  background-color: var(--primary);
  height: 2.5rem;
  width: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  margin: auto;
}

.invest-position {
  position: relative;
}

.investposition {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  bottom: -2rem;
  z-index: -1;
}

.invest-img {
  position: relative;
}

.invest-img::before {
  position: absolute;
  content: "";
  height: 110px;
  width: 112px;
  background-color: var(--primary);
  border-radius: 80px 80px 0px 80px;
  transform: rotate(45deg);
  z-index: -1;
  top: 2px;
  left: 0;
  right: 0;
  margin: auto;
}

.invest-content h4 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #1e1e1e;
  letter-spacing: -1px;
  margin: 3rem 0 0.255rem;
}

.invest-content p {
  color: #595b62;
  line-height: 1.7;
  width: 94%;
  margin: auto;
}

.invest-sub {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.invest-sub h5 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #181818;
  letter-spacing: -1px;
}

.invest-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 7.5rem 0 0 0;
}

.invest-flex .themeBtn {
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.invest-top h4 {
  margin-top: 2rem;
  font-style: italic;
  font-size: 2rem;
}

/* Invest Sec Css End  */

/* Client-Sec Start */

.client-sec {
  position: relative;
}

.client-top .subHead {
  justify-content: center;
}

.client-top {
  text-align: center;
  margin-bottom: 5.5rem;
}

.client-main {
  display: flex;
  gap: 50px;
}

.client-imag {
  flex-shrink: 0;
  position: relative;
}

.client-two {
  position: absolute;
  right: -1.5rem;
  bottom: 0;
  background-color: #07309b;
  height: 95px;
  width: 113px;
  border-radius: 15px 15px 0 15px;
  border: 5px solid white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-content p {
  color: #595b62;
  font-size: 22px;
  font-family: "Inter";
  width: 94%;
  line-height: 1.6;
}

.client-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #d9d9d9;
  margin-top: 36px;
  padding-top: 30px;
}

.client-bottom h5 {
  color: #333333;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -2px;
  font-family: "DM Sans";
  line-height: 1.1;
}

.client-bottom h5 span {
  display: block;
  color: #595b62;
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Inter";
  letter-spacing: 0;
  margin: 0.525rem 0 0;
}

.client-star {
  display: flex;
  align-items: center;
  background-color: #07309b;
  border-radius: 5px;
  padding: 11px 15px;
  gap: 3px;
}

.client-star li a i {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 3px;
}

.swiper.clientslider .swiper-button-prev {
  top: inherit;
  left: inherit;
  right: 19%;
  bottom: 62px;
}

.swiper.clientslider .swiper-button-next {
  right: 14%;
  top: inherit;
  bottom: 62px;
}

.swiper.clientslider .swiper-button-next,
.swiper.clientslider .swiper-button-prev {
  background: #07309b;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 5px;
  color: #fff;
  transition: 0.5s ease;
}

.swiper.clientslider .swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1rem;
  font-weight: bold;
}

.img-fluid.background {
  position: absolute;
  margin: auto;
  inset: 0;
  z-index: -1;
}

.client-two img {
  /* margin-top: 10px; */
}

/* Client-Sec End */

/* Roundup-Sec Start */
.roundup-sec {
  background-color: #f8f5f2;
}

.roundup-content .themeBtn {
  padding: 15px 30px;
  color: #fff;
  padding: 10px 20px;
  color: #fff;
  font-size: 18px;
  margin: auto;
}

.round-top {
  text-align: center;
  margin-bottom: 35px;
}

.round-top .subHead {
  justify-content: center;
  margin: 0 0 0.625rem 0;
}

.roundup-main {
  background-color: var(--white);
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  padding: 21px 21px;
  transition: 0.4s ease;
}

.roundlist {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1rem 0 5px;
}

.roundlist li a {
  color: rgb(26 65 55 / 57%);
  font-size: 15px;
  font-weight: 500;
  font-family: "Inter";
}

.roundup-content a {
  color: #1a4137;
  font-size: 1.5625rem;
  font-weight: bold;
  font-family: "DM Sans";
  letter-spacing: -1px;
  line-height: 1.5;
}

/* Roundup-Sec End */

/* Quarrions-Sec Start */

.quarrions-sec {
  background: linear-gradient(45deg, #07309b, #021035);
}

.quarrions-content {
  text-align: center;
}

.quarrions-content .mainHead {
  font-size: 2rem;
  font-weight: bold;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.quarrions-content p {
  color: #fff9f9;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Inter";
  line-height: 1.9;
  width: 60%;
  margin: auto;
}

.quarrions-content .themeBtn {
  background-color: var(--white);
  color: #2e3735;
  font-size: 15px;
  letter-spacing: 1px;
  margin: 1.5rem auto 0;
}

.quarrions-content .themeBtn i {
  transform: rotate(318deg);
  margin-left: 6px;
}

/* Quarrions-Sec End */

/* Footer Start */
footer {
  background: linear-gradient(41deg, rgb(7 45 145 / 95%), rgb(2 13 43 / 95%));
  padding: 110px 0 0;
  position: relative;
}

p.footer-para {
  color: #c9cdcc;
  font-size: 1rem;
  font-family: "Inter";
  line-height: 1.8;
  width: 86%;
  margin: 15px 0 21px;
}

.footer-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon li a i {
  height: 2.5rem;
  width: 2.5rem;
  background-color: var(--white);
  border-radius: 20px;
  color: #062578;
  place-content: center;
  text-align: center;
  transition: 0.5s ease;
  display: flex;
  align-items: center;
}

footer h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "DM Sans";
  display: flex;
  align-items: center;
  gap: 11px;
  letter-spacing: -2px;
  line-height: 1.2;
  margin-bottom: 1.275rem;
}

.quicklist li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c9cdcc;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Inter";
  transition: 0.5s ease;
}

.quicklist li a i {
  color: var(--white);
}

.quicklist li+li {
  margin: 1.5rem 0 0;
}

footer h4 {
  color: #c9cdcc;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  border-bottom: 2px solid #42625a;
  padding-bottom: 22px;
  margin-bottom: 20px;
  font-family: "Inter";
}

footer h4 span {
  display: block;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
}

footer h6 {
  color: #c9cdcc;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Inter";
  line-height: 1.8;
}

footer h6 span {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.footerform {
  position: relative;
}

.footerform .form-control {
  border: 1px solid #728d86;
  background: transparent;
  height: 60px;
  border-radius: 15px;
  padding-left: 24px;
  color: #b9bbc7;
  font-size: 1rem;
  font-weight: 400;
  box-shadow: unset;
  outline: unset;
  margin: 9px 0 25px;
}

.footerform .form-control::placeholder {
  color: #b9bbc7;
  font-size: 1rem;
  font-weight: 400;
}

.footerform .plan-paper {
  position: absolute;
  top: 16px;
  margin: auto;
  right: 1.5rem;
  background-color: var(--white);
  height: 45px;
  width: 45px;
  border-radius: 8px;
  color: #181818;
  place-content: center;
  text-align: center;
  display: flex;
  align-items: center;
}

footer h5 {
  display: flex;
  gap: 9px;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  align-items: baseline;
}

.row.copy-right {
  background-color: #03133c;
  margin-top: 121px;
  padding: 25px 0;
  text-align: center;
}

.row.copy-right p {
  color: #acb3b3;
  font-size: 1rem;
  font-family: "Inter";
  line-height: 1.8;
  margin: 0;
}

.img-fluid.left-arrow {
  position: absolute;
  left: 0;
  bottom: 5rem;
}

.img-fluid.right-arrow {
  position: absolute;
  top: 0;
  right: -2rem;
}

/* Footer End */

/* Marquee Sec Css Start */
/* Vertical Marquee Animation */
@keyframes marquee-vertical {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

.marquee-items li a i {
  margin-top: 1rem;
}

/* Left Vertical Strip */
.marquee-vertical {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  background: #111;
  overflow: hidden;
}

/* Container moving vertically */
.marquee-items {
  display: flex;
  flex-direction: column;
  animation: marquee-vertical 20s linear infinite;
  list-style: none;
  gap: 0;
}

/* Each item vertical text */
.marquee-items li {
  padding: 50px 0;
  flex-shrink: 0;
}

.marquee-items li a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #07309b;
  font-size: 35px;
  font-weight: bold;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 32px;
  text-decoration: none;
  white-space: nowrap;
}

/* Icon rotate nahi hoga */
.marquee-items li i {
  transform: rotate(180deg);
  color: #fff;
}

/* Vertical movement - perfect seamless loop */
@keyframes marquee-vertical {
  0% {
    transform: translateY(0);
  }

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

/* Marquee Sec Css End */

/* Growth Sec Css Start */

.growth-sec {
  background: url(../images/growthbg.webp) center/cover no-repeat;
  overflow: hidden;
  padding: 17rem 0 4.375rem;
}

.growth-wrapp .mainHead {
  color: #f8f5f2;
  font-size: 4.125rem;
  line-height: 1;
  width: 91%;
}

.growth-wrapp .subHead {
  transition: unset;
  color: var(--white);
  margin: 0 0 0.625rem 0;
}

.growth-wrapp .subHead img {
  filter: brightness(0) invert(1);
}

.growth-video {
  border-radius: 50px;
  background-color: #181818;
  width: fit-content;
  text-align: center;
  /* margin: auto; */
  padding: 3.125rem 2.375rem 3rem 2.375rem;
  transition: 0.6s ease;
}

.growth-video p {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #f8f5f2;
  margin-top: 0.625rem;
}

.growth-video a i {
  font-size: 3rem;
  transform: rotate(-55deg);
  font-weight: 300;
  color: var(--white);
  transition: 0.5s ease;
}

.prar {
  font-size: 1.125rem;
  color: #f7f7f7;
}

.growth-sec .row+.row {
  padding: 6rem 0 0 0;
}

.growth-box h5 {
  font-size: 4.375rem;
  font-weight: 400;
  color: var(--white);
  font-family: "Inter";
}

.growth-box h5 span {
  display: block;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #f8f5f2;
}

.growth-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.growth-box h4 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #f8f5f2;
  letter-spacing: -1px;
}

.growth-box p {
  color: #f8f5f2;
  line-height: 1.6;
  width: 80%;
}

.growth-box {
  border-left: 5px solid #fff;
  padding: 0 0 0 2.1875rem;
}

.marquee li a i {
  color: var(--white);
  font-weight: 400;
}

/* Growth Sec Css End  */

/* Hover Effect Css Start */

.footer-icon li a:hover i {
  transform: scale(1.09);
}

.quicklist li:hover a i {
  transform: rotate(65deg);
}

.quicklist li a img {
  transition: 0.5s ease;
}

.quicklist li a:hover img {
  transform: rotate(45deg);
}

.round-imag {
  overflow: hidden;
}

.round-imag img {
  transition: 0.5s ease;
}

.round-imag:hover img {
  transform: scale(1.09);
}

.roundup-main:hover {
  transform: translateY(-10px);
}

.growth-video:hover {
  transform: scale(1.09);
}

.growth-video:hover a i {
  transform: rotate(89deg);
}

.themeBtn::before {
  position: absolute;
  content: "";
  inset: 0;
  background: var(--primary);
  z-index: -2;
}

.themeBtn::after {
  position: absolute;
  content: "";
  background: var(--black);
  width: 100%;
  top: 100%;
  left: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 0 0 1rem #ffff inset, 0 0 0 2rem #cccc inset;
  transition: 1.9s ease;
}

.themeBtn:hover::after {
  top: -30%;
  left: 0%;
  transform: scale(3);
}

.themeBtn:hover {
  color: var(--white);
}

.slideOne .themeBtn::after {
  background-color: var(--white);
}

.slideOne .themeBtn:hover {
  color: var(--primary);
}

.future-main .themeBtn::before {
  background-color: transparent;
}

.quarrions-content .themeBtn::before {
  background-color: var(--white);
}

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

.services-wrapp:hover {
  transform: scale(0.97);
}

.future-main .themeBtn::after {
  background: var(--white);
  width: 0;
  top: 0;
  left: 0;
  aspect-ratio: 0;
  border-radius: 0;
  box-sizing: unset;
}

.future-main .themeBtn:hover {
  color: var(--primary);
}

.future-main .themeBtn:hover {
  transform: scale(0.9);
}

/* Hover Effect Css End  */
.innerbanner .overlay {
  position: absolute;
  display: flex;
  align-items: center;
  inset: 0;
  justify-content: center;
}

.innerbanner {
  position: relative;
}

.innerbanner .overlay h2 {
  font-size: 5rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
}

/* Teams Page Css Start */

section.teams-sec {
  background-color: #f8f5f2;
  padding-bottom: 4rem;
}

.teams-imag img {
  width: 100%;
}

.teams-content h6 {
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #1a4137;
  margin: 0.875rem 0 1rem;
  font-family: "Inter";
}

.teams-content h4 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #1e1e1e;
  letter-spacing: -1px;
}

.teams-content p {
  color: #595b62;
  line-height: 1.7;
  margin: 0.625rem 0 1rem 0;
}

.teams-social li a i {
  height: 2.5rem;
  width: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background: linear-gradient(183deg, #07309b, #021035);
  color: var(--white);
}

.teams-social {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.teams-wrapp {
  background-color: var(--white);
  padding: 1.3125rem 1.3125rem 3.1875rem 1.3125rem;
  border-radius: 15px;
  border: 1px solid #d9d9d9;
  margin: 0 0 3rem 0;
}

.teams-top {
  text-align: center;
  margin: 0 0 3.125rem 0;
}

.teams-top .subHead {
  justify-content: center;
  margin: 0 0 0.625rem 0;
}

/* Teams Page Css End  */

/* Blog Page Css Start */

.blog-sec {
  background-color: #f8f5f2;
  padding: 6rem 0 4rem;
}

.blog-top {
  margin: 0 0 2.5rem 0;
  text-align: center;
}

.blog-top .subHead {
  justify-content: center;
  margin: 0 0 0.625rem 0;
  text-transform: uppercase;
}

.blog-top .mainHead {
  width: 40%;
  margin: 0 auto 0;
  font-size: 3rem;
}

.blog-content h6 {
  font-size: 25px;
  font-weight: bold;
  text-transform: capitalize;
  color: #1a4137;
  letter-spacing: -1px;
  margin: 1rem 0 0.875rem;
}

.blog-imag img {
  width: 100%;
}

.blog-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-list li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  color: rgb(26 65 55 / 57%);
}

.blog-content p {
  color: #595b62;
  line-height: 1.7;
  width: 90%;
  margin: 0.825rem 0 0.875rem;
}

.blog-overlay {
  background-color: var(--white);
  padding: 21px 21px 33px 21px;
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  margin-bottom: 2.5rem;
}

.blog-main .subHead {
  margin-bottom: 1rem;
  font-family: "DM Sans";
  letter-spacing: -2px;
  color: #051b05;
  font-size: 1.5rem;
}

form.blog-form .form-control {
  border: 1px solid #728d86;
  background: transparent;
  outline: unset;
  box-shadow: unset;
  border-radius: 15px;
  height: 3.75rem;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #b9bbc7;
}

form.blog-form .form-control::placeholder {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #b9bbc7;
}

form.blog-form .form-group {
  position: relative;
}

form.blog-form .form-group a {
  position: absolute;
  height: fit-content;
  width: fit-content;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 1.875rem;
  color: #b9bbc7;
  font-size: 1.25rem;
}

.blog-overlay .themeBtn {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 2.1875rem;
}

.redmore {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #595b62;
  margin: 1rem 0 0;
  display: block;
}

.blog-main .blog-overlay {
  padding-bottom: 8px;
}

.blog-sec .round-content {
  margin-bottom: 2rem;
}

/* Blog Page Css End  */

/* Inner Pages Start */

/* Contact-Inner Start */

.contact-inner {
  background-color: #f7f7f7;
  padding: 40px 36px 31px 40px;
}

.contact-inner h2 {
  color: #1a4137;
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: "DM Sans";
  line-height: 1.2;
  margin-bottom: 3.125rem;
}

.contactfrom label {
  color: #1a4137;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: -1px;
  font-family: "DM Sans";
  line-height: 1.9;
}

.contactfrom .form-control {
  border: 1px solid #728d86;
  border-radius: 15px;
  box-shadow: unset;
  outline: unset;
  padding-left: 24px;
  height: 60px;
  color: #b9bbc7;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Inter";
}

.contactfrom textarea.form-control {
  height: 88px;
  margin-bottom: 30px;
}

.contactfrom .form-control::placeholder {
  color: #b9bbc7;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Inter";
}

.contactfrom button {
  border: none;
  padding: 16px 28px 16px 51px;
  margin: 0;
  gap: 26px;
}

.contact-inner-main {
  background-color: #0f3d6b;
  padding: 114px 96px 154px 98px;
  height: 100%;
}

.contact-inner-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "DM Sans";
  display: flex;
  align-items: center;
  gap: 11px;
  letter-spacing: -2px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-inner-content h4 {
  color: #c9cdcc;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Inter";
  line-height: 1.8;
  border-bottom: 2px solid #42625a;
  padding-bottom: 22px;
  margin-bottom: 20px;
}

.contact-inner-content h4 span {
  display: block;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-inner-content h6 {
  color: #c9cdcc;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Inter";
  line-height: 1.8;
}

.contact-inner-content h6 span {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.2px;
  width: 53%;
}

.contact-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 49px;
}

.contact-icon li a i {
  height: 2.5rem;
  width: 2.5rem;
  background-color: var(--white);
  border-radius: 20px;
  color: #062578;
  place-content: center;
  display: grid;
  transition: 0.5s ease;
}

/* Contact-Inner End */

/* Map-Inner -Sec Start */
.map-inner-sec {
  padding: 0;
  position: relative;
}

.map-inner-sec::before {
  background: linear-gradient(270deg,
      rgb(12 51 155 / 0%),
      rgb(29 61 147 / 80%));
  position: absolute;
  content: "";
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* <-- Important */
}

.map-inner-sec iframe {
  width: 100%;
  height: 467px;
  display: block;
  position: relative;
  z-index: 0;
  /* Layer below the gradient */
}

/* Map-Inner -Sec End */

/* News-Inner-Page-Start */
.round-inner-top {
  margin-bottom: 36px;
}

.round-inner-top .subHead {
  margin-bottom: 8px;
}

.round-inner-top.round-two .mainHead {
  text-align: center;
  margin-bottom: 50px;
}

.round-inner-top.round-two .subHead {
  justify-content: center;
}

.round-main {
  padding: 21px 21px;
  border: 1px solid #d9d9d9;
  background-color: #ffffff;
  border-radius: 15px;
  margin-bottom: 1.875rem;
}

.round-content.round-two p {
  color: #7d938d;
  font-size: 1.125rem;
  font-family: "Inter";
  line-height: 2;
  width: 83%;
}

.round-content.round-two h3 {
  margin: 8px 0 1rem 0;
  font-size: 25px;
  font-weight: bold;
  text-transform: capitalize;
  color: #1a4137;
  letter-spacing: -1px;
}

section.round-inner-sec {
  background-color: #f8f5f2;
  padding-bottom: 2rem;
}

section.roundup-inner-sec {
  background-color: #f8f5f2;
  padding-top: 0;
}

/* News-Inner-Page-End */

/* Portfolio-Inner-Page-Start */
.portfolio-inner-sec {
  background-color: #f8f5f2;
}

.portfolio-inner-top .subHead {
  justify-content: center;
  margin-bottom: 8px;
}

.portfolio-inner-top {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio-main {
  background-color: var(--white);
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  padding: 21px 21px 16px;
  margin-bottom: 30px;
}

.portfolio-content h3 {
  color: #1a4137;
  font-size: 1.5625rem;
  font-weight: bold;
  font-family: "DM Sans";
  letter-spacing: -1px;
  line-height: 1.5;
  text-align: center;
  margin-top: 44px;
}

/* Portfolio-Inner-Page-End */

/* Service-Inner-Page-Start */
.invest-sec.inner-page {
  background-color: #f8f5f2;
  z-index: 1;
}

.services-sec.inner-page {
  padding: 100px 160px;
}



/* Service-Inner-Page-End */

/* Inner Pages End */

section.about-sec.inner-page {
  padding-bottom: 4rem;
}

section.client-sec.inner-page .client-top .subHead {
  margin: 0 0 0.625em 0;
}

.contact-icon li a:hover i {
  transform: scale(1.09);
}

.round-top .mainHead {
  width: 42%;
  margin: auto;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}

.growth-wrapp {
  margin-top: -8rem;
}

.growth-flex::before {
  position: absolute;
  content: "";
  background: rgb(248 245 242 / 26%);
  width: 100%;
  height: 1px;
  top: -27px;
}

.new-section h2 {
  width: 54%;
  /* margin: 0 auto; */
  font-size: 38px;
  /* display: flex; */
  font-weight: 600;
}

.lo-image {
  border-radius: 20px;
}

/* Risk control start */
section.risk-control {
  padding: 5rem 0 0;
}

.risk-img {
  position: relative;
}

.risk-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 63%;
  margin: auto;
  display: grid;
  place-content: center;
  list-style: disc;
}

.risk-control .col-md-3 {
  margin-bottom: 60px;
}

.risk-list li {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}

.risk-head {
  text-align: center;
  margin-bottom: 4rem;
}

.risk-head .subHead {
  justify-content: center;
  margin-bottom: 1rem;
}

body.risk-body section.quarrions-sec {
  display: none;
}

.round-content.round-two a {
  text-decoration: underline !important;
  font-size: 1.6rem;
  color: #1a4137;
}

figure.round-imag img {
  width: 100%;
}

.round-content.round-two p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Risk control end */

/* Brand section */

.brand-logo {
  margin-top: 0rem;
  background-color: #f8f9fa;
}

.logo-box {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 180px;
}

.logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.logo-box svg,
.logo-box img {
  width: 140px;
}