:root {
  --rv-primary: #2c2d75; /* Deep navy from main text */
  --rv-primary-light: #c3c9d0; /* Soft highlight gray */
  --rv-bg-primary: #262c38; /* Dark background tone */

  --rv-secondary: #139cd7; /* Medium blue from logo stroke */
  --rv-secondary-light: #7ed7f0; /* Aqua blue from left W */
  --rv-bg-secondary: #262c38; /* Consistent dark bg */

  --rv-white: #ffffff;
  --rv-black: #000000;
  --rv-gray: #8a8a8a; /* neutral gray */

  --rv-font: "poppins" !important;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "poppins" !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}
p {
  color: #787878;
  font-size: 16px;
}

.main_heading h5 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: var(--rv-primary);
}
.main_heading h1 {
  font-weight: 700;
}
.main_section {
  padding: 80px 0;
}

/* -------------------------
   GLOBAL BUTTON BASE
-------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 12px 28px;
  border-radius: 14px;

  font-family: var(--rv-font);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;

  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
}

/* -------------------------
   PRIMARY BUTTON
-------------------------- */
.btn-primary {
  background: var(--rv-primary);
  color: var(--rv-white);
  box-shadow: 0 4px 12px rgba(44, 45, 117, 0.25);
}

.btn-primary:hover {
  background: var(--rv-secondary);
  box-shadow: 0 6px 16px rgba(19, 156, 215, 0.35);
  transform: translateY(-2px);
}

/* -------------------------
   SECONDARY BUTTON
-------------------------- */
.btn-secondary {
  background: var(--rv-secondary);
  color: var(--rv-white);
  box-shadow: 0 4px 12px rgba(19, 156, 215, 0.25);
}

.btn-secondary:hover {
  background: var(--rv-secondary-light);
  box-shadow: 0 6px 16px rgba(126, 215, 240, 0.35);
  transform: translateY(-2px);
}

/* -------------------------
   OUTLINE BUTTON
-------------------------- */
.btn-outline {
  background: transparent;
  border: 2px solid var(--rv-primary);
  color: var(--rv-primary);
}

.btn-outline:hover {
  background: var(--rv-primary);
  color: var(--rv-white);
}

/* -------------------------
   WHITE BUTTON
-------------------------- */
.btn-white {
  background: var(--rv-white);
  color: var(--rv-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  background: var(--rv-primary-light);
}

/* -------------------------
   DISABLED STATE
-------------------------- */
.btn.disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* -------------------------
   BUTTON SIZES
-------------------------- */
.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 17px;
}

.dark {
  color: var(--rv-secondary);
}
.primary {
  color: var(--rv-primary);
}
.secondary {
  color: var(--rv-secondary);
}
.dark_bg {
  background-color: #242424;
}
.primary_bg {
  background-color: var(--rv-primary);
}
.secondary_bg {
  background-color: var(--rv-secondary);
}
.dark_bg h1,
.dark_bg h2,
.dark_bg h3,
.dark_bg h4,
.dark_bg h5,
.dark_bg h6 {
  color: #fff !important;
}
.dark_bg p,
.dark_bg a,
.dark_bg li,
.dark_bg span {
  color: #fff !important;
}

.navbar.navbar-expand-lg {
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  background-color: #fff0 !important;
  padding: 5px 0;
}
ul.dropdown-menu {
  padding: 5px 10px;
}
.dropdown-item {
  min-width: 100%;
  width: auto;
}
.dropdown-menu li {
  padding: 5px 0;
}
.main_banner {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  height: 800px;
}
.main_banner::after {
  /*content: "";*/
  /*position: absolute;*/
  /*background-image: url(../images/shape1.png);*/
  /*background-repeat: no-repeat;*/
  /*background-position: left;*/
  /*background-size: contain;*/
  /*width: 1000px;*/
  /*height: 100%;*/
  /*top: 122px;*/
  /*left: 0px;*/
}

.main_banner::before {
  /*content: "";*/
  /*position: absolute;*/
  /*background-image: url(../images/img1.png);*/
  /*background-repeat: no-repeat;*/
  /*background-position: right;*/
  /*background-size: contain;*/
  /*width: 1000px;*/
  /*height: 100%;*/
  /*top: 0px;*/
  /*right: 0px;*/
  /*transform: rotate(0deg);*/
}

.main_banner .banner_content {
  padding-top: 30px;
}
.main_banner .banner_content h1 {
  font-weight: 700;
  color: #fff;
}
.bg-colors {
  background: linear-gradient(0deg, #cee9ff, transparent);
  position: relative;
}
.bg-colors::before {
  content: "";
  background-image: url(../images/Group.png);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}

.investor_corner {
  position: relative;
}
.investor_corner::after {
  /*content: "";*/
  /*position: absolute;*/
  /*background-image: url(../images/shape2.png);*/
  /*background-repeat: no-repeat;*/
  /*background-position: top;*/
  /*background-size:cover;*/
  /*width: 100%;*/
  /*height: 100%;*/
  /*top: 0px;*/
  /*left: 0px;*/
}
.investor_corner .item {
  margin: 15px 10px;
}
.investor_box {
  display: block;
  padding: 10px 20px;
  text-align: center;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 7px 1px 0px rgba(0, 0, 0, 0.51);
  margin-bottom: 30px;
}
.investor_box:hover {
  background-color: var(--rv-primary);
  text-decoration: none;
  box-shadow: 0 0 15px 2px rgba(229, 72, 44, 0.2);
}
.investor_box img {
  width: 60px !important;
  margin: 0 auto;
  padding: 6px;
}
.investor_box h5 {
  font-weight: 400;
  font-size: 18px;
  padding: 10px 0 5px 0;
}
.investor_box h5 strong {
  font-weight: 800;
}
.main_heading h2 {
  font-weight: 600;
}
.investor_box:hover h5,
.investor_box:hover p {
  color: #fff;
}
.investor_box p {
  font-size: 16px;
  line-height: 20px;
}

.why_chooseus {
  position: relative;
}
.why_chooseus::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon/app-bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: -20px;
  left: 0px;
}
.why_chooseus::before {
  content: "";
  position: absolute;
  /*background-image: url(../images/line_shape.png);*/
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 78%;
  height: 70%;
  top: 37%;
  left: 11%;
  opacity: 0.7;
}
.why_chooseus .main_heading {
  margin-bottom: 15px;
}
.hexa_box {
  display: block;
  width: 220px;
  height: 220px;
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.hexa_box.hexa_box1 {
  margin-right: 0;
}
.hexa_box.hexa_box2 {
  margin-right: 10px;
}
.hexa_box.hexa_box4 {
  margin-left: 0;
}
/*.hexa_box::before {
    content: "";
    position: absolute;
    border: 85px solid transparent;
    border-top: none;
    border-bottom: 40px solid #fff;
    top: -40px;
    left: 0;
    transition: all 0.2s ease-in-out;
}
.hexa_box::after {
    content: "";
    position: absolute;
    border: 85px solid transparent;
    border-bottom: none;
    border-top: 40px solid #fff;
    bottom: -40px;
    left: 0;
    transition: all 0.2s ease-in-out;
}*/
.hexa_box::before {
  content: "";
  position: absolute;
  background-image: url(../images/hexa_shape1.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hexa_box::after {
  content: "";
  position: absolute;
  background-image: url(../images/hexa_shape2.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hexa_box .icon {
  position: relative;
  z-index: 999;
  padding-top: 52px;
}
.hexa_box .icon img {
  width: 65px;
}
.hexa_box h5 {
  position: relative;
  z-index: 999;
  font-weight: 700;
  font-size: 17px;
  line-height: 18px;
  padding-top: 5px;
}

.service_box {
  background-color: #fff;
  text-decoration: none;
  box-shadow: 0 0 15px 2px rgb(0 0 0 / 20%);
  border-radius: 10px;
  padding: 25px 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}
.service_box:hover {
  background-color: var(--rv-primary);
  transition: all 0.3s ease-in-out;
  transform: translateY(-10px);
}
.main_section .col-md-3 {
  padding: 0 10px;
}
.service_box .icon {
  background-color: var(--rv-primary);
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  text-align: center;
  padding: 15px;
  margin-bottom: 20px;
}
.service_box .icon img {
  width: 43px;
}
.service_box:hover .icon {
  background-color: var(--rv-primary);
}
.service_box .icon img:nth-child(2) {
  display: none;
}
.service_box:hover .icon img:nth-child(1) {
  /*display: none;*/
}
.service_box:hover .icon img:nth-child(2) {
  display: block;
}
.service_box h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  /*height: 48px;*/
}
.service_box:hover h5 {
  /*color: #fff;*/
  /*margin-top: -8px;*/
}
.service_box:hover h5,
.service_box:hover p,
.service_box:hover a {
  color: #fff !important;
  text-decoration: none;
}

.testimonial_card {
  /*background-color: #fff;*/
  /*border-radius: 15px;*/
  /*box-shadow: 0 0 12px 2px rgba(0,0,0,0.1);*/
  /*padding: 40px 40px 80px 40px;*/
  position: relative;
}
.testimonial_card::after {
  content: "";
  /*background-color: var(--rv-primary);*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  border-radius: 15px 15px 0 0;
}
.testimonials {
  text-align: center;
}
.testimonials p {
  color: #000;
  font-size: 17px;
}
.testimonials .images {
  width: 120px;
  margin: 0 auto;
  border: 3px solid #fff;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  background: #fff;
  height: 120px;
  padding-top: 25px;
}
.testimonials h3 {
}
.testimonials .client_info {
  margin-top: 20px;
}
.testimonials .client_info h4 {
  font-weight: 600;
  margin: 0;
}
.testimonials .client_info h5 {
  font-weight: 500;
}

#testimonialCar .owl-nav {
  position: relative;
  margin-top: -80px;
}
#testimonialCar .owl-nav button {
  background-color: var(--rv-primary) !important;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
#testimonialCar .owl-nav button span {
  color: #fff;
  font-size: 40px;
  font-weight: 200;
  line-height: 38px;
}
#testimonialCar .owl-nav .owl-prev {
  position: absolute;
  left: 20%;
}
#testimonialCar .owl-nav .owl-next {
  position: absolute;
  right: 20%;
}

.footer_top .navbar-brand {
  display: block;
}
.footer_main {
  padding: 80px 0 0 0;
  /*border-radius: 250px 250px 0 0;*/
}
.foot_widget .foot_title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.foot_widget ul {
  list-style-type: none;
  padding-left: 10px;
}
.foot_widget ul li a {
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  padding: 5px 0;
  display: block;
  transition: all 0.3s ease-in-out;
}
.foot_widget ul li a:hover {
  color: var(--rv-secondary) !important;
  padding-left: 5px;
  transition: all 0.3s ease-in-out;
}
.foot_widget a {
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease-in-out;
}
.foot_widget a:hover {
  color: var(--rv-secondary) !important;
  padding-left: 5px;
  transition: all 0.3s ease-in-out;
}
.footer_bottom {
  text-align: center;
  /*border-top: 1px solid #f96247;*/
  background: #121212;
  padding: 20px 0 10px 0;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-theme .owl-dots .owl-dot span {
  width: 34px;
  height: 3px;
  margin: 5px 7px;
  background: #a2a1a1;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: var(--rv-primary);
}

#captcha_code {
  width: 90px !important;
  height: 46px !important;
  border-radius: 5px;
}
.btnRefresh {
  height: 46px;
  border-radius: 5px;
  background-color: var(--rv-secondary);
  color: #fff;
}
#captcha {
  width: calc(100% - 185px);
  height: 46px;
  border-radius: 5px;
  border: 1px solid #f1f4f8;
  box-shadow: none;
  color: #161c2d !important;
}

.getintouch_section .main_heading h1 {
  margin-bottom: 5px;
  font-size: 42px;
}
.getintouch_section .main_heading h2 {
  font-size: 32px;
  font-weight: 700;
}

.newsletter {
  margin-bottom: 50px;
}
.newsletter h1 {
  font-weight: 700;
  font-size: 40px;
}
.newsletter_form .form-group {
  position: relative;
  width: 60%;
  margin: 20px auto;
}
.newsletter_form .form-group .form-control {
  border-radius: 40px;
  height: 60px;
}
.newsletter_form .form-group .btn-primary {
  position: absolute;
  right: 6px;
  top: 6px;
}

.sip_section {
  padding: 40px 0;
}

.sip_section .ui-slider.ui-slider-horizontal {
  border: 1px solid var(--rv-primary);
  border-radius: 30px;
  height: 10px;
}
.sip_section .ui-slider-handle {
  background: var(--rv-primary) !important;
  border-radius: 100%;
  width: 22px !important;
  height: 22px !important;
  border: 1px solid var(--rv-primary) !important;
  outline: none !important;
}
.sip_section .ui-slider-range {
  background-color: var(--rv-primary);
  border: 1px solid var(--rv-primary) !important;
  height: 12px !important;
  margin-top: -1px;
  border-radius: 30px 0 0 20px !important;
}
.navbar-light .navbar-nav .nav-link {
  color: var(--rv-bg-primary);
  font-size: 16px;
  font-weight: 600;
}
.main_banner .banner_content h1 span {
  color: var(--rv-primary);
  display: block;
}
.icon1-hover {
  display: none;
}
.investor_box:hover .icon1 {
  /*display: none;*/
}
.investor_box:hover .icon1-hover {
  display: block;
}
.aboutus_section {
  position: relative;
}
.aboutus_section::after {
  /*content: "";*/
  /*position: absolute;*/
  /*background-image: url(../images/aboutus_section.png);*/
  /*background-repeat: no-repeat;*/
  /*background-position: top;*/
  /*background-size: cover;*/
  /*width: 100%;*/
  /*height: 100%;*/
  /*top: 0px;*/
  /*left: 0px;*/
  content: "";
  position: absolute;
  background-image: url(../images/aboutus_section.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  width: 100%;
  height: 1040px;
  top: 0px;
  left: 0px;
  transform: rotate(0deg);
}
.why_chooseus ul {
  padding-left: 0px;
}
.why_chooseus ul li {
  list-style-type: none;
  float: left;
  margin-top: 22px;
}
.why_chooseus ul li img {
  /*float: left;*/
  width: 33px;
}
.why_chooseus ul li p span {
  display: block;
  color: #000;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}
.why_chooseus ul li p {
  width: calc(100% - 104px);
  float: right;
}
.why_chooseus ul li .why_chooseus_icon {
  float: left;
  width: 90px;
  text-align: center;
}
.service_section {
  position: relative;
  /*background: #f0eeee;*/
}
/*.service_section::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  background-image: url(../images/icon/service_section_shap.png);*/
/*  background-repeat: no-repeat;*/
/*  background-position: top right;*/
/*  background-size: auto;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  top: 0px;*/
/*  left: 0px;*/
/*}*/
/*.service_section::before */
/*{*/
/*    content: "";*/
/*    position: absolute;*/
/*    background-image: url(../images/icon/service_section_shap1.png);*/
/*    background-repeat: no-repeat;*/
/*    background-position: top left;*/
/*    background-size: auto;*/
/*    width: 78%;*/
/*    height: 70%;*/
/*    top: 0%;*/
/*    left: 0;*/
/*}*/
.service_section .service_box .icon {
  background-color: #fff;
  margin: 0;
}
.service_section .service_box {
  text-align: center;
}
.service_section .main_heading h5 {
  color: var(--rv-primary);
}
.testimonial_section {
  position: relative;
}
.testimonial_section::before {
  /*background: var(--rv-primary);*/
  content: "";
  position: absolute;
  background-image: url(../images/icon/testimonial-bg.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: auto;
  width: 78%;
  height: 70%;
  top: 0%;
  left: 0;
}

.testimonial_section .main_heading h2,
.testimonial_section .main_heading p {
  color: #000;
}
.form-group .form-control {
  border: 1px solid #cacacacc;
}
#blog h3 {
  line-height: 1.2;
  text-align: left;
  margin-top: 12px;
  font-weight: 500;
}
#blog .client_info ul {
  padding: 0px;
  text-align: left;
}
#blog .client_info ul li {
  display: inline-block;
  margin-right: 10px;
}
#blog .client_info ul li i {
  color: var(--rv-primary);
}
#blog ul li img {
  width: auto;
  float: left;
  margin-top: 6px;
}
.social {
  float: right;
  padding: 5px;
}
.social-footer {
  padding: 0px;
}
.social-footer li {
  display: inline-block;
}
.footer_bottom p {
  margin: 0;
}
.nav-top {
  background-color: var(--rv-primary);
}
.nav-top ul {
  padding-left: 0px;
  margin: 0;
}
.nav-top ul li {
  display: inline-block;
  margin-right: 5px;
  color: #fff;
  padding: 4px 0px;
}
.nav-top ul li img {
  padding-right: 3px;
  width: 22px;
}

.header .item {
  position: relative;
}
.header .owl-carousel .item {
  padding: 375px 0 !important;
}
.header .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
}
.header .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
  background: #00000088;
  right: 20px;
  top: 110px;
}
.banner-content {
  position: relative;
  z-index: 1;
}
.header .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid var(--rv-primary);
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  filter: drop-shadow(2px 4px 6px black);
}
.header .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}
.header .item .cover .header-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
}
.header .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}
.header .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.header .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.header .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.header .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
.header .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.header .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
.header .owl-nav .owl-prev:focus {
  outline: 0;
}
.header .owl-nav .owl-prev:hover {
  background: #000 !important;
}
.header .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.header .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
.header .owl-nav .owl-next:focus {
  outline: 0;
}
.header .owl-nav .owl-next:hover {
  background: #000 !important;
}
.header:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
.header:hover .owl-next {
  right: 0px;
  opacity: 1;
}
#frame1 {
  margin-top: -124px;
  display: block;
  padding: 17px;
  text-align: center;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 29px 49px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 35px;
  margin-bottom: 120px;
}

.about_section .icon-box::after {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}
.about_section .icon-box::before {
  bottom: 0;
  right: 0;
}
.about_section .icon-box::before,
.about_section .icon-box::after {
  content: "";
  position: absolute;
  width: calc(100% - 35px);
  height: calc(100% - 35px);
  border: 1px solid #e5e7e9;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  pointer-events: none;
  transition: 0.33s all ease;
}
.about_section .icon-box {
  text-align: center;
  cursor: default;
  max-width: 308px;
  padding: 67px 40px 61px;
}
.about_section .icon-box .box-icon {
  min-height: 46px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about_section .icon-box * + .box-.header {
  margin-top: 5px;
}
.about_section .icon-box .divider {
  max-width: 100%;
  margin: 13px auto;
  transition: 0.33s all ease;
}
.about_section .divider {
  width: 49px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
}
.about_section .bg-accent {
  background: #cca876;
  fill: #cca876;
}
.icon-box .box-body {
  max-width: 100%;
}
.icon-box .box-top,
.icon-box .box-body {
  position: relative;
  will-change: transform;
  transition: 0.33s all ease;
  -webkit-filter: blur(0);
}
.investor_box_mt {
  margin-top: 12rem;
}
.investor_corner ul {
  list-style-type: none;
  padding-left: 0px;
}
.investor_corner ul li {
  color: #787878;
}
.testimonials {
  background: #fff;
  padding: 20px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px 2px rgb(0 0 0 / 20%);
}
.testimonials:hover {
  transition: all 0.3s ease-in-out;
  background: var(--rv-primary);
}
.testimonials:hover h3,
.testimonials:hover p {
  color: #fff !important;
}
#blog .testimonials:hover h3,
#blog .testimonials:hover p {
  color: #000 !important;
}
.testimonials a {
  text-decoration: none;
}
.service_section .owl-carousel .owl-item img {
  width: 52px;
  margin-bottom: 10px;
}
.testimonials h3 {
  font-size: 20px;
  font-weight: 600;
}
.testimonials p {
  color: #000;
  font-size: 16px;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.service_section .testimonials p.view {
  color: #000;
  position: relative;
  margin-top: 10px;
}
.service_section .testimonials p.view i {
  top: 6px;
  right: 32px;
  position: absolute;
}
.foot_widget a i {
  color: #fff;
  margin-right: 5px;
  font-size: 25px;
  border: 1px solid #fff;
  border-radius: 100%;
  padding: 1px 5px;
}
.why_chooseus_icon span {
  background: var(--rv-primary);
  color: #fff;
  padding: 14px;
  border-radius: 66%;
  width: 80px;
  height: 80px;
  display: block;
  font-size: 33px;
}
#blog .testimonials .images {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0px;
  border: 0px solid #fff;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 20px;
  background: #fff;
  height: 120px;
  padding-top: 0px;
}
#blog .testimonials:hover {
  transition: all 0.3s ease-in-out;
  background: #fff;
}
.foot_widget ul li a img {
  width: 19px;
}
.investor_box .icon {
  background: var(--rv-primary);
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0px auto;
}
.investor_box .icon img {
  width: 100%;
}

/* TICKER */

.ticker_section {
  /* padding: 40px 0; */
  background: linear-gradient(0deg, #000, #000);
  /*border-bottom: 1px solid #f7f7f7;*/
}
.ticker_section .tickers {
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  align-content: center;
  align-content: center;
  margin: 0;
}
.tickers .ticker_item {
  position: relative;
  background-color: #fff;
  border-radius: 0px;
  /*width: 100%;*/
  padding: 0;
  padding: 0px 7px;
  display: flex;
  background: linear-gradient(0deg, #000, #000);
  /*height: 110px;*/
  text-align: center;
  border-right: 1px solid #fff;
  margin: 6px 9px;
}

.tickers .ticker_item:last-child {
  border: none;
}

.tickers .ticker_item .name {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
  color: #fff;
  margin-top: 5px;
  position: relative;
  z-index: 9;
  margin-left: -19px;
}
.tickers .ticker_item .price {
  display: block;
  font-size: 12px;
  padding-top: 6px;
  /*line-height: 18px;*/
  color: #fff;
  position: relative;
  z-index: 9;
  margin-left: 7px;
}
.tickers .ticker_item .difference_percent {
  position: relative;
  color: #2de55d;
  display: block;
  line-height: 18px;
  font-size: 12px;
  /*margin-top: 5px;*/
  background-color: #ffffff33;
  padding: 6px 8px;
  margin-left: 7px;
  border-radius: 2px;
  padding-right: 26px;
}
.tickers .ticker_item .difference_percent::after {
  content: "";
  position: absolute;
  background-image: url(../images/trend.png);
  font-size: 18px;
  /*bottom: 25px;*/
  bottom: 8px;
  background-size: contain;
  background-position: center;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  /*z-index: 0;*/
  right: 7px;
  /*opacity: 0.2;*/
  /*display: none;*/
}
.tickers .ticker_item .difference_percent.negative {
  color: #ff2d2d;
}
.tickers .ticker_item .difference_percent.negative::after {
  background-image: url(../images/decrease.png);
  /*bottom: 20px;*/
}

/* TICKER */

.contactdetails {
  display: flex;
  gap: 5px;
  /* justify-content: center; */
  /* align-items: center; */
}
.contactdetails i {
  margin-top: 3px;
}
.contactdetails a {
  color: #fff;
  margin: 0;
  padding: 0;
}
.social a {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 100%;
  padding: 2px 5px;
  margin: 2px;
}
.nav-top .contactdetails {
  margin: 0;
  padding: 5px 0px;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--rv-primary);
}

.blog-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.blog-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-details {
  padding: 15px;
}
.blog-details .the-title {
  font-size: 1.2rem;
  margin: 10px 0;
  font-weight: 600;
  color: #333;
}
.blog-details .content-preview {
  font-size: 0.9rem;
  color: #555;
}
.blog-meta {
  font-size: 0.8rem;
  color: #888;
}
.read-more {
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
}
.read-more:hover {
  text-decoration: underline;
}
.owl-carousel .item {
  padding: 10px;
}
@media (max-width: 768px) {
  .blog-thumb img {
    height: 150px;
  }
}

.single_choose_us_thumb img {
  width: 100%;
}

#tabs {
  border: none;
  background-color: transparent;
}
#tabs .ui-tabs-nav {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rv-primary);
  border-radius: 0;
  padding: 0;
}
#tabs .ui-tabs-nav .ui-tabs-tab {
  border: none;
  background: transparent;
  width: calc(33% - 2px);
}
#tabs .ui-tabs-nav .ui-tabs-tab a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 10px;
}
#tabs .ui-tabs-nav .ui-tabs-active {
  background-color: var(--rv-primary) !important;
}
#tabs .ui-tabs-nav .ui-tabs-active a {
  color: #fff;
}

.news-image img {
  width: 100%;
  max-height: 750px;
  object-fit: cover;
}
.news-content {
  padding: 30px;
}
#tabs-nav {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}
#tabs-nav .nav-link {
  background: #f1f1f1;
  border-radius: 5px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}
#tabs-nav .nav-link.active {
  background: var(--rv-primary);
  color: #fff;
}
.news-carousel .item {
  margin: 0 10px;
}
.news-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.news-box:hover {
  transform: translateY(-5px);
}
.news-box .inner-box {
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-box .image {
  position: relative;
}
.news-box .image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.news-box .date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--rv-primary);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}
.news-box .content {
  padding: 15px;
}
.news-box h4 {
  font-size: 16px;
  margin-bottom: 10px;
}
.news-box p {
  font-size: 16px;
  color: #555;
}
@media (max-width: 992px) {
  .news-image img {
    max-height: 300px;
    border-radius: 0;
  }
  .news-content {
    padding: 20px;
  }
}

.arnvalue {
  display: flex;
  text-align: center;
  justify-content: center;
}

.about-image img {
  float: right;
  height: 450px;
  margin-left: 30px;
}
.mv-icon {
  font-size: 60px;
}

.partner_section .owl-carousel .item {
  padding: 10px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 1px 2px 3px -2px;
}

.legal-links a {
  font-size: 14px;
}
/* Remove border from the last link */
.legal-links a:last-child {
  border-right: none;
  padding-right: 0; /* optional, to remove extra spacing */
}

.devlopby {
  display: flex;
  justify-content: end;
}



.bg_color {
  background-image: url("assets/images/call-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section_title h2 {
  font-size: 36px;
  font-weight: 700;
}
.section_title.white h2 {
  color: #fff;
  padding: 0;
  margin: 0;
}

.contact_info_row {
display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin-bottom: 0;
    position: relative;
}

.contact_card {
  background: #fff;
  box-shadow: 0px 0px 37px rgba(0, 0, 0, 0.2);
  padding: 10px 25px;
  border-radius: 8px;
  display: flex;
	width: 100%;
  align-items: center;
}
.contact_icon {
  height: 60px;
  width: 60px;
  background: var(--rv-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  margin-right: 20px;
}
.contact_content {
  width: 70%;
}
.contact_content h4 {
  font-size: 18px;
  color: #000;
  margin-bottom: 5px;
}

.contact_content h4 a {
  color: #000;
  text-decoration: none;
}

.contact_content span {
  color: var(--rv-primary);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}
.map_box iframe {
  margin: 10px;
  margin-bottom: 0;
}
/* Contact & Map Section */
.contact_section {
  margin-top: 50px;
}

.contact_box {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  box-shadow: 0px 0px 37px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.map_box {
  flex: 1 1 50%;
  min-width: 300px;
}

.form_box {
  flex: 1 1 50%;
  padding: 40px;
}

.form_box h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.form_box form input,
.form_box form textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.form_box form textarea {
  height: 180px;
}

.form_box form button {
  background: var(--rv-primary);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.form_box form button:hover {
  background: var(--rv-primary);
}

@media (max-width: 991px) {
  .contact_box {
    flex-direction: column;
  }

  .map_box iframe {
    height: 350px;
  }
}

.bg_color {
  background-image: url("assets/images/call-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.contact_section_title {
  /*padding: 80px 0;*/
  text-align: center;
  /*background: var(--rv-primary);*/
}

.contact_section_title h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
/* ----------------------------- */
/* Inner Banner Section */
/* ----------------------------- */
.top-banner-section {
    position: relative;
    background-size: cover;
    padding: 120px 0 80px;
    color: #fff;
    background-repeat: no-repeat;
    text-align: center;
    background-position: center top;
}
.top-banner-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
.top-banner-inner {
  position: relative;
  z-index: 0;
}
.breadcrumb-style {
  margin-bottom: 15px;
  font-size: 14px;
  color: #ddd;
}
.breadcrumb-style a {
  color: var(--rv-bg-primary);
  text-decoration: none;
}
.breadcrumb-style span {
  margin: 0 5px;
}
.top-banner-inner h1 {
  font-size: 48px;
  margin: 0;
}

/* ----------------------------- */
/* Post Detail Section */
/* ----------------------------- */
.post-detail h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.post-meta .badge {
  margin-right: 10px;
  font-size: 14px;
}
.view_img img {
  width: 100%;
  border-radius: 8px;
}
.info {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 20px;
}

/* ----------------------------- */
/* Social Share Buttons */
/* ----------------------------- */
.social-media-share h4 {
  font-size: 20px;
  margin-bottom: 15px;
}
.social-list {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.social-list li {
  list-style: none;
}
.social-list li a,
.social-list li span {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: #f0f0f0;
  border-radius: 50%;
  color: #555;
  transition: all 0.3s ease;
  font-size: 16px;
}
.social-list li a:hover,
.social-list li span:hover {
  background: #007bff;
  color: #fff;
}

/* ----------------------------- */
/* Related Posts Sidebar */
/* ----------------------------- */
.related-section {
  margin-top: 20px;
}
.related-post {
  margin-bottom: 20px;
}
.related-post .related-thumb img {
  width: 100%;
  border-radius: 6px;
}
.related-post h5 {
  font-size: 16px;
  margin: 5px 0;
  line-height: 1.3;
}
.related-post span {
  font-size: 12px;
  color: #888;
}

/* ----------------------------- */
/* Blog Listing Section */
/* ----------------------------- */
.single-blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.single-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.single-blog-thumb img {
  width: 100%;
  display: block;
}
.single-blog-content {
  padding: 15px;
}
.blog-title {
  font-size: 18px;
  margin: 10px 0 0;
}
.meta-date {
  font-size: 12px;
  color: #888;
}
.blog-read-more {
  font-size: 14px;
  color: #007bff;
  margin-top: 5px;
}

/* ----------------------------- */
/* Responsive */
@media (max-width: 768px) {
  .top-banner-inner h1 {
    font-size: 32px;
  }
  .top-banner-section {
    padding: 80px 0 50px;
  }
  .post-detail h2 {
    font-size: 28px;
  }
  .blog-title {
    font-size: 16px;
  }
}

.changing-text {
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.temp_theme_flipbox_font {
  /* border: 1px solid var(--rv-secondary); */
  border-radius: 8px;
}
.flipbox .section_main_title h1 {
  color: #fff;
}
.flipbox .section_sub_title h6 {
  color: #fff;
}
.flipbox .section_title {
  margin-bottom: 30px;
}
.temp_theme_flipbox {
  perspective: 1000px;
  position: relative;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
	  margin-bottom: 40px;
  -webkit-transform-style: preserve-3d;
  z-index: 1;
}
.temp_theme_flipbox .temp_theme_flipbox_font,
.temp_theme_flipbox .temp_theme_flipbox_back {
  min-height: 350px;
}
.temp_theme_flipbox .temp_theme_flipbox_back::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent -80%, var(--rv-secondary));
  border-radius: 8px;
}
.icon {
  font-size: 45px;
  line-height: 45px;
}
.temp_theme_flipbox .temp_theme_flipbox_inner {
  text-align: center;
  padding: 0 25px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  perspective: inherit;
  -webkit-perspective: inherit;
  outline: transparent solid 1px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  z-index: 2;
}
.temp_theme_flipbox_icon {
  font-size: 45px;
  text-align: center;
  display: inline-block;
  color: #fff;
  overflow: hidden;
}
.temp_theme_flipbox_font .flipbox_desc p {
  color: #fff;
}
.temp_theme_flipbox .flipbox_title h3 {
  font-size: 22px;
  padding-bottom: 13px;
  text-transform: capitalize;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  color: #fff;
}
.temp_theme_flipbox .temp_theme_flipbox_back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 8px;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);  
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  border-radius: 8px;
}
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_button a {
  text-transform: capitalize;
  margin-top: 22px;
  background: #fff;
  color: var(--rv-secondary);
  display: inline-block;
  padding: 4px 25px;
  border-radius: 5px;
  border: 2px solid #fff;
  transition: 0.5s;
}
.temp_theme_flipbox_back .flipbox_desc p {
  color: #fff;
}
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_button a i {
  display: none;
}
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_title h3 {
  padding-bottom: 16px;
  padding-top: 0;
  color: #fff;
  margin-bottom: 0;
}
.temp_theme_flipbox .temp_theme_flipbox_font .flipbox_desc,
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_desc {
  color: #fff;
}

/* Flipbox Hover Css */
.temp_theme_flipbox:hover .temp_theme_flipbox_font {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}
.temp_theme_flipbox:hover .temp_theme_flipbox_back {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_button a:hover {
  color: #fff;
  border-color: var(--rv-secondary);
  background: var(--rv-secondary);
}

.pages .temp_theme_flipbox .temp_theme_flipbox_font .flipbox_title h3 {
  color: #444;
}
.pages .temp_theme_flipbox_font .flipbox_desc p {
  color: #666;
}

.temp_theme_flipbox_font .icon {
  color: #fff;
  font-size: 30px;
  line-height: 80px;
  height: 80px;
  width: 80px;
  border-radius: 33% 66% 70% 30%/49% 62% 38% 51% !important;
  display: inline-block;
}

.temp_theme_flipbox_font .icon img {
  border-radius: 33% 66% 70% 30%/49% 62% 38% 51% !important;
}

.temp_theme_flipbox_font {
  /* border: 1px solid var(--rv-primary); */
  border-radius: 8px;
}
.flipbox .section_main_title h1 {
  color: #fff;
}
.flipbox .section_sub_title h6 {
  color: #fff;
}
.flipbox .section_title {
  margin-bottom: 30px;
}
.temp_theme_flipbox {
  perspective: 1000px;
  position: relative;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  z-index: 1;
}
.temp_theme_flipbox .temp_theme_flipbox_font,
.temp_theme_flipbox .temp_theme_flipbox_back {
  height: auto;
  box-shadow: 0px 1px 12px 4px rgb(46 50 67);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: rotateX(0);
  -webkit-transform: rotateX(0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
  position: relative;
  background: linear-gradient(45deg, #2e6897, #0b112d);
}
.temp_theme_flipbox .temp_theme_flipbox_back::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent -80%, var(--rv-secondary));
}
.icon {
  font-size: 45px;
  line-height: 45px;
}
.temp_theme_flipbox .temp_theme_flipbox_inner {
  text-align: center;
  padding: 0 25px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  perspective: inherit;
  -webkit-perspective: inherit;
  outline: transparent solid 1px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  z-index: 2;
}
.temp_theme_flipbox_icon {
  font-size: 45px;
  text-align: center;
  display: inline-block;
  color: #fff;
  overflow: hidden;
}
.temp_theme_flipbox_font .flipbox_desc p {
  color: #fff;
}
.temp_theme_flipbox .flipbox_title h3 {
  font-size: 22px;
  padding-bottom: 13px;
  text-transform: capitalize;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  color: #fff;
}
.temp_theme_flipbox .temp_theme_flipbox_back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-transform-style: preserve-3d;
	  background-size: cover;
  transform-style: preserve-3d;
}
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_button a {
  text-transform: capitalize;
  margin-top: 22px;
  background: #fff;
  color: var(--rv-primary);
  display: inline-block;
  padding: 4px 25px;
  border-radius: 5px;
  border: 2px solid #fff;
  transition: 0.5s;
}
.temp_theme_flipbox_back .flipbox_desc p {
  color: #fff;
}
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_button a i {
  display: none;
}
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_title h3 {
  padding-bottom: 16px;
  padding-top: 0;
  color: #fff;
  margin-bottom: 0;
}
.temp_theme_flipbox .temp_theme_flipbox_font .flipbox_desc,
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_desc {
  color: #fff;
}

/* Flipbox Hover Css */
.temp_theme_flipbox:hover .temp_theme_flipbox_font {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}
.temp_theme_flipbox:hover .temp_theme_flipbox_back {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_button a:hover {
  color: #fff;
  border-color: var(--rv-secondary);
  background: var(--rv-secondary);
}

.pages .temp_theme_flipbox .temp_theme_flipbox_font .flipbox_title h3 {
  color: #444;
}
.pages .temp_theme_flipbox_font .flipbox_desc p {
  color: #666;
}
.temp_theme_flipbox_font .icon img {
  height: inherit;
  width: inherit;
  border-radius: 33% 66% 70% 30%/49% 62% 38% 51% !important;
  object-fit: cover;
}

.mb-20 {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .blog-area {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.blog-area .grb-btn {
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .blog-area-2 {
    padding-top: 60px;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .blog-area-3 {
    padding-top: 60px;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .blog-right {
    float: none;
  }
}

.blog-single {
  background: #ffffff;
  padding: 20px 20px;
  box-shadow: 0 10px 20px rgba(16, 0, 71, 0.1);
}
.blog-single:hover .blog-img img {
  transform: scale(1.1);
}

.blog-single.st-2 {
  background: #ffffff;
  padding: 0;
  box-shadow: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .blog-single.st-2 {
    box-shadow: 0 10px 20px rgba(16, 0, 71, 0.1);
  }
}
.blog-single.st-2:hover {
  box-shadow: 0 10px 20px rgba(16, 0, 71, 0.1);
}
.blog-single.st-2:hover .blog-img img {
  transform: scale(1.1);
}
.blog-single.st-2 .blog-img {
  margin-bottom: 15px;
  overflow: hidden;
}
.blog-single.st-2 .blog-img img {
  -webkit-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  -ms-transition: all 1s ease-out 0s;
  -o-transition: all 1s ease-out 0s;
  transition: all 1s ease-out 0s;
}
@media (max-width: 767px) {
  .blog-single.st-2 .blog-meta {
    padding-left: 0;
    margin-top: 10px;
    display: inline-block;
  }
}

.blog-img {
  margin-bottom: 18px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  -webkit-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  -ms-transition: all 1s ease-out 0s;
  -o-transition: all 1s ease-out 0s;
  transition: all 1s ease-out 0s;
}

.blog-content h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-content h4 {
    font-size: 17px;
    line-height: 24px;
  }
}
.blog-content h4 a:hover {
  color: #45be43;
}
.blog-content p {
  margin-bottom: 33px;
}

.blog-content.st-2 {
  padding: 0 20px;
  padding-bottom: 20px;
}
.blog-content.st-2 h4 {
  color: #8f98a8;
  margin-top: 22px;
  margin-bottom: 28px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-content.st-2 h4 {
    font-size: 17px;
    line-height: 24px;
  }
}
.blog-content.st-2 h4 a:hover {
  color: #042132;
}
.blog-content.st-2 p {
  margin-bottom: 33px;
}
.blog-content.st-2 .read-btn {
  color: #8500d1;
}

.read-btn {
  font-weight: 700;
  font-size: 15px;
  color: #042132;
  display: inline-block;
  margin-bottom: 5px;
}
.read-btn:hover {
  color: #45be43;
}

.blog-date {
  width: 70px;
  height: 85px;
  background: #ffc400;
  border-radius: 0 10px 0 10px;
  text-align: center;
  padding: 12px 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}
.blog-date i {
  display: block;
  font-size: 20px;
  color: #042132;
}
.blog-date span {
  font-size: 20px;
  line-height: 25px;
  color: #042132;
  display: inline-block;
  margin-top: 3px;
}
.blog-date p {
  font-size: 13px;
  font-weight: 400;
  color: #042132;
  line-height: 1;
}

.blog-date-shape {
  position: absolute;
  z-index: -1;
  right: -1px;
  top: 0;
}

.blog-date.st-2 {
  width: 70px;
  height: 70px;
  background: #8500d1;
  border-radius: 3px;
  padding: 12px 0;
  top: 203px;
  right: auto;
  left: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-date.st-2 {
    top: 120px;
  }
}
@media (max-width: 767px) {
  .blog-date.st-2 {
    top: 0;
    left: 0;
  }
}
.blog-date.st-2 i {
  display: none;
}
.blog-date.st-2 span {
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
  display: inline-block;
  margin-top: 3px;
}
.blog-date.st-2 p {
  color: #ffffff;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-meta {
    padding-left: 0;
  }
}
.blog-meta li {
  margin-right: 30px;
  display: inline-block;
}
.blog-meta li:last-child {
  margin-right: 0;
}
.blog-meta li i {
  font-size: 13px;
  color: #8500d1;
  margin-right: 5px;
}
.blog-meta li span {
  font-size: 15px;
  font-weight: 400;
}
.blog-meta li span:hover {
  color: #042132;
}
.blog-meta li span.author {
  font-weight: 500;
}

@media (max-width: 767px) {
  .blog-main-area {
    padding-top: 90px;
  }
}

.blog-date.bms-date {
  position: static;
  border-radius: 3px;
  height: 100px;
  width: 100px;
  margin-right: 30px;
  float: left;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-date.bms-date {
    margin-right: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-date.bms-date {
    width: 95px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .blog-date.bms-date {
    display: none;
  }
}
.blog-date.bms-date i {
  font-size: 22px;
  font-weight: 700;
}
.blog-date.bms-date span {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
}
.blog-date.bms-date p {
  font-size: 15px;
  font-weight: 500;
}
.header {
  max-height: 800px;
  height: 80vh;
}

.main_section.why-choose.investor_corner,
.main_section.features-section.investor_corner {
  background: #fff;
}

/* Parent Wrapper */
.investor-section {
  background: var(--rv-bg-primary);
  font-family: var(--rv-font);
}

/* Heading */
.investor-section .main_heading h2 {
  color: var(--rv-white);
}

.investor-section .main_heading h5 {
  color: var(--rv-white);
}

.investor-section .invest-card {
  background: #4a4c60;
  border-radius: 16px;
  padding: 25px 25px;
  text-align: left;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.35s ease-in-out;
  overflow: hidden;
}

/* Corner Glow Effects */
.investor-section .invest-card::before,
.investor-section .invest-card::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--rv-secondary-light);
  opacity: 0;
  transition: 0.3s;
}

.investor-section .invest-card::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
  border-radius: 12px 0 0 0;
}

.investor-section .invest-card::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 12px 0;
}

.investor-section .invest-card:hover::before,
.investor-section .invest-card:hover::after {
  opacity: 1;
}

/* Hover Effect */
.investor-section .invest-card:hover {
  transform: translateY(-10px);
  background: #4a4c60;
  border-color: var(--rv-secondary-light);
  box-shadow: 0 8px 25px rgba(19, 156, 215, 0.25);
}

/* Icon */
.investor-section .invest-icon img {
  width: 80px;
  margin-bottom: 22px;
  transition: 0.3s;
  filter: drop-shadow(0 2px 4px #0c0c0c);
}

.investor-section .invest-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.investor-section .invest-card:hover .invest-icon img {
  filter: none;
}

/* Title */
.investor-section h4 {
  color: var(--rv-white);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

/* Description */
.investor-section p {
  color: var(--rv-white);
  font-size: 14px;
  min-height: 60px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.investor-section .know-more-btn {
  display: flow;
  padding: 8px 22px;
  color: var(--rv-secondary-light);
  background: transparent;
  border: 1px solid var(--rv-secondary);
  border-radius: 6px;
  transition: 0.3s;
  font-weight: 500;
  text-align: center;
}

.investor-section .know-more-btn:hover {
  background: var(--rv-secondary);
  color: #000;
}

/* NAVIGATION CONTROLS */
.investor-section .owl-nav {
  position: absolute;
  top: -110px;
  right: 0;
  display: flex;
  gap: 10px;
}

.investor-section .owl-nav button {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #1e1f2a !important;
  border: 1px solid var(--rv-secondary-light) !important;
  color: var(--rv-secondary-light) !important;
  font-size: 20px !important;
  font-weight: 700;
  line-height: 0;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.investor-section .owl-nav button:hover {
  background: var(--rv-secondary-light) !important;
  color: #000 !important;
  box-shadow: 0 0 12px rgba(19, 156, 215, 0.6);
  transform: translateY(-2px);
}

/* Remove default outline on click */
.investor-section .owl-nav button:focus {
  outline: none !important;
}

/* Make icons look cleaner */
.investor-section .owl-nav button span {
  font-size: 26px;
  line-height: 1;
}

.white-heading .main_heading h2,
.white-heading .main_heading h5 {
  color: #fff;
}

.flipbox_area.main_section.investor_corner,
.blog-area.main_section.investor_corner,
.investor-section.investor_corner.main_section {
  background: #2e394e;
}

.form-control {
  box-shadow: none;
  outline: none;
  border: 1px solid #dfdce6;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  color: #17305e;
  height: auto;
  padding: 10px 20px;
  resize: none;
}

textarea.form-control {
}

.form-control:focus {
  border-color: #e41f7a;
}

.contact-form textarea {
  display: inline-block;
  min-height: 210px;
}

.contact-form textarea,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="password"] {
  background: #edf0fa;
  border: 1px solid transparent;
}

.contact-form .form-control:focus {
  border-color: #0c59db;
  background: #edf0fa;
}

.request-a-call-back-form {
  background: #fff;
  padding: 40px 50px 50px 50px;
  -webkit-box-shadow: -5px -1px 15px 10px rgba(38, 37, 37, 0.1);
  -khtml-box-shadow: -5px -1px 15px 10px rgba(38, 37, 37, 0.1);
  -moz-box-shadow: -5px -1px 15px 10px rgba(38, 37, 37, 0.1);
  -ms-box-shadow: -5px -1px 15px 10px rgba(38, 37, 37, 0.1);
  -o-box-shadow: -5px -1px 15px 10px rgba(38, 37, 37, 0.1);
  box-shadow: -5px -1px 15px 10px rgba(38, 37, 37, 0.1);
  margin-top: -129px;
  margin-left: -160px;
  position: relative;
}

.request-a-call-back-form:after {
  border-color: #0c59db transparent transparent #3032a2;
  content: "";
  position: absolute;
  border-width: 12px 12px 12px 12px;
  height: 64px;
  width: 64px;
  border-style: solid;
  top: 0;
  opacity: 0.75;
  left: 0;
}

.request-a-call-back-form:before {
  position: absolute;
  content: "";
  border-width: 12px 12px 12px 12px;
  border-color: #0c59db #3032a2 transparent transparent;
  top: 0;
  right: 0;
  height: 64px;
  width: 64px;
  border-style: solid;
  opacity: 0.75;
}

.request-a-call-back-form.form-control {
  margin-bottom: 20px;
}

.request-a-call-back-form .custom-select-categories {
  background-color: #fff;
  color: #17305e;
  height: 56px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  padding: 4px 15px;
  border: 1px solid #dfdce6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  box-shadow: none;
}

.request-a-call-back-form.sidebar {
  background: #17305e;
  padding: 30px;
}

select {
  width: 268px;
  padding: 5px;
  font-size: 16px;
  line-height: 1;
  border: 0;
  border-radius: 5px;
  height: 34px;
  background: url(../images/down-arrow.png) no-repeat right #ddd;
  -webkit-appearance: none;
  background-position-x: 96%;
}

.contact-block {
  background: #edf0fa;
  padding: 30px 30px;
}

.contact-icon i {
  width: 84px;
  height: 84px;
  background: #0c59db;
  text-align: center;
  line-height: 84px;
  display: inline-block;
  border-radius: 50%;
}

.contact-icon i:before {
  color: #fff;
  font-size: 36px;
}

.contact-details {
  margin-left: 30px;
}
.partner_section {
  padding-bottom: 180px;
}

.main_section.investor_corner.contactsection {
  padding-top: 0;
}

.video-popup {
  position: relative;
}

.popup-youtube {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  color: #fff;
}

.popup-youtube:hover {
  color: #fff;
}

.video-popup a i::before {
  font-size: 90px;
  background: #0c59db;
  border-radius: 50%;
  line-height: 100px;
}

.video-popup-left a {
  height: 95px;
  width: 95px;
  text-align: center;
  line-height: 95px;
  background: #fff;
  font-size: 24px;
  color: #19203f;
  position: relative;
  z-index: 10;
  display: inline-block;
  border-radius: 95px;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.video-popup-left a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  z-index: -1;
  opacity: 0;
  -webkit-animation: pulse-border-2 1.5s linear infinite;
  -moz-animation: pulse-border-2 1.5s linear infinite;
  -o-animation: pulse-border-2 1.5s linear infinite;
  animation: pulse-border-2 1.5s linear infinite;
  border-radius: 95px;
}

.video-popup-left a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  z-index: -1;
  opacity: 0;
  -webkit-animation: pulse-border 1s linear infinite;
  -moz-animation: pulse-border 1s linear infinite;
  -o-animation: pulse-border 1s linear infinite;
  animation: pulse-border 1s linear infinite;
  border-radius: 95px;
}

@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes pulse-border-2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.pulse-animation,
.pulse-animation:before,
.pulse-animation:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 90px;
  width: 90px;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(12, 89, 219, 0.6);
  -khtml-box-shadow: 0 0 0 0 rgba(12, 89, 219, 0.6);
  -moz-box-shadow: 0 0 0 0 rgba(12, 89, 219, 0.6);
  -ms-box-shadow: 0 0 0 0 rgba(12, 89, 219, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(12, 89, 219, 0.6);
  box-shadow: 0 0 0 0 rgba(12, 89, 219, 0.6);
  -webkit-animation: pulse-animation 3s infinite;
  -khtml-animation: pulse-animation 3s infinite;
  -moz-animation: pulse-animation 3s infinite;
  -ms-animation: pulse-animation 3s infinite;
  -o-animation: pulse-animation 3s infinite;
  animation: pulse-animation 3s infinite;
}

.pulse-animation:before {
  -webkit-animation-delay: 0.9s;
  -khtml-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.pulse-animation:after {
  -webkit-animation-delay: 0.6s;
  -khtml-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

@-webkit-keyframes pulse-animation {
  70% {
    -webkit-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    -khtml-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -khtml-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse-animation {
  70% {
    -webkit-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    -khtml-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -khtml-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* ==========================
   MODERN HERO – COMPLETE BRAND STYLING
   ========================== */
.modern-hero {
  position: relative;
  padding: 130px 0 30px;
  background: linear-gradient(180deg, #caefff -16%, transparent 85%);
  font-family: var(--rv-font);
}

/* Slide Background */
.modern-hero .hero-slide {
  background-size: cover !important;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 520px;
  padding: 80px 40px;
  position: relative;
  border-radius: 20px;
}

/* Left side gradient overlay to ensure readability */
.modern-hero .hero-slide::before {
  /* content: ""; */
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 35%,
    rgba(0, 0, 0, 0.1) 70%,
    transparent 100%
  );
  z-index: 1;
}

.modern-hero .row {
  position: relative;
  z-index: 2;
}

/***********************************/
/* New Desing Start from Here */
/***********************************/

/* =============================
   CLEAN FINTECH TITLE — LIKE SAMPLE IMAGE 
   ============================= */
.modern-hero .clean-heading .hero-title {
  font-size: 45px;
  font-weight: 600;
  color: var(--rv-white);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:0 3px 5px rgb(32 29 94);
}
/* =============================
   CTA BUTTON (uses bootstrap classes)
   ============================= */
.modern-hero .hero-cta {
  background: var(--rv-secondary) !important;
  border-color: var(--rv-secondary) !important;
  padding: 12px 34px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.modern-hero .hero-cta:hover {
  background: var(--rv-secondary-light) !important;
  border-color: var(--rv-secondary-light) !important;
  color: var(--rv-black) !important;
}

/* =============================
   RIGHT SIDE ANIMATED SHAPES
   ============================= */
.modern-hero .abstract-wrapper {
  position: relative;
  height: 260px;
}

.modern-hero .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(22px);
  animation: morph 8s infinite ease-in-out alternate;
}

.modern-hero .shape-1 {
  width: 160px;
  height: 160px;
  background: var(--rv-secondary);
  top: 10px;
  right: -110px;
}

.modern-hero .shape-2 {
  width: 110px;
  height: 110px;
  background: var(--rv-primary);
  top: 200px;
  right: 170px;
  animation-delay: 1s;
}

.modern-hero .shape-3 {
  width: 80px;
  height: 80px;
  background: var(--rv-secondary-light);
  top: 60px;
  right: 20px;
  animation-delay: 0.5s;
}

@keyframes morph {
  from {
    transform: translateY(0px) scale(1);
  }
  to {
    transform: translateY(-30px) scale(1.2);
  }
}

/* Changing text */
.modern-hero .changing-text {
  margin-top: 60px;
  font-size: 24px;
  font-weight: 600;
  color: var(--rv-white);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.modern-hero .owl-dots {
  margin-top: 20px;
}
/* =====================================================
   SIMPLE CLEAN CARD DESIGN (SCOPED, NO CONFLICTS)
   ===================================================== */
.main_section.how-to-invest.investor_corner.invest-steps-simple {
  /* CARD */
  .step-card {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
    transition: 0.35s ease;
    cursor: pointer;
  }

  /* MULTI-LAYER 3D HOVER SHADOW */
  .step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06), 0 8px 18px rgba(0, 0, 0, 0.08),
      0 12px 28px rgba(0, 0, 0, 0.12);
  }

  /* THUMBNAIL IMAGE */
  .step-thumb {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 12px;
  }

  .step-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* TITLE */
  .step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--rv-primary);
    margin-top: 5px;
    line-height: 1.4;
  }
}

/* MAIN SECTION */
.why-choose-final {
}

/* LEFT HEADING FIX (BLACK TEXT LIKE YOUR SCREENSHOT) */
.left-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #000;
}

.left-heading h5 {
  color: #6d6d6d;
  font-weight: 600;
  margin-top: 10px;
}

.center-heading .section_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* ZIG-ZAG CARDS */
.why-zigzag {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-left: 40px;
}

.why-card {
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08), 0 12px 24px rgba(0, 0, 0, 0.06),
    0 24px 40px rgba(0, 0, 0, 0.05);
  width: 100%;
  background: #fff;
}

/* INNER WHITE CARD */
.why-card-inner {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ZIG-ZAG SHIFT */
 

/* CIRCLE AROUND ICON */
.why-circle {
  width: 75px;
  height: 75px;
  overflow: hidden;
}

.why-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* padding: 2px; */
}

/* TEXT */
.why-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.why-text p {
  margin: 0;
  font-size: 14px;
  color: #6e6e6e;
  max-width: 350px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .why-zigzag {
    margin-left: 0;
  }

  .why-card.mid,
  .why-card.last {
    margin-left: 0 !important;
  }
}

.rv-blog-card-modern {
  position: relative;
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.rv-blog-img img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 10px;
}

/* Bottom floating box */
.rv-blog-content {
  position: absolute;
  bottom: -35px;
  left: 5%;
  width: 90%;
  padding: 18px 20px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.rv-blog-card-modern:hover .rv-blog-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.rv-date-line {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  color: #000;
}

.rv-blog-title {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.rv-blog-read {
  margin-top: 10px;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
}

.blog-area .section_title {
  align-items: baseline;
  justify-content: left;
}

.footer_top .navbar-brand {
  display: block;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
}

.section_title .section_sub_title h6 {
  color: var(--rv-secondary);
  font-size: 28px;
  font-weight: 700;
}
/* ALIGNMENT OPTIONS */
.section_title.text_center {
  text-align: center;
  align-items: center;
}

.section_title.text_right {
  text-align: right;
  align-items: flex-end;
}

.section_title.text_left,
.section_title {
  text-align: left;
  align-items: flex-start;
  padding-bottom: 15px;
}

/* THEME: DARK */
.section_title.white .section_main_title h1,
.section_title.white .section_sub_title h6 {
  color: #fff;
}

.section_title.white .em_bar_bg {
  background: rgba(255, 255, 255, 0.4);
}

.section_title.white .em_bar_bg:before {
  background: #fff;
}

/* THEME: LIGHT (slightly brighter style) */
.section_title.light .section_sub_title h6 {
  color: var(--rv-secondary);
}

.section_title.light .section_main_title h1 {
  color: var(--rv-primary);
}

.section_title.light .em_bar_bg {
  background: #a3d6ff87;
}

.section_title.light .em_bar_bg:before {
  background: var(--rv-secondary);
}

/* ANIMATED BAR (Pendulum Stick) */
.em_bar_bg {
  height: 10px;
  width: 90px;
  background: #ffe3d8; /* ORIGINAL COLOR */
  margin: 20px 0;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}

/* MOVING DOT */
.em_bar_bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ff4800;
  animation: MOVE-BG 4s linear infinite;
}

/* PENDULUM ANIMATION */
@keyframes MOVE-BG {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(81px);
  }
  100% {
    transform: translateX(0);
  }
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--rv-primary); /* dark purple */
  margin: 0;
}

.hero-title span {
  color: var(--rv-primary);
  font-weight: 700;
  font-size: 52px;
}

.hero-title strong {
  color: var(--rv-primary); /* dark purple bold */
  font-weight: 800;
}

.clean-heading {
  padding: 80px 10px;
}

.about_text_box {
  border-left: 3px solid var(--rv-primary);
  padding-left: 20px;
  margin-top: 20px;
}

.about_text_box p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* IMAGE STYLING LIKE YOUR SCREENSHOT */
.about_images_wrapper {
  position: relative;
  width: 100%;
  min-height: 350px;
}

.about_images_wrapper .img_top {
  width: 70%;
  border-radius: 15px;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about_images_wrapper .img_bottom {
  width: 70%;
  border-radius: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 767px) {
  .about_images_wrapper {
    min-height: 250px;
  }
  .about_images_wrapper .img_top,
  .about_images_wrapper .img_bottom {
    width: 85%;
    position: relative;
    box-shadow: none;
    margin-bottom: 15px;
  }
}

.about-img img {
  border-radius: 25px;
  box-shadow: 0 5px 12px -6px #000;
}


.navbar-light .navbar-nav .nav-link:hover i:before{
    content: "\F286";
	    
}
.navbar-light .navbar-brand img {
    height: 110px;
}


