@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap");

:root {
    --rv-primary: #f1b251;
    --rv-primary-light: #fff8ef;
    --rv-secondary: #3361b2;
    --rv-secondary-light: #f0f5ff;
    --rv-white: #fff;
    --rv-black: #070707;
    --rv-gray: #726d7b;
    --rv-font: "Roboto", sans-serif;
}

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

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

a {
    color: var(--rv-secondary);
    text-decoration: none;
}

a:hover {
  color: var(--rv-gray);
  text-decoration: none;
}

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

p {
    margin-bottom: 5px;
    margin-top: 0;
}

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

::-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);
}

.main_section {
  padding: 80px 0;
}

.bg-color {
    background: #eff0ff;
}

.rv-header {
    margin-bottom: 30px;
    text-align: center;
}

.rv-header .rv-subtitle {
    font-size: 16px;
    color: var(--rv-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.rv-header .rv-title {
    font-size: 36px;
    color: #1c1c1c;
    font-weight: 700;
}

.rv-header .rv-subtitle:before {
    content: "";
    position: absolute;
    height: 1px;
    width: 10%;
    background: var(--rv-secondary);
    top: 26px;
    left: 45%;
}


h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 28px;
}

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;
}

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

.nav-top {
  background-color: #fff;
}
.nav-top .col-md-6 {
}
.nav-top ul {
  padding-left: 0px;
  margin: 0;
}
.nav-top ul li {
  display: inline-block;
  margin-right: 5px;
  color: #0b0b0b;
  padding: 4px 0px;
}
.nav-top .social {
    float: right;
    display: flex;
}
.navbar.navbar-expand-lg {
  /* position: absolute; */
  /* left: 0; */
  /* width: 100%; */
  /* background-color: #fff0 !important; */
  border-top: 1px solid #ddd;
  padding: 0;
  margin: 0;
}

.navbar-light .navbar-nav .nav-link {
  color: #252525;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar .logo a.navbar-brand {
  height: 100px;
  width: auto;
}
.navbar .logo a.navbar-brand img {
  height: 100%;
  width: auto;
}

.main-slider {
  position: relative;
  overflow: hidden;
}
.main-slider::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  bottom: 0;
  line-height: 0;
  width: 100%;
  height: 20%;
  z-index: 0;
}
.main-slider-carousel {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.main-slider .slide {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-size: cover;
  padding: 280px 0px 215px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-slider .slide:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0.52;
    background: #000000;
}

.main-slider__content {
  position: relative;
}

.main-slider__tagline {
  position: relative;
  font-weight: 400;
  opacity: 0;
  line-height: 1.6em;
  transform: scaleY(0);
  transform-origin: top;
  color: var(--mockstyle-white);
  font-size: 18px;
  margin-bottom: 45px;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  width: 65%;
  margin: 0 auto 35px auto;
}

.main-slider .active .main-slider__tagline {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
	  color: var(--rv-primary);
}

.main-slider__title {
    color: var(--mockstyle-white);
    opacity: 0;
    line-height: 60px;
    font-weight: 700;
    font-size: 52px;
    transform: scaleY(0);
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    margin-bottom: 15px;
    color: var(--rv-primary);
}

.main-slider .active .main-slider__title {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
    color: var(--rv-primary);
	
}

.main-slider__btn-box {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  display: inline-block;
  -webkit-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: all 900ms ease;
}

.main-slider .active .main-slider__btn-box {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider .owl-dots {
  display: none;
}

.main-slider .owl-nav {
  position: absolute;
  left: 50%;
  right: 0px;
  bottom: 40%;
  width: 100%;
  max-width: 1170px;
  transform: translateX(-50%);
}

.main-slider .owl-nav .owl-prev {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 65px;
  height: 65px;
  border: 0px;
  line-height: 65px;
  border-radius: 50px;
  display: inline-block;
  font-size: var(--font-18);
  color: var(--mockstyle-white);
  background-color: rgba(var(--mockstyle-white-rgb), 0.4);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider .owl-nav .owl-next {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 65px;
  height: 65px;
  border: 0px;
  line-height: 65px;
  border-radius: 50px;
  display: inline-block;
  font-size: var(--font-18);
  color: var(--mockstyle-white);
  background-color: rgba(var(--mockstyle-white-rgb), 0.4);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover {
  background-color: var(--mockstyle-base);
}

.why_chooseus {
  position: relative;
}
.why_chooseus::after {
  content: "";
  position: absolute;
  background-image: url(../images/shape3.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: 50px;
}

.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;*/
}
.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;
}

.our-values .card {
  border: 0;
  padding: 20px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.our-values .card-body {
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    transition: ease-in-out 0.4s;
    border-radius: 5px;
    height: 100%;
}
.our-values .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.our-values .card-title a {
  color: #150517;
}
.our-values .card-text {
  color: #5e5e5e;
}
.our-values .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}
.our-values .read-more a:hover {
  text-decoration: underline;
}
.our-values .card:hover .card-body {
    background: #4754afa8;
}
.our-values .card:hover .read-more a,
.our-values .card:hover .card-title,
.our-values .card:hover .card-title a,
.our-values .card:hover .card-text {
  color: #fff;
}

.rv-testimonial-section {
  padding: 60px 20px;
}

.rv-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}


.rv-testimonial-carousel .rv-testimonial-item {
  padding: 15px;
}

.rv-testimonial-card {
    background-color: #fff5e2;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.rv-testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rv-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.rv-testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #3d3d3d;
  margin-bottom: 20px;
  font-style: italic;
}

.rv-client-info {
  font-weight: 600;
  font-size: 16px;
  color: var(--rv-secondary);
}

.rv-client-name {
  display: inline-block;
  margin-right: 5px;
}

.rv-client-designation {
  color: #888;
  font-size: 14px;
  font-weight: normal;
}

.footer_main {
  background-color: #00234b;
}
.fppter_top {
    padding: 70px 0 30px;
}
.footer_bottom {
    padding: 0;
    position: relative;
    color: #fff;
}
.footer_bottom::after {
    content: "";
    position: absolute;
    background-color: #011a36;
    bottom: 0;
    line-height: 0;
    width: 90%;
    height: 50px;
    z-index: 0;
}
#bottom-bar-inner {
  position: relative;
  z-index: 9;
}
.footer_bottom #copyright {
  color: #d3deeb;
}

#bottom span {
  color: var(--rv-primary);
}

#bottom .shape-image-6 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

#bottom .shape-image-10 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/**** SCROLL TO TOP ****/

#scroll-top {
  position: fixed !important;
  right: 30px;
  bottom: -50px;
  display: block;
  line-height: 50px;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  z-index: 7779;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}

#scroll-top:after {
  content: "\f106";
  font-family: "Fontawesome";
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

#scroll-top:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #00234b;
  z-index: -1;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

#scroll-top.show {
  bottom: 40px;
  opacity: 1;
  visibility: visible;
}

.fit-vids-style {
  height: 0;
}

#footer .widget .widget-title > span {
  display: block;
  position: relative;
  padding: 0 0 13px 0;
}

#sidebar .widget .widget-title > span:after {
  width: 40px;
  height: 2px;
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--rv-primary);
}

#footer .widget .widget-title > span:after {
  width: 40px;
  height: 2px;
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #d3cdec;
}

#footer .widget .widget-title {
  font-size: 20px;
  margin: 0 0 27px 0;
  z-index: 1;
  position: relative;
  color: var(--rv-primary);
}
#footer .widget.widget_links {
  padding-left: 110px;
}

#footer .widget.widget_links ul {
  margin: 0;
}

#footer .widget.widget_links ul li {
  padding: 2px 0;
  list-style: none;
}

#footer .widget.widget_links ul li:first-child {
  padding-top: 0;
}

#footer .widget.widget_links ul li:last-child {
  padding-bottom: 0;
}

#footer .widget.widget_links ul li a {
  position: relative;
  color: #d3deeb;
  position: relative;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

#footer-widgets .widget.widget.widget_information .inner span {
  color: #d3deeb;
}

#footer .widget.widget_links ul li:hover a:before {
  opacity: 1;
  margin-left: 0;
}
#footer-widgets .widget.widget.widget_information ul li {
  list-style: none;
  position: relative;
  margin-bottom: 5px;
  border: 0;
}
.inner i {
    color: #ffffff;
}

#footer-widgets .widget.widget_about .socials {
    margin: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}



#footer-widgets .widget.widget_about .socials .icon {
  padding: 0 5px;
  float: left;
  margin: 1px 0 3px 0;
}

#footer-widgets .widget.widget_about .socials a{
  float: left;
  font-size: 21px;
  color: #9290a3;
  background-color: #f3f6f8;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  line-height: 38px;
  text-align: center;
  z-index: 1;
}

#footer-widgets .widget.widget_about .socials a:hover,
#footer-widgets .widget.widget_about .socials a.active {
  background-color: var(--rv-primary);
  color: var(--rv-secondary);
}
#footer-widgets .widget.widget_about .widget-text p {
  color: #d3deeb;
}

#footer-widgets .widget.widget_about .widget-text p:last-child {
    text-align: justify;
}

.rvg-action-box {
  background-color: var(--rv-primary);
  padding: 25px;
  margin: 0;
  border: none;
}
.rvg-action-box .form-wrap {
  padding-top: 23px;
}

.rvg-action-box .form-wrap .search-form {
  position: relative;
  padding-right: 25px;
}

.rvg-action-box .form-wrap .search-form .search-field {
  background-color: #fff;
  border: 0;
  padding-right: 48px;
  margin-bottom: 0;
  padding: 15px 20px;
  border-bottom: 1px solid #e9e9e9;
}
.rvg-action-box .form-wrap .search-form .submit-butn {
  position: absolute;
  top: 6px;
  right: 0;
  padding: 17px 40px;
  border-radius: 6px;
  background-color: #00234b;
}
.rvg-button.submit-butn:before,
.rvg-button.submit-butn:after {
  background: #011a36;
}

@media only screen and (max-width: 767px) {
  .rvg-action-box {
    text-align: center;
    padding: 50px 30px;
  }
  .rvg-action-box .form-wrap .search-form {
    padding: 0;
  }
  .rvg-action-box .form-wrap .search-form input::placeholder {
    text-align: center;
  }
  .rvg-action-box .form-wrap .search-form .site-button .rvg-button {
    position: relative;
    margin-top: 40px;
  }
  .rvg-action-box .form-wrap .search-form .submit-butn {
    padding: 19px 50px !important;
  }
}

.single_blog {
  border: 1px solid #ebebeb;
  overflow: hidden;
  transition: 0.5s;
}

.single_blog_content {
    background: var(--rv-white);
    color: var(--rv-secondary);
}

.single_blog:hover {
  border-color: transparent;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.blog_page_title h3 {
  font-size: 21px;
  transition: 0.5s;
}

.blog_page_title a {
  font-weight: 700;
}

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

.blog_page_button a {
  font-size: 15px;
  transition: 0.5s;
  color: #616161;
}

.blog_page_button.style_two a {
  font-size: 15px;
  transition: 0.5s;
  color: var(--rv-primary);
  border: 1px solid var(--rv-primary);
  display: inline-block;
  padding: 8px 30px;
  border-radius: 30px;
}

.blog_page_button a i {
  margin-left: 6px;
}

.blog_page_button a:hover {
  color: var(--rv-primary);
}

.blog_page_title a:hover {
  color: var(--rv-primary);
}

.temp_theme_blog_meta a {
  color: #616161;
  transition: 0.3s;
  position: relative;
}

.temp_theme_blog_meta a:before {
  position: absolute;
  right: -6px;
  height: 14px;
  width: 1px;
  background: #666;
  content: "";
  top: 5px;
}

.temp_theme_blog_meta a:hover {
  color: var(--rv-primary);
}

.subscribe_content_title h2 {
  font-size: 32px;
  font-weight: 700;
}

.subscribe_form input {
  font-size: 14px;
  height: 60px;
  padding: 0px 15px;
  position: relative;
  width: 100%;
  background: #f6f6fc;
  border: 0;
  border-radius: 0;
  margin-bottom: 14px;
  margin: auto;
  border: 0;
  border-radius: 10px;
}

.subscribe_form_send button {
  text-align: center;
  transition: all 0.4s ease 0s;
  border: medium none;
  border-radius: 10px;
  background: var(--rv-primary);
  display: block;
  color: var(--rv-white);
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
  margin: auto;
  padding: 15px 43px;
  position: absolute;
  right: 18px;
  top: 74%;
  display: inline-block;
  transform: translateY(-50%);
}

.subscribe_form_send button:hover {
  color: var(--rv-white);
}

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 0 32px 0;
  border-radius: 4px;
}
.contact .info-box i {
  font-size: 32px;
  color: var(--rv-secondary);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted var(--rv-secondary);
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 25px;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #111111;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type="submit"] {
  background: #e03a3c;
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #e35052;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-content {
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.rv-partners-slider .item .image img {
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 1px 10px -4px #7b7b7b;
    margin: 10px;
}


#footer-widgets .widget.widget_about .widget-text .logo {
    color: #d3deeb;
    height: 100px;
    width: auto;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer-widgets .widget.widget_about .widget-text .logo img{
    height: 100%;
    width: auto;
}
.contact-form {
    padding: 20px;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
}



.nav-top ul li a ,.nav-top ul li i {
    color: var(--rv-secondary);
    font-weight: 600;
}

.nav-top ul li a:hover ,.nav-top ul li i:hover {
    color: #1a325b;
    font-weight: 600;
}


.social a {
    margin: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social a {
    float: left;
    font-size: 21px;
    color: #9290a3;
    background-color: #f3f6f8;
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
    z-index: 1;
}

.social a {
  background-color: var(--rv-secondary);
  color: var(--rv-primary);
}
.social a:hover {
    background-color: #0043b6;
    color: #ffffff;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: var(--rv-secondary);
    border-bottom: 2px solid var(--rv-secondary);
}

.dropdown-item.active, .dropdown-item:active, .dropdown-item:focus, .dropdown-item:hover {
    background-color: none;
    color: var(--rv-white);
    text-decoration: none;
    background: var(--rv-secondary);
}
.dropdown-item {
    padding: 5px 25px;
}
.navbar-nav .dropdown > .dropdown-menu.show {
    margin: 0;
    padding: 0px 25px;
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
    color: var(--rv-secondary);
}

div#footer-widgets a {
    color: var(--rv-primary);
}
div#footer-widgets a:hover {
    color: var(--rv-primary-light);
}

.btn {
  color: var(--rv-white);
  border-radius: 6px; /* more rounded for modern look */
  text-align: center;
  position: relative;
  padding: 10px 28px; /* slightly bigger padding for better touch */
  font-weight: 600;
  display: inline-flex; /* inline-flex keeps width fit-content but allows flex alignment */
  align-items: center;
  justify-content: center;
  border: 1.5px solid transparent;
  font-family: var(--rv-font);
  cursor: pointer;
  margin: 12px 0; /* margin top & bottom */
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  user-select: none;
}

.btn i {
  line-height: 0;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* Icon slight move on hover */
.btn:hover i {
  transform: translateX(4px);
}

/* Primary button */
.btn.btn-primary {
  background-color: var(--rv-primary);
  border-color: var(--rv-primary);
  color: var(--rv-black);
  box-shadow: 0 4px 8px rgba(241, 178, 81, 0.4);
}

.btn.btn-primary:hover {
  background-color: var(--rv-secondary);
  border-color: var(--rv-secondary);
  color: var(--rv-white);
  box-shadow: 0 6px 12px rgba(51, 97, 178, 0.5);
}

/* White button */
.btn.btn-white {
  background-color: var(--rv-white);
  color: var(--rv-black);
  border-color: var(--rv-gray);
  box-shadow: 0 2px 6px rgba(114, 109, 123, 0.15);
}

.btn.btn-white:hover {
  background-color: var(--rv-secondary-light);
  border-color: var(--rv-secondary);
  color: var(--rv-secondary);
  box-shadow: 0 4px 10px rgba(51, 97, 178, 0.3);
}

/* Secondary button */
.btn.btn-secondary {
  background-color: var(--rv-secondary);
  color: var(--rv-white);
  border-color: var(--rv-secondary);
  box-shadow: 0 4px 8px rgba(51, 97, 178, 0.4);
}

.btn.btn-secondary:hover {
  background-color: var(--rv-primary);
  border-color: var(--rv-primary);
  color: var(--rv-black);
  box-shadow: 0 6px 12px rgba(241, 178, 81, 0.5);
}




.rv-inner-banner {
  position: relative;
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-primary-light));
  padding: 80px 20px;
  color: var(--rv-white);
  overflow: hidden;
  font-family: var(--rv-font);
}

.rv-inner-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.rv-inner-banner-title {
  font-size: 40px;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease-out;
}

.rv-breadcrumb {
  list-style: none;
  display: inline-flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  animation: fadeInUp 1.2s ease-out;
  font-weight: 500;
}

.rv-breadcrumb li {
  color: var(--rv-secondary);
}

.rv-breadcrumb li a {
  color: var(--rv-blak);
  text-decoration: none;
  transition: color 0.3s ease;
}

.rv-breadcrumb li::after {
  content: "/";
  margin-left: 8px;
  color: #000000;
}

.rv-breadcrumb li:last-child::after {
  content: "";
}

/* Abstract shapes */
.rv-inner-banner-shapes .shape {
  position: absolute;
  opacity: 0.15;
  z-index: 1;
  animation: float 6s infinite ease-in-out;
}

/* Blob shapes */
.blob-1 {
  width: 200px;
  height: 200px;
  background: var(--rv-secondary);
  top: -40px;
  left: -60px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: 0s;
}

.blob-2 {
  width: 150px;
  height: 150px;
  background: var(--rv-primary);
  bottom: -30px;
  right: -40px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation-delay: 2s;
}

/* Polygon shape using clip-path */
.polygon-1 {
  width: 180px;
  height: 180px;
  background: var(--rv-secondary-light);
  top: 50%;
  left: 70%;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.rv-inner-banner-title {
    font-size: 40px;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out;
    color: var(--rv-secondary);
}
.about-section .card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.about-section .card-body {
  padding: 30px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.about-section .card h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
  color: #3361b2;
}

.about-section .card p {
  font-size: 16px;
  line-height: 1.6;
  color: #726d7b;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .about-section .row {
    justify-content: center;
  }
  .about-section .col-md-6,
  .about-section .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* ===== Tabs Navigation Styling ===== */
#galleryTabs {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid var(--rv-gray);
    padding-left: 0;
    margin-bottom: 1.5rem;
    list-style: none;
}

#galleryTabs > li {
    margin: 0 0.5rem;
}

#galleryTabs > li > a {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    color: var(--rv-gray);
    border: 1px solid transparent;
    border-radius: 0.3rem 0.3rem 0 0;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    font-family: var(--rv-font);
}

#galleryTabs > li > a:hover {
    color: var(--rv-primary);
    border-color: var(--rv-primary) var(--rv-primary) transparent;
    background-color: var(--rv-primary-light);
}

#galleryTabs > li > a.active {
    color: var(--rv-white);
    background-color: var(--rv-primary);
    border-color: var(--rv-primary) var(--rv-primary) transparent;
    font-weight: 700;
    cursor: default;
}

/* ===== Gallery Section Styling ===== */
.main-section.about-home-section.awards-section .imageawards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-section.about-home-section.awards-section .imageawards > div {
    flex: 1 1 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    box-sizing: border-box;
}

.main-section.about-home-section.awards-section .imageawards .image-frame {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(7, 7, 7, 0.1);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.main-section.about-home-section.awards-section .imageawards .image-frame:hover {
    box-shadow: 0 6px 16px rgba(7, 7, 7, 0.2);
}

.main-section.about-home-section.awards-section .imageawards .image-frame img.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.main-section.about-home-section.awards-section .imageawards .image-frame:hover img.gallery-image {
    transform: scale(1.05);
}

/* Responsive: 2 columns below 768px */
@media (max-width: 768px) {
    .main-section.about-home-section.awards-section .imageawards > div {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* Responsive: 1 column below 480px */
@media (max-width: 480px) {
    .main-section.about-home-section.awards-section .imageawards > div {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
.showformdata  .navbar , .modal-open .navbar {
    transition: all 0.2s ease-in-out;
    transition-property: background-color, color;
    z-index: 1;
}


#banner .owl-nav button span {
    border: 2px ridge var(--rv-primary);
    border-radius: 50%;
    /* background: gray; */
    color: var(--rv-primary);
    padding: 10px;
}
.image-frame {
    position: relative;
    overflow: hidden;
}

.image-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.hover-message {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.image-frame:hover .hover-message {
    opacity: 1;
    transform: translateY(0);
}

.hover-message a {
    color: #ffcc00;
    text-decoration: underline;
}
