@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Outfit:wght@100..900&display=swap');

:root {
  --rv-primary: #46a2cc;
  --rv-secondary: #3671b7;
  --rv-primary-light: #ecf0f3;
  --rv-secondary-light: #ecf0f3;
  --rv-white: #fff;
  --rv-black: #000;
  --rv-gray: #6b6b6b;
  --rv-font: "DM Sans", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  font-size: 16px;
  font-family: var(--rv-font);
  color: var(--rv-text-color);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--rv-primary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rv-primary);
}

.btn {
  position: relative;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  color: #fff;
  z-index: 1;
  background-size: 300% 300%;
  animation: gradientFlow 6s ease infinite;
}

/* Wave Effect */
.btn::after {
  content: "";
  background: url('../images/wave2.png') repeat-x;
  background-size: 1000px 100px;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 14px;
  animation: wave 18s linear infinite;
  opacity: 0.35;
  z-index: 0;
}

/* Primary Button */
.btn.btn-primary {
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-secondary));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Secondary Button */
.btn.btn-secondary {
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-secondary));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn.btn-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}


/* Wave Animation */
@keyframes wave {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 1000px;
  }
}

/* Gradient Flow Animation */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.main-heading {
  max-width: 650px;
  text-align: center;
  margin: 0 auto 50px;
  width: 100%;
}

.main-heading h5 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--rv-primary);
}

.main-heading h1 {
  font-weight: 600;
  margin: 0;
  font-size: 42px;
  line-height: 48px;
}

.main-heading .title-box {
  position: relative;
  display: block;
  font-size: 38px;
  margin: 0;
}

.main-heading .title-box span {
  color: var(--rv-secondary);
}

.main-heading .title-box::after {
  content: "";
  position: absolute;
  width: 25%;
  height: 10px;
  background-image: url(../images/decore-new.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-size: contain;
}

.text-line {
  display: -webkit-box;
  -webkit-line-clamp: var(--textline);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body {
  font-family: var(--rv-font);
  font-size: 16px;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--rv-font-heading);
  color: var(--rv-bg-dark);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.section {
  padding: 80px 0;
}

.main-section {
  padding: 70px 0;
}

.ticker_section {
  padding: 5px 15px;
  background-color: #1a526c;
  display: flex;
}

.ticker_section .tickers {
  display: flex;
  margin: -10px;
  align-items: center;
  justify-content: center;
}

.ticker_section .tickers .ticker_item {
  padding: 10px;
  color: var(--rv-white);
  list-style: none;
  display: flex;
  position: relative;
  align-items: center;
}

.ticker_section .tickers .ticker_item .name {
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 900;
}

.ticker_section .tickers .ticker_item .price {
  font-size: 13px;
  padding: 4px 5px 0;
  font-weight: 600;
}

.ticker_section .tickers .ticker_item.mrdown .difference_percent {
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  padding-right: 30px;
  position: relative;
  color: #e91e63;
}

.ticker_section .tickers .ticker_item.mrdown .difference_percent::after {
  content: "";
  width: 16px;
  height: 14px;
  position: absolute;
  right: 7px;
  top: 5px;
  background-image: url("../images/decrease.webp");
  background-size: 100%;
  background-repeat: no-repeat;
}

.ticker_section .tickers .ticker_item .difference_percent {
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  padding-right: 30px;
  position: relative;
  color: #4caf50;
}

.ticker_section .tickers .ticker_item .difference_percent::after {
  content: "";
  width: 16px;
  height: 14px;
  position: absolute;
  right: 7px;
  background-image: url("../images/trend.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  top: 5px;
}

.ticker_section .tickers .ticker_item::after {
  content: "";
  position: absolute;
  right: 0;
  height: 80%;
  width: 2px;
  background: var(--rv-white);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
}

.ticker_section .tickers .ticker_item:last-child::after {
  content: unset;
}

.disclaimer-sec {
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid #999;
}

.disclaimer-sec h5,
.disclaimer-sec h6,
.disclaimer-sec p {
  margin-bottom: 0;
  color: #a7a8b4;
  margin: 0;
}

.disclaimer-sec h5 a,
.disclaimer-sec h6 a,
.disclaimer-sec p a {
  color: var(--rv-white);
}

.disclaimer-sec .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -10px;
  flex-wrap: wrap;
  padding-top: 20px;
}

.disclaimer-sec .footer-content img {
  height: 67px;
}

.disclaimer-sec .footer-list {
  display: flex;
  padding: 10px;
  align-items: center;
}

.disclaimer-sec .footer-list .contentb {
  text-align: left;
  padding-left: 15px;
}

.social-list {
  display: flex;
  margin: -8px;
  flex-wrap: wrap;
  padding: 0;
}

.social-list li {
  list-style: none;
  padding: 8px;
}

.social-list li span,
.social-list li a {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background-color: var(--rv-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-decoration: none;
  transition: 0.5s;
  color: var(--rv-white);
}

.social-list li span:hover,
.social-list li a:hover {
  transition: 0.5s;
  background: var(--rv-primary);
  color: var(--rv-white);
}

.form-group .captcha-code-form {
  display: flex;
  gap: 10px;
}

.form-group .captcha-code-form .btnRefresh {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group .captcha-code-form .boxbtn {
  display: flex;
  position: relative;
  width: 100%;
}

.form-group .captcha-code-form .boxbtn #captcha {
  width: 100%;
  padding-right: 75px;
}

.modal-open .modalbody {
  z-index: 1;
  pointer-events: visible;
  visibility: visible;
  opacity: 1;
}

.showmodal .modalbody {
  z-index: 99;
  pointer-events: visible;
  visibility: visible;
  opacity: 1;
}

.modalbody {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modalbody .modalbg {
  background: rgba(0, 0, 0, 0.5411764706);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  cursor: pointer;
  top: 0;
}

.modalbody .Cmodalcard {
  max-width: 500px;
  width: 100%;
  z-index: 9;
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.modalbody .Cmodalcard .maincontentmodal {
  background: #fff;
  position: relative;
  box-shadow: 0 0 15px 0 #bbb;
  border-radius: 10px;
}

.modalbody .Cmodalcard .maincontentmodal .cmodalclose {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #fff;
  box-shadow: 0 0 15px 0 #ddd;
  cursor: pointer;
  right: -15px;
  border: unset;
  font-size: 28px;
  top: -15px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  z-index: 9;
  align-items: center;
}

.modalbody .Cmodalcard .maincontentmodal .cmodalclose span {
  position: relative;
  transform: rotate(45deg);
}

.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::before,
.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::after {
  content: "";
  width: 15px;
  height: 2px;
  position: absolute;
  background: #000;
  top: -1px;
  left: -6px;
}

.modalbody .Cmodalcard .maincontentmodal .cmodalclose span::after {
  transform: rotate(90deg);
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards {
  padding: 20px;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdForm .form-group:last-child {
  margin-bottom: 0;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify {
  text-align: center;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify div p {
  font-size: 16px;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify div:last-child {
  width: 100% !important;
  max-width: 90%;
  margin: 0 auto;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify label {
  display: block;
  -moz-text-align-last: left;
  text-align-last: left;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify button {
  background-color: var(--rv-primary);
  border: 1px solid var(--rv-primary);
  color: #fff;
  display: inline-block !important;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 5px;
  transition: 0.5s;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify button :hover {
  transition: 0.5s;
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.modalbody .Cmodalcard .maincontentmodal .cm-cards #forgetPwdFormVerify #mobileOtp {
  display: block;
  width: 100%;
  background-color: #fff;
  outline: none;
  padding: 10px 15px;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  margin-bottom: 20px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.modalbody .Cmodalcard .maincontentmodal .modalheader {
  width: 100%;
  background: var(--rv-primary);
  border-radius: 10px 10px 0 0;
  padding: 8px 20px;
}

.modalbody .Cmodalcard .maincontentmodal .modalheader h4,
.modalbody .Cmodalcard .maincontentmodal .modalheader h3 {
  color: var(--rv-white);
  font-size: 20px;
  margin-bottom: 0;
}

.modalbody .Cmodalcard .maincontentmodal .modalheader h6 {
  color: var(--rv-white);
}

.modalbody .Cmodalcard .maincontentmodal .modaldatashow {
  display: none;
}

.modalbody .Cmodalcard .maincontentmodal .modaldatashow.show {
  display: block;
}

.modalbody .Cmodalcard .maincontentmodal .modaldatashow .image {
  margin-bottom: 15px;
  text-align: center;
}

.modalbody .Cmodalcard .maincontentmodal .modaldatashow .image img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  border-radius: 50%;
  margin: 0 auto;
}

.modalbody .Cmodalcard .maincontentmodal .modaldatashow .content {
  padding: 25px;
}

.iframe {
  position: relative;
  padding-top: 100%;
}

.iframe iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.home-contact {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 20px;
  background: var(--rv-white);
  border: 1px solid #bbb;
  transition: 0.5s;
}

.hover-text::before {
  content: "";
  position: absolute;
  left: 0;
  transition: 0.5s;
  top: 0;
  width: 100%;
  height: 100%;
  rotate: 50deg;
  background: linear-gradient(95deg, var(--rv-primary) 0%, rgba(133, 206, 228, 0.2) 95%);
  transform: translateY(-41px) translateX(-365px);
  z-index: 0;
}

.hover-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -60%;
  width: 100%;
  height: 100%;
  rotate: 50deg;
  background: linear-gradient(95deg, rgba(133, 206, 228, 0.2) 0%, var(--rv-secondary) 95%);
  transform: translateY(41px) translateX(365px);
  z-index: 0;
  transition: 0.5s;
}

.hover-text:hover {
  transition: 0.5s;
}

.hover-text:hover::before {
  transition: 0.5s;
  top: -60%;
}

.hover-text:hover::after {
  transition: 0.5s;
  bottom: 0%;
}

.top-banner-section {
  padding: 200px 0 150px;
  position: relative;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  background: var(--rv-primary) !important;
}

.top-banner-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 400px;
  width: 100%;
  background-image: url(../../images/bottom.svg);
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 1;
}

.top-banner-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #2f3096 url(../../images/services-one-shape.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  opacity: 0.1;
  z-index: 0;
}

.top-banner-section .banner-box {
  position: relative;
  z-index: 1;
}

.top-banner-section .banner-box ul {
  display: flex;
  margin: -10px;
  justify-content: start;
  padding: 0;
  padding-top: 20px;
  flex-wrap: wrap;
}

.top-banner-section .banner-box ul li {
  list-style: none;
  padding: 10px;
  position: relative;
  color: var(--rv-white);
}

.top-banner-section .banner-box ul li a {
  color: var(--rv-white);
  font-weight: 600;
}

.top-banner-section .banner-box ul li::before {
  content: "";
  height: 30%;
  width: 2px;
  opacity: 0.3;
  top: 50%;
  transform: translateY(-50%);
  background: var(--rv-white);
  position: absolute;
  left: 0;
}

.top-banner-section .banner-box ul li:first-child::before {
  content: unset;
}

.top-banner-section .banner-box h1,
.top-banner-section .banner-box h2,
.top-banner-section .banner-box h3 {
  color: var(--rv-white);
  margin: 0;
  font-weight: 600;
}

.nevdisc-box {
  display: none;
}

.nevdisc-box.show {
  display: block;
}

#error_msg span {
  background: rgba(255, 0, 0, 0.0509803922);
  color: #ff0000;
  border-radius: 5px;
  border: 2px solid #ff0000;
  font-size: 12px;
  padding: 10px;
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
}

#mail-status .success {
  background: rgba(0, 128, 0, 0.1215686275);
  color: #008000;
  border-radius: 5px;
  border: 2px solid #008000;
  margin-bottom: 15px;
  font-size: 12px;
  padding: 10px;
  font-weight: 600;
}

#mail-status .error {
  background: rgba(255, 0, 0, 0.0509803922);
  color: #ff0000;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 2px solid #ff0000;
  font-size: 12px;
  padding: 10px;
  font-weight: 600;
}

.main_heading {
  margin-bottom: 30px;
}


.related-section-content .latest-blog-loop {
  display: flex;
  flex-wrap: wrap;
  margin: -10px 0;
}

.related-section-content .latest-blog-loop .item {
  padding: 10px 0;
  width: 100%;
}

.related-section-content .latest-blog-loop .item a {
  display: block;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  background: var(--rv-white);
  transition: 0.4s;
}

.related-section-content .latest-blog-loop .item a:hover {
  transition: 0.4s;
  box-shadow: 10px 10px 15px 0 #ddd;
  transform: translateY(5px) translateX(5px);
}

.related-section-content .latest-blog-loop .item a .blog {
  display: flex;
  align-items: self-start;
}

.related-section-content .latest-blog-loop .item a .blog .images img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.related-section-content .latest-blog-loop .item a .blog .client-info {
  padding: 0 15px;
}

.related-section-content .latest-blog-loop .item a .blog .client-info ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: -1px;
}

.related-section-content .latest-blog-loop .item a .blog .client-info ul li {
  width: 100%;
  font-size: 12px;
  padding: 1px;
  color: #bbb;
}

.related-section-content .latest-blog-loop .item a .blog .client-info ul li:first-child {
  color: var(--rv-black);
}

.related-section-content .latest-blog-loop .item a .blog .client-info h4 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}



.single_blog {
  border-radius: 10px 10px 3px 3px;
  transition: 0.5s;
  background: var(--rv-white);
}

.single_blog:hover {
  transition: 0.5s;
  box-shadow: 0 10px 10px 0 #ddd;
  transform: translateY(-10px);
}

.single_blog:hover .single_blog_thumb {
  transition: 0.5s;
}

.single_blog:hover .single_blog_thumb img {
  transition: 0.5s;
  transform: scale(1.1) rotate(5deg);
}

.single_blog .single_blog_thumb {
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
  position: relative;
}

.single_blog .single_blog_thumb img {
  transition: 0.5s;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.single_blog .single_blog_thumb span {
  background: var(--rv-black);
  padding: 5px 10px;
  position: absolute;
  color: var(--rv-white);
  left: 0;
  bottom: 0;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 5px -5px 10px 0 #fff;
  border-radius: 0 10px 0 0;
}

.single_blog .single_blog_content {
  border: 1px solid #eee;
  padding: 20px;
}

.single_blog .single_blog_content .temp_theme_blog_meta {
  font-size: 12px;
  color: #999;
}

.single_blog .single_blog_content .blog_page_title {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0 0;
  color: var(--rv-black);
}

.single_blog .single_blog_content .blog_page_title h5 {
  color: var(--rv-black);
}

.single_blog .single_blog_content .blog_page_button span {
  color: var(--rv-black);
  text-decoration: underline;
}

.blue {
  color: var(--rv-primary);
}

.pink {
  color: var(--rv-primary);
}

.light-gray {
  color: #333b46;
}

.blue-bg {
  background-color: #388eb5;
  color: var(--rv-white);
}

.light-bg, .light-bg1 {
    background-color: var(--rv-secondary-light);
    background-repeat: no-repeat;
    background-size: cover;
}

.white-bg {
  background-color: var(--rv-white) !important;
}

.white-color {
  color: var(--rv-white) !important;
}

.pb-btn-box {
  text-align: center;
  padding: 40px 0 20px 0;
}

.know-more {
  position: relative;
  padding-right: 40px;
}

.know-more:after {
  content: "\f11e";
  font-family: "uicons-solid-straight";
  position: absolute;
  margin-left: 5px;
  font-size: 30px;
}

.main-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 1px;
}

.main-title-white {
  font-size: 42px;
  font-weight: 800;
  color: var(--rv-white);
  letter-spacing: 1px;
}

.main-heading {
    position: relative;
    width: -moz-max-content;
    width: max-content;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 25px;
}

.main-heading .title-box {
  background-color: var(--rv-primary-light);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--rv-primary);
  letter-spacing: 1px;
}

.main-heading .main-title {
  font-size: 38px;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 35px;
  font-weight: 700;
  width: 100%;
  color: var(--rv-primary);
}

.improved-heading {
  text-align: center;
}

.improved-heading .title-box {
  display: inline-block;
  background-color: var(--rv-primary-light);
  color: var(--rv-primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.improved-heading .main-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--rv-primary);
  letter-spacing: 1px;
  margin: 0;
  position: relative;
}

.improved-heading .main-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--rv-primary);
  margin: 18px auto 0;
  border-radius: 10px;
}

/* Optional animation */
.improved-heading .title-box,
.improved-heading .main-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.improved-heading .main-title {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header.main-header {
  position: absolute;
  z-index: 99;
  width: 100%;
  padding: 0;
}

@media only screen and (max-width: 992px) {
  header.main-header {
    padding: 10px 0;
  }
}

.header-top .logo img {
  height: 70px;
}

@media only screen and (max-width: 767px) {
  .header-top .logo img {
    height: 50px;
  }
}

ul.navbar-nav .nav-item .nav-link {
  color: var(--rv-black) !important;
  padding: 12px 20px;
  font-weight: 500;
}

ul.navbar-nav .nav-item.dropdown.services .dropdown-menu {
  top: 45px;
}

@media only screen and (max-width: 992px) {
  ul.navbar-nav .nav-item.dropdown.services .dropdown-menu {
    width: 250px;
    -moz-column-count: 1;
    column-count: 1;
  }
}

ul.navbar-nav .nav-item.dropdown .dropdown-menu {
  width: 250px;
}

ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  text-align: left;
  border-bottom: 1px solid #ddd;
}

ul.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: unset;
}

ul.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

ul.navbar-nav .nav-item .nav-link:hover {
  color: var(--rv-black) !important;
}

ul.navbar-nav .nav-item .nav-link.active {
  color: var(--rv-white) !important;
  font-weight: 600;
  background-color: var(--rv-primary);
}

ul.navbar-nav .dropdown-menu {
  padding: 0;
}

ul.navbar-nav .dropdown-menu .dropdown-divider {
  margin: 0;
}

ul.navbar-nav .dropdown-menu .dropdown-item {
  padding: 10px 15px;
}

ul.navbar-nav .dropdown-menu .dropdown-item.active,
ul.navbar-nav .dropdown-menu .dropdown-item:active {
  color: var(--rv-white);
  text-decoration: none;
  background-color: var(--rv-primary);
}

ul.navbar-nav .dropdown-menu .dropdown-item:hover,
ul.navbar-nav .dropdown-menu .dropdown-item:focus {
  color: var(--rv-white);
  text-decoration: none;
  background-color: var(--rv-primary);
}

.radio-group {
  text-align: center;
  margin: 30px 0 20px 0 !important;
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
  /* Create the indicator (the dot/circle - hidden when not checked) */
  /* Show the indicator (dot/circle) when checked */
  /* Style the indicator (dot/circle) */
}

.radio-group .radio-btn {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin-right: 15px;
}

.radio-group .radio-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-group .radio-btn .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  border: 2px solid #001522;
  border-radius: 50%;
}

.radio-group .radio-btn:hover input~.checkmark {
  border: 2px solid var(--rv-primary);
}

.radio-group .radio-btn input:checked~.checkmark {
  background-color: var(--rv-white);
  border: 2px solid var(--rv-primary);
}

.radio-group .radio-btn .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-group .radio-btn input:checked~.checkmark:after {
  display: block;
}

.radio-group .radio-btn .checkmark:after {
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rv-primary);
}

.login-model .model-img img {
  width: 100%;
}

.login-model .modal-dialog {
  max-width: 900px;
  margin: 30px auto;
}

.login-model .modal-title {
  text-transform: uppercase;
  color: var(--rv-primary);
  font-size: 24px;
}

.login-model a.forgot-password {
  display: block;
  text-align: right;
  margin: 15px 0 30px 0;
  color: #001522;
  text-decoration: none;
}

.login-model a.forgot-password:hover {
  color: var(--rv-primary);
}

.login-model .modal-body {
  padding: 30px 20px;
}

.login-model .modal-header {
  padding: 25px 20px;
}

.login-model .modal-header button.close {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid var(--rv-primary);
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  padding: 0 !important;
  color: var(--rv-primary);
  opacity: 1;
  margin: 0 !important;
  outline: none;
}

.video-model .model-video video {
  width: 100%;
  padding: 7px 7px 0 7px;
  box-sizing: border-box;
  border-radius: 20px 20px 20px 20px;
}

.video-model .modal-dialog {
  max-width: 850px;
  margin: 50px auto;
}

.video-model .modal-title {
  text-transform: uppercase;
  color: var(--rv-primary);
  font-size: 24px;
}

.video-model .modal-body {
  padding: 0;
}

.video-model .modal-content {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.video-model .modal-header {
  padding: 15px;
  position: absolute;
  top: -5px;
  right: -5px;
  width: 100%;
  height: 70px;
  z-index: 9999;
  border: none;
  overflow: hidden;
}

.video-model .modal-header button.close {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid var(--rv-primary);
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  padding: 0 !important;
  color: var(--rv-primary);
  opacity: 1;
  margin: 0 0 0 auto !important;
  outline: none;
}

.video-btn {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 40%;
  top: 160px;
  border-radius: 100%;
  z-index: 999;
  box-shadow: none;
}

.video-btn:after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background-color: #66b60a;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-btn:hover {
  background-color: var(--rv-primary);
  color: var(--rv-white);
}

.video-btn:focus {
  box-shadow: none;
}

.video-btn i {
  font-size: 52px;
  line-height: 86px;
  margin-left: 15px;
}

@keyframes ripple {
  0% {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }

  100% {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.bottom-scroller.active .scroller {
  background-color: var(--rv-primary);
  display: block;
  width: 40px;
  height: 40px;
  color: var(--rv-white);
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  text-decoration: none;
}

.bottom-scroller.active .scroller:hover {
  background-color: var(--rv-primary);
}

i.fi-ss-paper-plane {
  margin-left: 3px;
  /* display: inline-block; */
  /* line-height: 30px; */
  vertical-align: middle;
  font-size: 14px;
}

.card {
  border-radius: 10px;
  box-shadow: 0 6px 20px 1px rgba(0, 0, 0, 0.1);
}

.form-custom {
  display: inline-block;
  width: 100%;
  position: relative;
  margin-right: 20px;
}

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

.form-custom .form-group input {
  display: block;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
  color: var(--rv-primary);
  height: 45px;
  padding: 5px 40px 5px 5px;
  border-radius: 0;
}

.form-custom .form-group input:focus {
  border: none;
  border-bottom: 1px solid var(--rv-primary);
  box-shadow: none;
}

.form-custom .form-group select {
  display: block;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
  color: var(--rv-primary);
  height: 45px !important;
  padding: 5px 40px 5px 5px;
  border-radius: 0;
}

.form-custom .form-group select:focus {
  border: none;
  border-bottom: 1px solid var(--rv-primary);
  box-shadow: none;
}

.form-custom .form-group textarea {
  display: block;
  width: 100%;
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid #333;
  outline: none;
  color: var(--rv-primary);
  height: 80px;
  padding: 5px 40px 5px 5px;
  border-radius: 0;
}

.form-custom .form-group textarea:focus {
  border: none;
  border-bottom: 1px solid var(--rv-primary);
  box-shadow: none;
}

.form-custom .form-group .search {
  position: absolute;
  top: 3px;
  right: 5px;
  background-color: transparent;
  border: none;
  color: var(--rv-white);
}

.form-custom .form-group .search i:before {
  font-size: 24px;
}

.form-custom .form-group .btn.btn-primary {
  margin: 40px auto 0 auto;
  display: block;
}

.form-custom .dropdown {
  position: relative;
}

.form-custom .dropdown:after {
  content: "\f117";
  font-family: flaticon;
  position: absolute;
  color: #656565;
  top: 10px;
  right: 10px;
  font-size: 14px;
}

.home-slider {
  position: relative;
  background: #003f63;
  min-height: 78vh;
  position: relative;
  padding-top: 0;
  overflow: hidden;
  margin-top: 90px;
}

.home-slider::after {
  background-image: url(../images/banner-imgsvg.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-repeat: repeat;
  background-size: 50%;
  opacity: 0.1;
}

.home-slider .container {
  position: relative;
  z-index: 1;
}

.wave {
  background: url(../images/wave2.png);
  background-size: 1000px 100px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 85px;
  animation: wave 6s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave.wave1 {
  animation: wave 8s linear infinite;
  z-index: 1;
  opacity: 1;
  animation-delay: 0s;
  bottom: 0;
}

.wave.wave2 {
  animation: wave2 7s linear infinite;
  z-index: 9;
  opacity: 0.5;
  animation-delay: -3s;
  bottom: 10px;
}

.wave.wave3 {
  animation: wave2 3s linear infinite;
  z-index: 9;
  opacity: 0.3;
  animation-delay: -2s;
  bottom: 15px;
}

@keyframes wave {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 1000px;
  }
}

@keyframes wave2 {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: -1000px;
  }
}

.home-slider .banner-bubble {
  margin-top: 100px;
  position: absolute;
  right: 0;
  bottom: -60px;
  width: 100%;
}

.home-slider .banner-bubble .logos {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  bottom: -150px;
}

.home-slider .banner-bubble .logos span {
  animation: bubble 7s linear infinite;
  opacity: 0;
}

.home-slider .banner-bubble .logos span img {
  width: 80px !important;
}

.home-slider .banner-bubble .logos span em {
  color: var(--rv-white);
  font-style: normal;
  text-align: center;
  display: block;
  font-weight: 600;
}

.home-slider .banner-bubble .logos span:nth-child(1) {
  animation-delay: 1.6s;
}

.home-slider .banner-bubble .logos span:nth-child(1) img {
  width: 70px !important;
}

.home-slider .banner-bubble .logos span:nth-child(2) {
  animation-delay: 4.5s;
}

.home-slider .banner-bubble .logos span:nth-child(2) img {
  width: 90px !important;
}

.home-slider .banner-bubble .logos span:nth-child(3) {
  animation-delay: 3s;
}

.home-slider .banner-bubble .logos span:nth-child(3) img {
  width: 80px !important;
}

.home-slider .banner-bubble .logos span:nth-child(4) {
  animation-delay: 7s;
}

.home-slider .banner-bubble .logos span:nth-child(4) img {
  width: 90px !important;
}

.home-slider .banner-bubble .logos span:nth-child(5) {
  animation-delay: 4.7s;
}

.home-slider .banner-bubble .logos span:nth-child(5) img {
  animation-delay: 4.7s;
}

.home-slider .banner-bubble .logos span:nth-child(6) {
  animation-delay: 8s;
}

.home-slider .banner-bubble .logos span:nth-child(6) img {
  width: 65px !important;
}

.home-slider .banner-bubble .logos span:nth-child(7) {
  animation-delay: 5.56s;
}

.home-slider .banner-bubble .logos span:nth-child(7) img {
  width: 70px !important;
}

.home-slider .banner-bubble .logos span:nth-child(8) {
  animation-delay: 6.9s;
}

.home-slider .banner-bubble .logos span:nth-child(8) img {
  width: 55px !important;
}

.home-slider .banner-bubble .logos span:nth-child(9) {
  animation-delay: 3.5s;
}

.home-slider .banner-bubble .logos span:nth-child(9) img {
  width: 85px !important;
}

.home-slider .banner-bubble .logos span:nth-child(10) {
  animation-delay: 7.3s;
}

.home-slider .banner-bubble .logos span:nth-child(10) img {
  width: 60px !important;
}

.home-slider .banner-bubble .logos span:nth-child(11) {
  animation-delay: 4.4s;
}

.home-slider .banner-bubble .logos span:nth-child(11) img {
  width: 70px !important;
  margin-right: 40px;
}

@keyframes bubble {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  90% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-650px);
    opacity: 0;
  }
}

.home-slider .banner-text {
  padding: 160px 0 100px 0;
}

.home-slider .banner-text .banner-title1 {
  color: var(--rv-white);
  font-size: 32px;
  text-transform: uppercase;
}

.home-slider .banner-text .banner-title2 {
  color: var(--rv-white);
  font-size: 24px;
  text-transform: capitalize;
  line-height: 34px;
  font-weight: 700;
  padding: 0 0 20px;
}

.home-slider .banner-text .btn.btn-secondary {
  margin-top: 30px;
}

.home-about .about-image {
    text-align: center;
    width: auto;
}

.home-about .about-image img {
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.15));
}

.home-SIP-graph .main-title {
  font-size: 28px;
}

.home-SIP-graph .main-title span.green {
  display: block;
}

.home-SIP-graph .SIP-image {
  overflow: hidden;
}

.home-SIP-graph .SIP-image img {
  width: 100%;
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-default {
  height: 50px;
  background-color: #e3fdc4;
  position: relative;
  color: #001522;
  border-radius: 2px;
  border-color: #e3fdc4;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 5px;
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-default:after {
  content: "\f1e9";
  position: absolute;
  font-family: uicons-solid-straight;
  right: 15px;
  top: 10px;
  color: #001522;
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-active {
  background-color: var(--rv-primary);
  color: var(--rv-white);
  height: 50px;
  border-radius: 2px;
  border-color: var(--rv-primary);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-active:after {
  content: "\f1ce";
  position: absolute;
  font-family: uicons-solid-straight;
  right: 15px;
  top: 10px;
  color: var(--rv-white);
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-active.ui-state-focus {
  outline: none;
}

.home-faq-section .faq-accordian .ui-accordion-content {
  padding: 15px;
  background-color: #ecfdd7;
  border-color: #e3fdc4;
  margin-bottom: 10px;
}

.home-service .owl-carousel.owl-theme.home-services {
  position: relative;
}

.home-service .owl-carousel.owl-theme.home-services .service-card {
  margin: 15px;
  background-color: var(--rv-white);
  border-radius: 10px;
  box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  padding: 130px 15px 20px 15px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .icon {
  height: 130px;
  width: 130px;
  background-color: var(--rv-secondary-light);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 25px 25px 30px;
  border-radius: 100%;
  position: absolute;
  top: -22px;
  left: -22px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .icon img {
  width: 65px;
  height: 65px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .text h3 {
  font-size: 24px;
  color: var(--rv-black);
}

.home-service .owl-carousel.owl-theme.home-services .service-card .text p {
  color: var(--rv-black);
  margin-bottom: 20px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .text span {
  color: var(--rv-primary);
}

.home-service .owl-carousel.owl-theme.home-services .service-card a {
  text-decoration: none;
}

.header-top-right {
  text-align: right;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

@media only screen and (max-width: 992px) {
  .header-top-right .login-btn {
    margin-right: 60px;
  }
}

header.main-header .header-top {
  padding: 10px 0;
  background: var(--rv-white);
}

header.main-header .header-bottom {
  background: var(--rv-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 992px) {
  header.main-header .header-bottom {
    position: absolute;
    right: 0;
    top: -15px;
    border: unset;
  }


  header.main-header .header-bottom .navbar-light .navbar-toggler .navbar-toggler-icon {
    opacity: 1;
  }

  header.main-header .header-bottom div#navbarSupportedContent {
    position: fixed;
    width: 280px;
    left: 0;
    height: 100vh;
    background: #fff;
    top: 0;
  }
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble {
  position: absolute;
  display: flex;
  top: 0;
  align-items: center;
  justify-content: space-around;
  width: 50%;
  right: 0;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: var(--rv-primary);
  border-radius: 100%;
  animation: blinking 3s linear infinite;
  transition: 0.3s ease-in 0s all;
  position: absolute;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(1) {
  animation-delay: 1s;
  top: 60px;
  right: 40px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(2) {
  animation-delay: 2.5s;
  width: 9px;
  height: 9px;
  top: 8px;
  right: 55px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(3) {
  animation-delay: 1s;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 75px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(4) {
  animation-delay: 3s;
  width: 17px;
  height: 17px;
  top: 33px;
  right: 46px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(5) {
  animation-delay: 3.5s;
  width: 20px;
  height: 20px;
  top: 38px;
  right: 10px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(6) {
  animation-delay: 2s;
  width: 10px;
  height: 10px;
  top: 15px;
  right: 32px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(7) {
  animation-delay: 3.5s;
  width: 17px;
  height: 17px;
  top: 50px;
  right: 80px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(8) {
  animation-delay: 2s;
  width: 8px;
  height: 8px;
  top: 5px;
  right: 14px;
}

@keyframes blinking {
  0% {
    opacity: 0;
    transition: 0.3s ease-in os all;
  }

  40% {
    opacity: 1;
    transition: 0.3s ease-in os all;
  }

  70% {
    opacity: 1;
    transition: 0.3s ease-in os all;
  }

  100% {
    opacity: 0;
    transition: 0.3s ease-in os all;
  }
}

.owl-nav {
  position: absolute;
  top: -80px;
  right: 15px;
}

.owl-nav button {
  background-color: var(--rv-primary) !important;
  display: inline-block;
  width: 45px;
  height: 45px;
}

.owl-nav button span {
  color: var(--rv-white);
  font-size: 24px;
  line-height: 22px;
  width: 45px;
  display: block;
}

.home-trust-section {
  position: relative;
}

.home-trust-section .btn-card {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.home-trust-section .trust-text {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.home-trust-section .trust-text img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.home-trust-section .trust-text .title {
  font-size: 52px;
  font-weight: 900;
  line-height: 60px;
  color: var(--rv-white);
}

.home-trust-section .trust-text .title span {
  color: var(--rv-black);
}

.home-trust-section .trust-text p {
  color: var(--rv-white);
  margin-top: 10px;
}

.home-trust-section .trust-text .vm-box {
  margin-top: 20px;
  background-color: var(--rv-black);
  border-radius: 10px;
  padding: 15px 20px 5px 20px;
}

.home-trust-section .trust-text .vm-box h3 {
  color: var(--rv-white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
}

.home-trust-section .trust-text .vm-box p {
  font-size: 15px;
  line-height: 20px;
}

.home-trust-section .img-col {
  position: static;
}

.home-trust-section .trust-image:after {
  content: "";
  background-image: url(../images/light.png);
  width: 380px;
  height: 494px;
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0px;
  right: 7%;
  z-index: 9;
  opacity: 0.6;
}

.home-trust-section .trust-image:before {
  content: "";
  background-image: url(../images/light.png);
  width: 380px;
  height: 494px;
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0;
  right: 12%;
  z-index: 9;
  opacity: 0.5;
}

.home-trust-section .trust-image img {
  position: absolute;
  animation: popup 8s ease-in-out infinite;
  z-index: 999;
}

.home-trust-section .trust-image img:nth-child(1) {
  top: -10px;
}

.home-trust-section .trust-image img:nth-child(2) {
  right: 10%;
  top: 100px;
  width: 170px;
}

.home-trust-section .trust-image img:nth-child(3) {
  right: 20%;
  top: 350px;
  width: 140px;
}

@keyframes popup {
  0% {
    transform: translateY(0);
  }

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

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

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}


.home-SIP .SIP-image img {
  width: 100%;
}

.home-invest-fund {
  position: relative;
  overflow: hidden;
  background-blend-mode: overlay;
  background-image: url(../images/parallax.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.home-invest-fund .btn-outline-primary {
  border-color: var(--rv-white);
  color: var(--rv-white);
  margin-left: auto;
  display: block;
  width: 170px;
  font-size: 16px;
  text-align: center;
}

.home-invest-fund p {
  color: var(--rv-white);
}

.home-testimonial-section .testimonial-card {
  background-color: var(--rv-white);
  padding: 20px;
  border-radius: 10px;
  margin: 15px;
  border: 1px solid #ddd;
}

.home-testimonial-section .testimonial-card .image {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 5px;
}

.home-testimonial-section .testimonial-card .image img {
  width: 100%;
}

.home-testimonial-section .testimonial-card .text {
  position: relative;
}

.home-testimonial-section .testimonial-card .text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--rv-primary);
}

.home-testimonial-section .testimonial-card .text h3 span {
  font-weight: 500;
}

.home-testimonial-section .testimonial-card .text p {
  color: var(--rv-black);
  font-size: 15px;
  margin-bottom: 0;
}

.home-testimonial-section .testimonial-card .text:after {
  content: "\f114";
  font-family: flaticon;
  position: absolute;
  color: var(--rv-primary);
  top: -20px;
  right: 0;
  font-size: 24px;
}

.home-FAQ-section .nav-pills .nav-item {
  flex: auto;
  text-align: center;
}

.home-FAQ-section .nav-pills .nav-item .nav-link {
  margin: 3px;
  padding: 18px;
  font-size: 16px;
  background-color: #e3eefe;
}

.home-FAQ-section .nav-pills .nav-item .nav-link.active {
  background-color: #1266f1;
}

.home-FAQ-section .accordion .accordion-item button.accordion-button:after {
  margin-left: auto !important;
  margin-right: 0;
  font-family: fontawesome;
  font-weight: 100;
  font-size: 20px;
}

.home-contact-section .card {
  padding: 20px;
  box-shadow: 0 3px 24px 0px rgba(0, 0, 0, 0.15);
}

.footer-main {
  background: var(--rv-black) url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  min-height: 400px;
  padding: 150px 0 20px 0;
}

.footer-main .foot-col .foot-title {
  color: #97a2b2;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 35px;
}

.footer-main .foot-col p {
  color: #97a2b2;
  font-size: 15px;
}

.footer-main .foot-col a {
  color: #97a2b2;
  text-decoration: none;
  font-size: 15px;
  margin-right: 5px;
}

.footer-main .foot-col a:hover {
  color: var(--rv-white);
}

.footer-main .foot-col a:hover i {
  background-color: var(--rv-secondary);
}

.footer-main .foot-col a i {
  color: var(--rv-white);
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
  border-radius: 100%;
}

.footer-main .foot-col a i:before {
  margin: 0;
  font-size: 16px;
  line-height: 32px;
}

.footer-main .foot-col a i:hover {
  background-color: var(--rv-white);
  color: #06101e;
}

.footer-main .foot-col .menu {
  list-style: none;
  padding: 0;
}

.footer-main .foot-col .menu a {
  margin-bottom: 10px;
  display: block;
}

.footer-main .contact-info p {
  position: relative;
  padding-left: 45px;
  margin-bottom: 25px;
}

.footer-main .contact-info p a i {
  position: absolute;
  left: 0;
}

.footer-main .footer-bottom {
  border-top: 1px solid #54637b;
  margin-top: 10px;
  padding: 10px 0;
}

.footer-main .footer-bottom p {
  color: #97a2b2;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-main .footer-bottom a {
  color: #97a2b2;
  font-size: 14px;
  text-decoration: none;
}

.footer-main .footer-bottom a:hover {
  color: var(--rv-white);
}

.footer-main .footer-top .foot-col.intro .logo img {
  height: 75px;
  margin-bottom: 10px;
}

.rv-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.rv-row .rv-col {
  padding: 15px;
  max-width: 25%;
  width: 100%;
}

.rv-row .rv-col a {
  display: block;
  border: 1px solid #eee;
  background: var(--rv-white);
  padding: 15px;
  text-decoration: none;
  position: relative;
  transition: 0.5s;
  transition: 0.5s;
}

.rv-row .rv-col a:hover {
  transition: 0.5s;
  box-shadow: 0 10px 10px 0 #ddd;
  transform: translateY(-10px) translateX(10px);
}

.rv-row .rv-col a:hover .view_more_btn {
  transition: 0.5s;
  left: 0;
  top: 0;
  opacity: 1;
  width: 100%;
}

.rv-row .rv-col a:hover .icon img {
  filter: brightness(0) invert(1);
}

.rv-row .rv-col a:hover h4 {
  color: var(--rv-white);
}

.feature_area_modern .fam-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 30px 0;
}

.feature_area_modern .fam-col {}

.feature_area_modern .fam-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature_area_modern .fam-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.1);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.feature_area_modern .fam-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgb(0 0 0 / 0.15);
}

.feature_area_modern .fam-icon-wrapper {}

.feature_area_modern .fam-icon {
  width: 72px;
  height: 72px;
  background: var(--rv-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.feature_area_modern .fam-card:hover .fam-icon {
  background: var(--rv-primary);
}

.feature_area_modern .fam-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: none;
    transition: filter 0.3s ease;
    filter: hue-rotate(-80deg);
}

.feature_area_modern .fam-card:hover .fam-icon img {
  filter: brightness(0) invert(1);
}

.feature_area_modern .fam-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature_area_modern .fam-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rv-black);
  transition: color 0.3s ease;
}

.feature_area_modern .fam-card:hover .fam-title {
  color: var(--rv-primary);
}

.feature_area_modern .fam-arrow {
  font-size: 28px;
  color: var(--rv-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
  flex-shrink: 0;
}

.feature_area_modern .fam-card:hover .fam-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .feature_area_modern .fam-row {
    grid-template-columns: 1fr;
  }
  .feature_area_modern .fam-card {
    flex-direction: row;
    justify-content: flex-start;
    padding: 20px;
  }
}


/* Parent Container */
.service-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    text-align: center;
    z-index: 1;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Animated glow background on hover */
.service-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--rv-primary), transparent 70%);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover .service-glow-bg {
    opacity: 0.2;
}

/* Icon Styling */
.service-icon {
    width: 80px;
    height: 80px;
    background: #e3f2fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: 0 6px 20px rgb(0 0 0 / 16%);
}

.service-card-modern:hover .service-icon {
    transform: scale(1.1);
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Content */
.service-content {
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-weight: 600;
    color: var(--rv-black);
    margin-bottom: 10px;
}
.service-card-modern:hover .service-content h3,
.service-card-modern:hover .service-content p,
.service-card-modern:hover .service-content .read-more{
    color: #1f6382;
}

.service-content .read-more {
    margin-top: 15px;
    display: inline-block;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--rv-secondary);
    position: relative;
    transition: all 0.3s ease;
}

.service-content .read-more::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--rv-secondary);
    transition: width 0.3s ease;
}

.service-content .read-more:hover::after {
    width: 100%;
}


.home-about .main-heading .main-title {
  margin-bottom: 20px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--rv-secondary);
}

.home-partner-section .main-heading,
.home-contact-section .main-heading,
.home-testimonial-section .main-heading,
.sip-calculator-section .main-heading {
  text-align: center;
}




.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  transition: transform 0.3s ease;
}



.contact-form-wrapper .form-control {
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--rv-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 181, 67, 0.2);
}

.creative-contact-image {
  text-align: center;
  animation: floatUp 1.5s ease-out;
}

.creative-contact-image img {
    max-width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}
.home-features-section {
    overflow: hidden;
}
@keyframes floatUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.form-group .captcha-code-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center; /* vertically center btn and input */
}

.form-group .captcha-code-form .boxbtn {
  position: relative;
  width: 100%;
  display: flex;
}

.form-group .captcha-code-form .boxbtn #captcha {
  flex-grow: 1;
  padding: 10px 20px;
  padding-right: 90px; /* space for refresh button */
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}



.form-group .captcha-code-form .btnRefresh:hover {
  background-color: var(--rv-secondary);
}
.form-group .captcha-code-form img#captcha_code {
    height: 45px;
}

.partnerCarousel .item {
  padding: 8px;
  height: 85px;
}

.partnerCarousel .item img {
  padding: 5px;
  background-color: var(--rv-white);
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 2px 2px 8px -3px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partnerCarousel .item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-row-service ul {
  display: flex;
  margin-bottom: 20px;
  overflow-x: scroll;
  padding-bottom: 15px;
  padding-left: 0;
}

.faq-row-service ul li {
  list-style: none;
  padding: 10px 20px;
  border: 1px solid var(--rv-primary);
  color: var(--rv-primary);
  cursor: pointer;
  text-align: center;
  flex-grow: 1;
  white-space: nowrap;
  min-width: 220px;
}

.faq-row-service ul li.active {
  background: var(--rv-primary);
  color: var(--rv-white);
}

.rv-faq-col .tebBar-box {
  display: none;
}

.rv-faq-col .tebBar-box.show {
  display: block;
}

body .sip-calculator-section .calculator_output .datavalue:nth-child(2) span::before,
body .sip-calculator-section .calculator_output .datavalue:nth-child(2) {
  color: var(--rv-black);
}

.about-section .card {
  margin-bottom: 30px;
}

.blog-section .blog-card.blog-row .single_blog {
  margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
  .contact_address_area .row .col-lg-4.col-md-6 {
    margin-bottom: 30px;
  }

  .contact_sm_area .home-contact-section {
    padding-left: 0 !important;
    margin-top: 30px;
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.home-features-section .features-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  align-items: center;
}

.home-features-section .features-row .features-icon {
  width: 100%;
}

.home-features-section .features-row .features-icon .icone-row {
  display: flex;
  margin: -15px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.home-features-section .features-row .features-icon .icone-row .icone {
  padding: 15px;
  text-align: center;
}

.home-features-section .features-row .features-icon .icone-row .icone a {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rv-primary);
  padding: 15px;
}

.home-features-section .features-row .features-icon .icone-row .icone a.active {
  background: var(--rv-black);
}

.home-features-section .features-row .features-icon .icone-row .icone a.active img {
  width: 100%;
  filter: drop-shadow(2px 4px 6px #999);
}

.home-features-section .features-row .features-icon .icone-row .icone a img {
  width: 100%;
}

.home-features-section .features-row .features-image {
  padding: 15px;
  max-width: 35%;
  width: 100%;
}

.home-features-section .features-row .features-image .image img {
  height: 500px;
  filter: drop-shadow(2px 4px 6px #888);
}

.home-features-section .features-row .features-content {
  padding: 15px;
  max-width: 65%;
  width: 100%;
}

.home-features-section .features-row .features-content .text {
  min-height: 100px;
}

.home-features-section .features-row .features-content h5 {
  text-transform: capitalize;
}

.about-home-section .images {
  float: left;
  margin-right: 50px;
  margin-bottom: 20px;
}

.about-home-section .images img {
  max-width: 450px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.why-invest-section {
  position: relative;
  padding: 60px 20px;
  font-family: var(--rv-font);
}

.why-invest-section .rv-row-invest {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  justify-content: center;
}

.why-invest-section .rv-col-invest {
  padding: 15px;
  max-width: 20%;
  width: 100%;
  display: flex;
}

@media only screen and (max-width: 992px) {
  .why-invest-section .rv-col-invest {
    max-width: 33.33%;
  }
}

@media only screen and (max-width: 767px) {
  .why-invest-section .rv-col-invest {
    max-width: 50%;
  }
}

@media only screen and (max-width: 480px) {
  .why-invest-section .rv-col-invest {
    max-width: 100%;
  }
}

.why-invest-section .invest-cards {
    border: 1px solid rgb(192 228 255);
    background: var(--rv-white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    flex: 1;
}

.why-invest-section .invest-cards:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.why-invest-section .invest-cards .image {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  transition: transform 0.4s ease;
}

.why-invest-section .invest-cards:hover .image {
  transform: scale(1.1);
}

.why-invest-section .invest-cards .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.4s ease;
}

.why-invest-section .invest-cards:hover .image img {
    filter: drop-shadow(0 6px 12px #a9cefa);
}

.why-invest-section .invest-cards .text h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--rv-black);
  margin-bottom: 5px;
  line-height: 1.4;
}

.why-invest-section .invest-cards .text p {
  font-size: 14px;
  color: var(--rv-gray);
  margin-top: 8px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.atis-video-slider-section {
  overflow: hidden;
  margin-top: 60px;
}

.atis-video-slider-section .slide-content {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 12px;
  box-shadow: -1px 5px 15px rgba(0, 0, 0, 0.1215686275);
  background: linear-gradient(258deg, #13a0f1 6.34%, #000 104.93%), url(<path-to-image>), lightgray 50%/cover no-repeat;
}

.atis-video-slider-section .slide-content .atis-video-card {
  padding: 10px 20px;
}

.atis-video-slider-section .slide-content .atis-video-card a {
  display: block;
}

.atis-video-slider-section .slide-content .atis-video-card a h2 {
  color: #fff;
  font-size: 20px;
  text-align: center;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
}

.atis-video-slider-section .slide-content .atis-video-card a img {
  width: 100%;
  border-radius: 6px;
  height: 100%;
}

.hifeu-row {
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
  margin: -15px;
}

.hifeu-row .hifeu-cols {
  padding: 15px;
  max-width: 33.3%;
  width: 100%;
}

.hifeu-row .hifeu-cols .hifeu-card {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  height: 100%;
  transition: 0.4s;
}

.hifeu-row .hifeu-cols .hifeu-card:hover {
  transition: 0.4s;
  box-shadow: 20px 20px 30px 0 #000;
  transform: rotate3d(0.1, 0.1, -0.11, 2deg) translateY(-10px);
}

.hifeu-row .hifeu-cols .hifeu-card:hover .image {
  transition: 0.4s;
}

.hifeu-row .hifeu-cols .hifeu-card:hover .image img {
  transition: 0.4s;
  filter: drop-shadow(2px 4px 6px #111);
}

.hifeu-row .hifeu-cols .hifeu-card .image {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: 0.4s;
}

.hifeu-row .hifeu-cols .hifeu-card .image img {
  width: 70px;
  transition: 0.4s;
  height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-inline-end: 20px;
}

.hifeu-row .hifeu-cols .hifeu-card .image h5 {
  font-size: 20px;
  margin-bottom: 0;
}

.hifeu-row .hifeu-cols .hifeu-card p {
  margin: 0;
}

.home-prime-membership-section .rvpm-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.home-prime-membership-section .rvpm-row .rvpm-cols {
  max-width: 25%;
  width: 100%;
  transition: 0.4s;
  padding: 15px;
  text-align: center;
}

.home-prime-membership-section .rvpm-row .rvpm-cols .rvpm-cards {
  border: 1px solid #bbb;
  padding: 15px;
  background: var(--rv-white);
  transition: 0.4s;
  height: 100%;
  border-radius: 5px;
}

.home-prime-membership-section .rvpm-row .rvpm-cols .rvpm-cards:hover {
  transition: 0.4s;
  box-shadow: 20px 20px 30px 0 rgba(0, 0, 0, 0.1882352941);
  transform: rotate3d(0.1, 0.1, -0.11, -2deg) translateY(-10px);
}

.home-prime-membership-section .rvpm-row .rvpm-cols .rvpm-cards .imaes img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto 20px;
  transition: 0.4s;
  filter: drop-shadow(2px 4px 6px #aaa);
}


/* TOP FUND PERFORMANCE */

.top-fund-heading .heading-two.text-right {
  text-align: right;
}

.top-fund-heading .heading-two.text-right span {
  color: #009374;
}

.fund-inner-heading {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.fund-inner-heading h3 span {
  color: #e3ba58;
}

.top-performing-fund-box {
  background: #000;
  padding: 80px 30px 30px;
  border-radius: 30px;
  position: relative;
  margin-top: 50px;
}

.top-performing-fund-category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: -75px;
  position: relative;
  z-index: 2;
  padding: 5px 0;
}

.top-performing-fund-category .radio {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}

.top-performing-fund-category .radio #myCatId {
  display: none;
}

.top-performing-fund-category .radio em {
  background: linear-gradient(135deg, #f6b16c, #fbe3c9);
  color: #8a5017;
  padding: 12px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid #8a5017;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 140px;
}

.top-performing-fund-category .radio em:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.top-performing-fund-category .radio.radio2 em {
  background: linear-gradient(135deg, #7b9bc0, #c1d1e6);
  color: #03449c;
  border-color: #03449c;
}

.top-performing-fund-category .radio.radio3 em {
  background: linear-gradient(135deg, #588b8a, #bacfd0);
  color: #035048;
  border-color: #035048;
}

.top-performing-fund-category .radio.radio4 em {
  background: linear-gradient(135deg, #8574db, #c6bdf0);
  color: #3c23bb;
  border-color: #3c23bb;
}

.top-performing-fund-category .radio.radio5 em {
  background: linear-gradient(135deg, #9ee195, #dcf5d8);
  color: #59bc4c;
  border-color: #59bc4c;
}

.top-performing-fund-category .radio.radio6 em {
  background: linear-gradient(135deg, #c773e3, #e8c0f5);
  color: #a533cb;
  border-color: #a533cb;
}

.top-performing-fund-category .radio.radio7 em {
  background: linear-gradient(135deg, #f07f73, #f9c2bc);
  color: #e43422;
  border-color: #e43422;
}

.top-performing-fund-category .radio.radio8 em {
  background: linear-gradient(135deg, #e7c771, #f3e7c5);
  color: #d4a21b;
  border-color: #d4a21b;
}

.top-performing-fund-category .radio.radio9 em {
  background: linear-gradient(135deg, #79d9e4, #c1eef3);
  color: #24bbcd;
  border-color: #24bbcd;
}


.top-performing-fund-list {
  margin-top: 45px;
}

.rv-top-performing-fund {
  padding: 20px;
  font-family: var(--rv-font);
}

.rv-fund-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.rv-fund-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.rv-fund-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.rv-fund-title h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rv-primary);
}

.rv-fund-category {
  margin: 0;
  font-size: 0.9rem;
  color: var(--rv-gray);
}

.rv-fund-rating-likes {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rv-fund-stars {
  position: relative;
}

.rv-stars-background i {
  color: #ddd;
}

.rv-stars-actual {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: gold;
}

.rv-fund-likes {
  font-size: 0.9rem;
  color: var(--rv-gray);
}

.rv-fund-nav {
  font-size: 1rem;
  color: var(--rv-black);
  margin-bottom: 15px;
}

.rv-fund-returns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  font-size: 0.9rem;
  color: var(--rv-black);
  margin-bottom: 15px;
}

.rv-fund-returns span b {
  color: var(--rv-primary);
}

.rv-fund-action {
  text-align: center;
}

.rv-fund-action .btn {
  border-radius: 30px;
  padding: 8px 24px;
}



select.form-control:not([size]):not([multiple]) {
  height: 100%;
}

.loans-section h2 {
  text-align: center;
  padding-bottom: 15px;
}

.loans-section .section-heading {
  font-size: 2rem;
  color: #3764a1;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}

/* Form Styling */
.loans-section .form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 12px 15px;
  font-size: 16px;
  width: 100%;
}

.loans-section .form-input {
  background-color: #ffffff;
}

/* Button Styling */
.loans-section .btn-primary {
  background-color: #6bb543;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.loans-section .btn-primary:hover {
  background-color: #5a9e3b;
}

.loans-section .btn-refresh {
  background-color: #3764a1;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  margin-left: 10px;
  display: inline-block;
}

.loans-section .btn-refresh:hover {
  background-color: #2e4b85;
}

/* Captcha Styling */
.loans-section .captcha-image {
  width: 100%;
  max-width: 180px;
  margin-bottom: 10px;
}

.loans-section .boxbtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.loans-section .demoInputBox {
  border-radius: 5px;
  padding: 10px;
  margin-right: 10px;
}

/* Responsive Layout */
@media (max-width: 767px) {

  .loans-section .col-md-6,
  .loans-section .col-md-12 {
    margin-bottom: 15px;
  }

  .loans-section .form-control {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .loans-section .col-md-6 {
    margin-bottom: 15px;
  }

  .loans-section .form-control {
    width: 100%;
  }
}

.loans-section div#frmContact {
  box-shadow: 0 4px 10px -7px;
  padding: 30px;
}

.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  width: 695px;
  position: relative;
}

.popup-content h2 {
  margin-bottom: 20px;
}

.btn-close .btn {
  margin: 10px;
  padding: 0px 5px;
  font-size: 16px;
  cursor: pointer;
}

.btn-close {
  background: #d9534f;
  color: white;
  position: absolute;
  right: -5px;
  top: -5px;
  padding: 0px 4px;
}

.btn-primary {
  background: #6bb543;
  color: white;
}

.btn-secondary {
  background: #3764a1;
  color: white;
}

.site-footer {
  text-align: center;
  color: #fff;
  border-top: 1px solid gray;
  padding-top: 15px;
}

.mobile-menu {
  display: none;
}


.how-we-work .work-steps {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 10px 15px;
  border-radius: 10px;
}

.how-we-work .work-steps:hover {
  background-color: var(--rv-primary-light);
}

.how-we-work .number {
  background-color: var(--rv-primary);
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.how-we-work .text .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--rv-black);
}

.how-we-work .work-img-bg img {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
}






.rv-faq-section .tebBar-box .tebBar-card {
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
  overflow: hidden;
  border: none;
  background: #ffffff;
  transition: box-shadow 0.3s ease;
}

.rv-faq-section .tebBar-box .tebBar-card:hover {
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.12);
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione {
    padding: 16px 24px;
    padding-right: 60px;
    position: relative;
    background: var(--rv-primary);
    color: #fff;
    font-weight: 600;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.4s ease;
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione:hover {
  background-color: var(--rv-secondary);
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione .rv-faq-title {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
}

/* Icon for toggle using ::after */
.rv-faq-section .tebBar-box .tebBar-card .tebActione::before,
.rv-faq-section .tebBar-box .tebBar-card .tebActione::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 2px;
  height: 14px;
  background: #e0e0e0;
  border-radius: 1px;
  transition: transform 0.3s ease;
  transform-origin: center;
  pointer-events: none;
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione::before {
  transform: translateY(-50%) rotate(90deg);
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione::after {
  transform: translateY(-50%);
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione.active::before {
  transform: translateY(-50%) rotate(180deg);
  background: #fff;
}

.rv-faq-section .tebBar-box .tebBar-card .tebActione.active::after {
  transform: translateY(-50%) rotate(90deg);
  background: #fff;
}

.rv-faq-section .tebBar-box .tebBar-card .disc-box {
  display: none;
  padding: 20px 24px;
  background: #f9fafb;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  border-radius: 0 0 12px 12px;
  box-shadow: inset 0 2px 4px rgb(0 0 0 / 0.05);
}

.rv-faq-section .tebBar-box .tebBar-card .disc-box.show {
  display: block;
}



.home-testimonial-section .owl-carousel .item {
  display: flex !important;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 28px 30px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.testimonial-card .image {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid #ddd;
}

.testimonial-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card .text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.testimonial-card .designation {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
  font-style: normal;
}

.testimonial-card .description {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
  min-height: 80px;
}

@media (max-width: 768px) {
  .testimonial-card {
    max-width: 90vw;
    padding: 20px 25px;
  }
}

.blog_card_link {
  display: block;
}



.blog_card_link::before {
  width: 150px;
  height: 150px;
  background: var(--rv-primary);
  top: -60px;
  right: -60px;
  opacity: 0.15;
  transform: rotate(45deg);
}

.blog_card_link::after {
  width: 100px;
  height: 100px;
  background: var(--rv-secondary);
  bottom: -40px;
  left: -40px;
  opacity: 0.15;
  transform: rotate(-30deg);
}

.blog_card_link:hover {
    transform: translateY(-4px) scale(1.04);
}



/* Blog card */
.single_blog {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
}

/* Image container with layered overlay */
.single_blog_thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  height: 230px;
}

.single_blog_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.blog_card_link:hover .single_blog_thumb img {
  transform: scale(1.2) rotate(4deg);
  filter: brightness(0.85);
}

/* Gradient overlay on image */
.single_blog_thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,181,67,0.5) 0%, rgba(55,100,161,0.5) 100%);
  mix-blend-mode: multiply;
  opacity: 0.6;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 16px 16px 0 0;
}

.blog_card_link:hover .single_blog_thumb::before {
  opacity: 0.8;
}

/* Category label with layered effect */
.category_label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--rv-white);
  color: var(--rv-primary);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow:
    0 0 8px var(--rv-primary),
    inset 0 0 6px var(--rv-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
  transition: background 0.3s ease, color 0.3s ease;
}

.blog_card_link:hover .category_label {
  background: var(--rv-primary);
  color: var(--rv-white);
  box-shadow:
    0 0 15px var(--rv-primary),
    inset 0 0 12px var(--rv-white);
}

/* Content */
.single_blog_content {
  background: var(--rv-white);
  padding: 22px 24px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 6px 10px rgb(0 0 0 / 0.03);
}

/* Meta */
.blog_meta {
  font-size: 12px;
  color: var(--rv-gray);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

/* Title */
.blog_page_title h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rv-black);
  line-height: 1.3;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

/* Add decorative line under title using ::after */
.blog_page_title h5::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--rv-primary);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--rv-primary);
}

/* Read More button */
.blog_page_button span {
  font-weight: 700;
  color: var(--rv-primary);
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  user-select: none;
}

.blog_page_button span:hover {
  color: var(--rv-secondary);
}

.blog_page_button i {
  transition: transform 0.3s ease;
}

.blog_card_link:hover .blog_page_button i {
  transform: translateX(6px);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .single_blog_thumb {
    height: 210px;
  }
}

@media (max-width: 575px) {
  .single_blog_thumb {
    height: 180px;
  }
}



.section-modern-how-we-work .modern-work-img-bg {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    margin: 30px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-modern-how-we-work .modern-work-img-bg img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}

.section-modern-how-we-work .modern-work-img-bg::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--rv-primary-light);
  animation: pulse-border 2000ms ease-out infinite;
  z-index: 1;
}

@keyframes pulse-border {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* Parent Wrapper with Perspective */
.home-services {
  perspective: 1000px; /* Adds depth for 3D */
}

/* Service Card */
.service-card-modern {
  position: relative;
  background: #f9f9f9;
  border-radius: 18px;
  padding: 30px 20px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin: 10px;
  transform-style: preserve-3d;
  z-index: 1;
}

/* Glowing Background Overlay */
.service-card-modern::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: linear-gradient(130deg, var(--rv-primary), var(--rv-secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

.service-card-modern:hover::before {
  opacity: 0.15;
}

/* 3D Hover Effect */
.service-card-modern:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--rv-primary);
}

.service-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.service-card-modern:hover .service-icon {
  transform: translateZ(20px) scale(1.1);
}

/* Floating Text Effect */
.service-content {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, text-shadow 0.3s ease;
}

.service-card-modern:hover .service-content {
  transform: translateZ(35px);
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Text Styling */
.service-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--rv-primary);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.service-content .read-more {
  margin-top: 15px;
  display: inline-block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--rv-primary);
  position: relative;
  transition: all 0.3s ease;
}

.service-content .read-more::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--rv-primary);
  transition: width 0.3s ease;
}

.service-content .read-more:hover::after {
  width: 100%;
}

/* Background Accent */
.service-card-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e021 40%, var(--rv-secondary));
  z-index: 0;
  opacity: 0.1;
}

/* Link Color */
.home-service-modern a {
  color: var(--rv-primary);
}

.section-modern-how-we-work {
  position: relative;
}

.section-modern-how-we-work .modern-work-img-bg {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    margin: 30px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-modern-how-we-work .modern-work-img-bg img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}

.section-modern-how-we-work .modern-work-img-bg::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #fff;
  animation: pulse-border 2000ms ease-out infinite;
  z-index: 1;
}

@keyframes pulse-border {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.section-modern-how-we-work .modern-work-step {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.section-modern-how-we-work .modern-work-step:hover {
  background: var(--rv-primary-light);
  transform: translateX(5px);
}

.section-modern-how-we-work .modern-work-step .icon-circle {
  background: var(--rv-primary);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-modern-how-we-work .modern-work-step .step-text {
  padding-left: 15px;
}

.section-modern-how-we-work .modern-work-step .step-text h3 {
  font-size: 18px;
  margin: 0;
  color: var(--rv-black);
  text-transform: uppercase;
}

/* Apply 3D perspective */
.home-slider {
  perspective: 1200px;
  background: linear-gradient(to bottom right, #002b45, #004f73);
}

/* Banner Text Pop-Up 3D Style */
.home-slider .banner-text {
  padding: 160px 0 100px 0;
  transform-style: preserve-3d;
}

.home-slider .banner-text .banner-title1 {
  color: var(--rv-white);
  font-size: 34px;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #fff3, 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.home-slider .banner-text .banner-title2 {
  color: var(--rv-white);
  font-size: 28px;
  font-weight: 800;
  line-height: 36px;
  padding: 10px 0 20px;
  text-shadow: 1px 1px 0 #fff3, 3px 3px 8px rgba(0, 0, 0, 0.4);
}

@keyframes floatText {
  0%, 100% { transform: translateY(0) rotateX(10deg) rotateY(-5deg); }
  50% { transform: translateY(-8px) rotateX(10deg) rotateY(-5deg); }
}

@keyframes floatTextReverse {
  0%, 100% { transform: translateY(0) rotateX(10deg) rotateY(5deg); }
  50% { transform: translateY(-8px) rotateX(10deg) rotateY(5deg); }
}



.home-slider .banner-text .btn.btn-secondary:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 204, 0, 0.5);
}


.about-mission-wrapper {
  font-family: var(--rv-font);
  color: var(--rv-black);
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* ===== About Us Section ===== */
.about-mission-wrapper .about-home-section .images {
    max-width: 100%;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 100px;
}

.about-mission-wrapper .about-home-section .section-title h2 {
  font-size: 2.5rem; /* keep your size */
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--rv-primary);
  text-align: center;
  letter-spacing: 0.02em;
}

.about-mission-wrapper .about-home-section .text {
  color: var(--rv-gray);
  margin: 0 auto 40px;
  text-align: justify;
}

.about-mission-wrapper .about-home-section .text p {
  margin-bottom: 18px;
}

.about-mission-wrapper .about-home-section .text b {
  color: var(--rv-primary);
  font-weight: 600;
}

/* Button wrapper */
.about-mission-wrapper .btn-wrapper {
  text-align: center;
  margin-top: 30px;
}

.about-mission-wrapper .about-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.about-mission-wrapper .card-wrapper {
  flex: 1 1 300px;
  max-width: 320px;
}

.about-mission-wrapper .card {
  background: var(--rv-primary-light);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow:
    0 4px 12px rgba(54, 113, 183, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}

.about-mission-wrapper .card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 12px 26px rgba(54, 113, 183, 0.4);
}

.about-mission-wrapper .card h3 {
  font-size: 1.75rem;
  margin-bottom: 14px;
  color: var(--rv-secondary);
  position: relative;
  font-weight: 700;
}

.about-mission-wrapper .card h3::after {
  content: '';
  width: 40px;
  height: 4px;
  background: var(--rv-primary);
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 3px;
}

.about-mission-wrapper .card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--rv-secondary);
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .about-mission-wrapper .row {
    gap: 20px;
  }

  .about-mission-wrapper .card-wrapper {
    max-width: 100%;
  }
}



/* Row fix for negative margin */
.contact_address_area .row {
  margin-left: 0;
  margin-right: 0;
  flex-wrap: wrap;
}

/* Each contact card */
.single_contact_address_two {
  background: var(--rv-white);
  border-radius: 20px;
  padding: 25px 30px;
  box-shadow:
    inset 3px 3px 8px var(--rv-primary-light),
    6px 6px 10px rgba(54, 113, 183, 0.15); /* --rv-secondary approx */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hover effect for 3D pop */
.single_contact_address_two:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    inset 5px 5px 15px var(--rv-primary-light),
    10px 10px 20px rgba(70, 162, 204, 0.35); /* --rv-primary approx */
}

/* Icon container */
.single_contact_address_two_icon {
  background: linear-gradient(135deg, var(--rv-secondary), var(--rv-primary));
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    4px 4px 8px var(--rv-secondary),
    inset 2px 2px 5px var(--rv-primary);
  transition: background 0.3s ease;
  flex-shrink: 0;
}

/* Icon inside */
.single_contact_address_two_icon i {
  color: var(--rv-white);
  font-size: 28px;
}

/* On card hover, icon background brightens */
.single_contact_address_two:hover .single_contact_address_two_icon {
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-secondary));
  box-shadow:
    6px 6px 12px var(--rv-secondary),
    inset 3px 3px 8px var(--rv-primary-light);
}

/* Text content */
.single_contact_address_two_content {
  display: flex;
  flex-direction: column;
  font-family: var(--rv-font);
}

.single_contact_address_two_content span {
  font-weight: 600;
  font-size: 16px;
  color: var(--rv-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.single_contact_address_two_content a {
  font-weight: 500;
  font-size: 14px;
  color: var(--rv-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.single_contact_address_two_content a:hover {
  color: var(--rv-secondary);
  text-decoration: underline;
}

/* Contact map iframe */
.single_contact_rt_thumb iframe {
  width: 100%;
  height: 540px;
  border: none;
  border-radius: 30px;
  transition: transform 0.3s ease;
}

/* Contact form area */
.home-contact-section {
  flex: 1;
  border-radius: 30px;
  padding: 40px 35px;
  box-shadow: 1px 15px 20px rgba(54, 113, 183, 0.2),
  inset 1px 4px 8px var(--rv-primary-light);
}


/* ------------------ MOBILE RESPONSIVENESS ------------------ */
@media (max-width: 768px) {
  .single_contact_address_two {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }

  .single_contact_address_two_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .single_contact_address_two_icon i {
    font-size: 24px;
  }

  .single_contact_address_two_content span {
    font-size: 14px;
  }

  .single_contact_address_two_content a {
    font-size: 13px;
  }

  .home-contact-section {
    padding: 30px 20px;
  }

  .single_contact_rt_thumb iframe {
    height: 300px;
    border-radius: 20px;
  }

  .quote_wrapper.request-a-call-back-form {
    padding: 0 25px;
  }
}

@media (max-width: 480px) {
  .single_contact_address_two {
    padding: 18px;
  }

  .single_contact_address_two_icon {
    width: 50px;
    height: 50px;
  }

  .single_contact_address_two_icon i {
    font-size: 22px;
  }

  .single_contact_address_two_content span {
    font-size: 13px;
  }

  .single_contact_address_two_content a {
    font-size: 12px;
  }

  .home-contact-section {
    padding: 25px 15px;
  }
}


.home-trust-section {
    overflow: hidden;
}
