/*
 * VisualsByRaj -- combined & optimized stylesheet
 * Merged from: main.css + 13.css
 * Heading/nav font: "Poppins" -- closest free match to the thin,
 * geometric, wide-tracked uppercase wordmark used in the logo
 * ("PHOTOGRAPHY"). To change it again later, edit ONLY this line
 * plus the family list in includes/fonts.php.
 */
:root {
  --default-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --nav-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --vbr-bg: #fafaf8;
  --vbr-black: #1a1a1a;
  --vbr-gray: #666666;
  --vbr-light: #999999;
  --vbr-gold: #b89b72;
  --vbr-hover: #c8b6a6;
  --vbr-bronze: #8b7355;
  --vbr-dark: #2d2d2d;
  --vbr-border: #e8e2dd;
  --rjm-primary: #c89b57;
  --rjm-secondary: #111111;
  --rjm-white: #ffffff;
  --rjm-text: #555555;
  --rjm-border: #ececec;
  --rjm-radius: 18px;
  --rjm-speed: 0.35s;
}
:root {
  scroll-behavior: smooth;
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
ul li {
  list-style: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.footer {
  --background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .social-links {
  margin-top: 20px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}
#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}
#preloader:before,
#preloader:after {
  content: "";
  background-color: #000000;
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.3s ease 0s;
  z-index: -1;
}
#preloader:after {
  left: auto;
  right: 0;
}
#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s;
}
#preloader .line:before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}
#preloader .line:after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}
#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}
#preloader.loaded .line:after {
  opacity: 0;
}
#preloader.loaded:before,
#preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}
@keyframes lineincrease {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes linemove {
  0% {
    transform: translateY(200%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes preloaderfinish {
  0% {
    width: 5 0%;
  }
  100% {
    width: 0%;
  }
}
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}
.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}
.page-title .heading h1 {
  font-size: 64px;
  font-weight: 400;
}
.page-title .heading .cta-btn {
  color: var(--default-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin-top: 20px;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-title .heading .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%);
}
.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 20px 0;
}
.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.page-title nav ol li + li {
  padding-left: 10px;
}
.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}
.section-title {
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
  font-family: var(--default-font);
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}
.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  font-family: var(--heading-font);
}
.hero {
  width: 100%;
  min-height: 30vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}
.hero h2 {
  margin: 0 0 10px 0;
  font-size: 38px;
  font-weight: 700;
}
.hero h2 .underlight {
  position: relative;
  z-index: 1;
  padding: 0 5px;
  display: inline-block;
}
.hero h2 .underlight:before {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent-color);
  z-index: -1;
}
.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }
}
.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%);
}
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery .gallery-item img {
  transition: 0.3s;
}
.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}
.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}
.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}
.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}
.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}
.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}
.glightbox-clean .gslide-description {
  background: #272727;
}
.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.about .content ul strong {
  margin-right: 10px;
}
.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}
.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
.testimonials .swiper-wrapper {
  height: auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.testimonials .swiper-slide {
  opacity: 0.3;
}
@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }
  .testimonials .swiper-pagination {
    margin-top: 0;
  }
  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}
@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}
.gallery-details .portfolio-details-slider img {
  width: 100%;
}
.gallery-details .swiper-wrapper {
  height: auto;
}
.gallery-details .swiper-button-prev,
.gallery-details .swiper-button-next {
  width: 48px;
  height: 48px;
}
.gallery-details .swiper-button-prev:after,
.gallery-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.gallery-details .swiper-button-prev:hover:after,
.gallery-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 575px) {
  .gallery-details .swiper-button-prev,
  .gallery-details .swiper-button-next {
    display: none;
  }
}
.gallery-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.gallery-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.gallery-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.gallery-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.gallery-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}
.gallery-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.gallery-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}
.gallery-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}
.gallery-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}
.gallery-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.gallery-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.gallery-details .portfolio-description p {
  padding: 0;
}
.gallery-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}
.gallery-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}
.gallery-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}
.gallery-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}
.gallery-details .portfolio-description .testimonial-item .quote-icon-left,
.gallery-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}
.gallery-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.gallery-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.gallery-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}
.services .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}
.services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}
.services .service-item .icon {
  margin-bottom: 15px;
}
.services .service-item .icon i {
  color: var(--default-color);
  background-color: var(--accent-color);
  font-size: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: ease-in-out 0.3s;
}
.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  font-family: var(--default-font);
}
.services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}
.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}
.services .service-item:hover h4 a,
.services .service-item:hover p {
  color: var(--default-color);
}
.services .service-item:hover i {
  color: var(--accent-color);
  background-color: var(--default-color);
}
.services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}
.pricing .pricing-item {
  border-bottom: 1px dashed
    color-mix(in srgb, var(--default-color), transparent 60%);
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}
.pricing .pricing-item h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.pricing .pricing-item h4 {
  margin: 0;
  font-size: 18px;
  color: var(--accent-color);
}
.contact .info-wrap {
  margin-bottom: 30px;
}
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 40%);
  margin-right: 15px;
}
.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px 0;
  font-family: var(--default-font);
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}
@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type="submit"] {
  color: var(--default-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  border: 0;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact .php-email-form button[type="submit"]:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%);
}
.vbr-gallery-section {
  background: #fff;
  padding: 80px 0;
}
.vbr-gallery-section .container,
.vbr-gallery-section .container-fluid {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.vbr-subtitle {
  display: inline-block;
  padding: 8px 18px;
  background: #f6f6f6;
  color: #c39a45;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.vbr-title {
  color: #111;
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 15px;
}
.vbr-description {
  max-width: 700px;
  margin: 0 auto 45px;
  color: #666;
  line-height: 1.8;
}
.vbr-masonry {
  display: block;
}
.vbr-justified-row {
  display: flex;
}
.vbr-gallery-item {
  margin: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.vbr-gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  background: #fff;
}
.vbr-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}
.vbr-gallery-item:hover img {
  transform: scale(1.05);
}
.vbr-gallery-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: 0.35s;
  z-index: 2;
}
.vbr-gallery-item:hover a::before {
  opacity: 1;
}
.vbr-gallery-item a::after {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 34px;
  opacity: 0;
  transition: 0.35s;
  z-index: 3;
}
.vbr-gallery-item:hover a::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 768px) {
  .vbr-gallery-section {
    padding: 60px 0;
  }
  .vbr-gallery-section .container,
  .vbr-gallery-section .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .vbr-title {
    font-size: 30px;
  }
  .vbr-description {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .vbr-gallery-section .container,
  .vbr-gallery-section .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.services {
  position: relative;
  padding: 110px 0;
  background: #090909;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -220px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.12),
    transparent 70%
  );
}
.services::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -180px;
  bottom: -180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05),
    transparent 70%
  );
}
.services-heading {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}
.service-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.service-subtitle span {
  width: 60px;
  height: 2px;
  background: #d4af37;
  display: block;
}
.services-heading h2 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.services-heading h2 span {
  font-family: "Cardo", serif;
  font-style: italic;
  font-weight: 400;
  color: #d4af37;
}
.services-heading p {
  max-width: 720px;
  margin: auto;
  color: #bcbcbc;
  font-size: 18px;
  line-height: 32px;
}
.service-box {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 22px;
  background: #111;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transition: 0.5s;
}
.service-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.05)
  );
  transition: 0.4s;
}
.service-content {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 35px;
  z-index: 5;
}
.service-icon {
  width: 78px;
  height: 78px;
  border: 2px solid rgba(212, 175, 55, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  transition: 0.45s;
}
.service-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.service-content p {
  color: #d5d5d5;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 30px;
}
.service-content a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #d4af37;
  font-weight: 700;
  font-size: 17px;
  transition: 0.4s;
}
.service-content a i {
  transition: 0.4s;
}
.service-box:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.service-box:hover img {
  transform: scale(1.12);
}
.service-box:hover .service-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.05)
  );
}
.service-box:hover .service-icon {
  background: #d4af37;
  color: #111;
  transform: rotate(-10deg) scale(1.08);
}
.service-box:hover a {
  letter-spacing: 1px;
}
.service-box:hover a i {
  transform: translateX(10px);
}
.service-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  border: 2px solid transparent;
  transition: 0.45s;
  z-index: 2;
}
.service-box:hover::before {
  border-color: #d4af37;
}
@media (max-width: 1200px) {
  .service-box {
    height: 430px;
  }
  .services-heading h2 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .services {
    padding: 90px 0;
  }
  .services-heading {
    margin-bottom: 55px;
  }
  .services-heading h2 {
    font-size: 40px;
  }
  .service-box {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .services {
    padding: 70px 0;
  }
  .services-heading h2 {
    font-size: 30px;
  }
  .services-heading p {
    font-size: 15px;
    line-height: 28px;
  }
  .service-box {
    height: 340px;
    border-radius: 18px;
  }
  .service-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 18px;
  }
  .service-content h3 {
    font-size: 22px;
  }
  .service-content p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 18px;
  }
  .service-subtitle span {
    width: 35px;
  }
}
.vbr-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.vbr-header {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}
body.loaded .vbr-header {
  opacity: 1;
  visibility: visible;
}
.vbr-navbar {
  width: 100%;
  max-width: 1600px;
  height: 78px;
  margin: auto;
  margin-top: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vbr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}
.vbr-logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.vbr-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vbr-item {
  position: relative;
}
.vbr-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  color: #222;
  font-size: 15px;
  font-weight: 600;
  transition: 0.35s;
  border-radius: 10px;
}
.vbr-link:hover {
  color: #4f46e5;
  background: #f7f7ff;
}
.vbr-arrow {
  font-size: 11px;
  transition: 0.35s;
}
.vbr-item:hover .vbr-arrow {
  transform: rotate(180deg);
}
.vbr-dropdown {
  position: absolute;
  top: 115%;
  left: 0;
  width: 240px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: 0.35s ease;
}
.vbr-item:hover .vbr-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vbr-dropdown a {
  display: block;
  padding: 13px 18px;
  border-radius: 12px;
  color: #444;
  font-size: 14px;
  transition: 0.3s;
}
.vbr-dropdown a:hover {
  background: #f3f5ff;
  color: #4f46e5;
  padding-left: 26px;
}
.vbr-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.vbr-btn {
  padding: 13px 26px;
  border-radius: 40px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  font-weight: 600;
  transition: 0.35s;
}
.vbr-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(79, 70, 229, 0.35);
}
.vbr-toggle {
  width: 52px;
  height: 52px;
  border: none;
  background: #fff;
  border-radius: 14px;
  display: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.vbr-toggle span {
  position: absolute;
  left: 13px;
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 20px;
  transition: 0.35s;
}
.vbr-toggle span:nth-child(1) {
  top: 16px;
}
.vbr-toggle span:nth-child(2) {
  top: 24px;
}
.vbr-toggle span:nth-child(3) {
  top: 32px;
}
.vbr-mobile {
  position: fixed;
  top: 0;
  right: -370px;
  width: 340px;
  height: 100vh;
  background: #fff;
  z-index: 99999;
  transition: 0.45s;
  overflow: auto;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.15);
}
.vbr-mobile.active {
  right: 0;
}
.vbr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 9990;
}
.vbr-overlay.active {
  opacity: 1;
  visibility: visible;
}
.vbr-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 5;
}
.vbr-mobile-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}
.vbr-close {
  width: 46px;
  height: 46px;
  border: none;
  background: #f4f4f4;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.35s;
  font-size: 18px;
}
.vbr-close:hover {
  background: #4f46e5;
  color: #fff;
  transform: rotate(90deg);
}
.vbr-mobile-menu {
  padding: 18px;
}
.vbr-mobile-menu .vbr-item {
  border-bottom: 1px solid #efefef;
}
.vbr-mobile-menu .vbr-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 10px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  background: #fff;
  border-radius: 12px;
  transition: 0.3s;
}
.vbr-mobile-menu .vbr-link:hover {
  background: #f7f7ff;
  color: #4f46e5;
}
.vbr-mobile-menu .vbr-dropdown {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: #fafafa;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 10px;
  box-shadow: none;
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: max-height 0.35s ease;
}
.vbr-mobile-menu .vbr-item.active > .vbr-dropdown {
  max-height: 350px;
}
.vbr-mobile-menu .vbr-dropdown a {
  padding: 14px 18px;
  border-radius: 0;
  font-size: 14px;
  color: #666;
}
.vbr-mobile-menu .vbr-dropdown a:hover {
  background: #eef2ff;
  padding-left: 26px;
}
.vbr-mobile-menu .vbr-arrow {
  transition: 0.35s;
}
.vbr-mobile-menu .vbr-item.active .vbr-arrow {
  transform: rotate(180deg);
}
.vbr-mobile-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 28px 20px 35px;
  border-top: 1px solid #ececec;
}
.vbr-mobile-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  background: #f5f5f5;
  transition: 0.35s;
  font-size: 18px;
}
.vbr-mobile-social a:hover {
  background: #4f46e5;
  color: #fff;
  transform: translateY(-4px);
}
@media (min-width: 992px) {
  .vbr-mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .vbr-navbar {
    height: 74px;
    padding: 0 20px;
  }
  .vbr-menu {
    display: none;
  }
  .vbr-btn {
    display: none;
  }
  .vbr-toggle {
    display: block;
  }
}
@media (max-width: 576px) {
  .vbr-navbar {
    width: 95%;
    border-radius: 16px;
    margin-top: 10px;
  }
  .vbr-logo-text {
    font-size: 18px;
  }
  .vbr-mobile {
    width: 310px;
  }
}
.vbr-mobile {
  transition: right 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vbr-overlay {
  backdrop-filter: blur(4px);
}
body.vbr-lock {
  overflow: hidden;
}
.vbr-header {
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.35s ease;
}
.vbr-header.vbr-hide {
  transform: translateY(-120px);
  opacity: 0;
}
.vbr-navbar.vbr-scroll {
  height: 68px;
  margin-top: 10px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}
.vbr-logo {
  transition: 0.35s;
}
.vbr-logo:hover {
  transform: translateY(-2px);
}
.vbr-logo-icon {
  position: relative;
  overflow: hidden;
}
.vbr-logo-icon::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  left: -180%;
  top: -30%;
  transform: rotate(25deg);
  transition: 1s;
}
.vbr-logo:hover .vbr-logo-icon::before {
  left: 180%;
}
.vbr-link {
  position: relative;
  overflow: hidden;
}
.vbr-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: #4f46e5;
  transition: 0.35s;
  transform: translateX(-50%);
}
.vbr-link:hover::before {
  width: 70%;
}
.vbr-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.05);
  opacity: 0;
  transform: scale(0.7);
  transition: 0.35s;
}
.vbr-link:hover::after {
  opacity: 1;
  transform: scale(1);
}
.vbr-active {
  color: #4f46e5 !important;
}
.vbr-active::before {
  width: 70% !important;
}
.vbr-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s;
}
.vbr-item:hover .vbr-arrow {
  transform: rotate(180deg);
}
.vbr-dropdown {
  transform-origin: top center;
  animation: none;
}
.vbr-item:hover .vbr-dropdown {
  animation: vbrDropdown 0.35s ease;
}
@keyframes vbrDropdown {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.vbr-dropdown a {
  position: relative;
  overflow: hidden;
}
.vbr-dropdown a::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(79, 70, 229, 0.08),
    transparent
  );
  transition: 0.5s;
}
.vbr-dropdown a:hover::before {
  left: 100%;
}
.vbr-btn {
  position: relative;
  overflow: hidden;
}
.vbr-btn::before {
  content: "";
  position: absolute;
  left: -150%;
  top: 0;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: 0.8s;
}
.vbr-btn:hover::before {
  left: 170%;
}
.vbr-btn:active {
  transform: scale(0.95);
}
.vbr-toggle {
  transition: 0.35s;
}
.vbr-toggle:hover {
  transform: rotate(90deg);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.18);
}
.vbr-mobile {
  transition: right 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vbr-mobile.active {
  animation: vbrDrawer 0.45s;
}
@keyframes vbrDrawer {
  0% {
    transform: translateX(80px);
  }
  100% {
    transform: translateX(0);
  }
}
.vbr-mobile-social a {
  position: relative;
}
.vbr-mobile-social a:hover {
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 15px 25px rgba(79, 70, 229, 0.2);
}
.vbr-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: vbrRipple 0.6s linear;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
@keyframes vbrRipple {
  to {
    transform: scale(5);
    opacity: 0;
  }
}
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #4c4c4c;
  border-radius: 20px;
}
::-webkit-scrollbar-track {
  background: #eee;
}
.rajmehta-films {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  /*background: radial-gradient(*/
  /*  circle at top,*/
  /*  #6b5339 0%,*/
  /*  #3f3225 40%,*/
  /*  #1b1b1b 100%*/
  /*);*/
  background: #fafaf8;
}
/*.rajmehta-films::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 700px;*/
/*  height: 700px;*/
/*  left: -250px;*/
/*  top: -250px;*/
/*  border-radius: 50%;*/
/*  background: rgba(190, 160, 116, 0.08);*/
/*  filter: blur(120px);*/
/*}*/
/*.rajmehta-films::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 600px;*/
/*  height: 600px;*/
/*  right: -250px;*/
/*  bottom: -250px;*/
/*  border-radius: 50%;*/
/*  background: rgba(255, 255, 255, 0.04);*/
/*  filter: blur(120px);*/
/*}*/
.rmf-head {
  position: relative;
  text-align: center;
  margin-bottom: 70px;
  z-index: 2;
}
.rmf-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 26px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(190, 160, 116, 0.3);
  color: #000000;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.rmf-head h2 {
  margin-top: 22px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 74px);
  font-weight: 800;
  color: #000000;
  line-height: 1.1;
}
.rmf-head h2 span {
  background: linear-gradient(90deg, #0d0909, #bea074, #090606);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rmf-head p {
  max-width: 700px;
  margin: auto;
  color: #bfbfbf;
  font-size: 17px;
  line-height: 30px;
}
.rmf-scroll {
  margin-top: 35px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(190, 160, 116, 0.3);
}
.rmf-wheel {
  width: 26px;
  height: 40px;
  border: 2px solid #bea074;
  border-radius: 20px;
  position: relative;
}
.rmf-wheel:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  left: 50%;
  transform: translateX(-50%);
  top: 6px;
  border-radius: 10px;
  background: #bea074;
  animation: rmwheel 1.5s infinite;
}
@keyframes rmwheel {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 22px;
    opacity: 0;
  }
}
.rm-card {
  position: relative;
  overflow: hidden;
  background: #ddcaae;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.45s;
  height: 100%;
}
.rm-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(190, 160, 116, 0.3);
}
.rm-frame {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.rm-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.rm-actions {
  position: absolute;
  right: 18px;
  bottom: 20px;
  z-index: 10;
}
.rm-popup {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: 0.35s;
}
.rm-popup:hover {
  transform: scale(1.12);
  background: #bea074;
  color: #fff;
}
.rm-info {
  padding: 22px;
}
.rm-type {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.14);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.rm-info h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  transition: 0.3s;
}
.rm-card:hover h5 {
  color: black;
}
.goverlay {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(12px);
}
.gclose,
.gnext,
.gprev {
  background: rgba(255, 255, 255, 0.12) !important;
  border-radius: 50% !important;
}
@media (max-width: 768px) {
  .rmf-head h2 {
    font-size: 42px;
  }
  .rm-actions {
    right: 14px;
    bottom: 82px;
  }
  .rm-popup {
    width: 46px;
    height: 46px;
  }
  .rm-info {
    padding: 18px;
  }
  .rm-info h5 {
    font-size: 20px;
  }
}
.rmf-text {
  color: #000000 !important;
}
.rjm-header,
.rjm-header *,
.rjm-header *::before,
.rjm-header *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
}
.rjm-header {
  font-family: var(--nav-font);
  color: #111;
  line-height: 1.5;
}
.rjm-header a {
  text-decoration: none;
}
.rjm-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rjm-header img {
  max-width: 100%;
  height: auto;
  display: block;
}
.rjm-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: 0.35s;
  pointer-events: auto;
}
.rjm-header.rjm-fixed {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.rjm-navbar {
  max-width: 1600px;
  height: 82px;
  margin: auto;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  transition: 0.35s;
  position: relative;
  z-index: 999999;
  box-shadow: var(--rjm-shadow);
}
.rjm-navbar.rjm-scroll {
  margin-top: 0;
  height: 72px;
  border-radius: 0;
  max-width: 100%;
  padding: 0 40px;
}
.rjm-logo {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.rjm-logo img {
  height: 80px;
  width: auto;
  transition: 0.35s;
}
.rjm-navbar.rjm-scroll .rjm-logo img {
  height: 52px;
}
.rjm-logo::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -150%;
  width: 60%;
  height: 160%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: skewX(-25deg);
  transition: 1s;
}
.rjm-logo:hover::before {
  left: 180%;
}
.rjm-menu {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2px;
}
.rjm-item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.rjm-link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #111;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.rjm-link span {
  position: relative;
  z-index: 2;
}
.rjm-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  transform: scale(0);
  opacity: 0.75;
  z-index: 1;
  animation: rjmRipple 0.6s linear;
}
@keyframes rjmRipple {
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
.rjm-link:hover {
  color: var(--rjm-primary);
}
.rjm-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c89b57, #f5d197);
  transform: translateX(-50%);
  transition: 0.35s;
}
.rjm-link:hover::before {
  width: 70%;
}
.rjm-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(200, 155, 87, 0.06);
  opacity: 0;
  transform: scale(0.8);
  transition: 0.35s;
  border-radius: 10px;
}
.rjm-link:hover::after {
  opacity: 1;
  transform: scale(1);
}
.rjm-active {
  color: var(--rjm-primary) !important;
}
.rjm-active::before {
  width: 70% !important;
}
.rjm-link i {
  font-size: 11px;
  margin-left: 8px;
  transition: 0.35s;
}
.rjm-dropdown-parent:hover .rjm-link i {
  transform: rotate(180deg);
}
.rjm-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rjm-btn {
  padding: 13px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #c89b57, #a97b38);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.rjm-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(200, 155, 87, 0.35);
}
.rjm-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #fff;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(25px);
  transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 99999;
}
.rjm-dropdown-parent:hover > .rjm-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.rjm-dropdown a {
  display: flex;
  align-items: center;
  padding: 15px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  color: #555;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.rjm-dropdown a:hover {
  background: #faf6ef;
  color: var(--rjm-primary);
}
.rjm-dropdown a::before {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transition: 0.8s;
}
.rjm-dropdown a:hover::before {
  left: 130%;
}
.rjm-toggle {
  width: 52px;
  height: 52px;
  display: none;
  border: none;
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.35s;
}
.rjm-toggle:hover {
  transform: rotate(90deg);
}
.rjm-toggle span {
  position: absolute;
  left: 13px;
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 50px;
  transition: 0.35s;
}
.rjm-toggle span:nth-child(1) {
  top: 16px;
}
.rjm-toggle span:nth-child(2) {
  top: 24px;
}
.rjm-toggle span:nth-child(3) {
  top: 32px;
}
.rjm-toggle.active span:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}
.rjm-toggle.active span:nth-child(2) {
  opacity: 0;
}
.rjm-toggle.active span:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}
.rjm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 999998;
}
.rjm-overlay.active {
  opacity: 1;
  visibility: visible;
}
.rjm-mobile {
  position: fixed;
  top: 0;
  right: -420px;
  width: 370px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -25px 0 60px rgba(0, 0, 0, 0.15);
  transition: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 999999;
  overflow-y: auto;
}
.rjm-mobile.active {
  right: 0;
}
.rjm-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.rjm-mobile-logo img {
  height: 62px;
}
.rjm-close {
  width: 46px;
  height: 46px;
  border: none;
  cursor: pointer;
  background: #f5f5f5;
  border-radius: 14px;
  font-size: 18px;
  transition: 0.35s;
}
.rjm-close:hover {
  background: var(--rjm-primary);
  color: #fff;
  transform: rotate(180deg);
}
.rjm-search-box {
  display: flex;
  margin: 22px;
  height: 52px;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #ececec;
  background: #fafafa;
}
.rjm-search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 18px;
  font-size: 14px;
}
.rjm-search-box button {
  width: 56px;
  border: none;
  cursor: pointer;
  background: var(--rjm-primary);
  color: #fff;
}
.rjm-mobile-menu {
  padding: 0 20px 20px;
}
.rjm-mobile-menu li {
  border-bottom: 1px solid #f1f1f1;
}
.rjm-mobile-menu li > a,
.rjm-mobile-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.35s;
}
.rjm-mobile-menu li > a:hover,
.rjm-mobile-title:hover {
  background: #faf6ef;
  color: var(--rjm-primary);
  border-radius: 12px;
}
.rjm-mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fafafa;
  border-radius: 12px;
}
.rjm-mobile-dropdown.active .rjm-mobile-submenu {
  max-height: 400px;
}
.rjm-mobile-submenu a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  color: #666;
  transition: 0.35s;
}
.rjm-mobile-submenu a:hover {
  padding-left: 32px;
  background: #f7f2e8;
  color: var(--rjm-primary);
}
.rjm-mobile-btn {
  padding: 24px;
}
.rjm-mobile-btn a {
  display: block;
  padding: 15px;
  text-align: center;
  border-radius: 50px;
  background: linear-gradient(135deg, #c89b57, #a97b38);
  color: #fff;
  font-weight: 600;
  transition: 0.35s;
}
.rjm-mobile-btn a:hover {
  transform: translateY(-3px);
}
.rjm-mobile-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 25px;
  margin-top: auto;
  border-top: 1px solid #eee;
}
.rjm-mobile-social a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  font-size: 18px;
  transition: 0.35s;
  animation: rjmFloat 3s ease-in-out infinite;
}
.rjm-mobile-social a:nth-child(2) {
  animation-delay: 0.2s;
}
.rjm-mobile-social a:nth-child(3) {
  animation-delay: 0.4s;
}
.rjm-mobile-social a:nth-child(4) {
  animation-delay: 0.6s;
}
.rjm-mobile-social a:nth-child(5) {
  animation-delay: 0.8s;
}
.rjm-mobile-social a:hover {
  background: var(--rjm-primary);
  color: #fff;
  transform: translateY(-8px) scale(1.1);
}
@keyframes rjmFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.rjm-header.rjm-fixed {
  animation: rjmHeader 0.45s ease;
}
@keyframes rjmHeader {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.rjm-navbar.rjm-scroll {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}
.rjm-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999999;
  pointer-events: none;
}
.rjm-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #c89b57, #ffdb9c, #c89b57);
  transition: width 0.15s linear;
}
body.rjm-lock .rjm-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.rjm-mobile {
  z-index: 99999999;
}
.rjm-overlay {
  z-index: 99999998;
}
section,
main,
.container,
.row,
.gallery,
.gallery-item,
.swiper,
.swiper-wrapper,
.swiper-slide {
  position: relative;
  z-index: 1;
}
.rjm-header,
.rjm-navbar {
  z-index: 9;
}
.rjm-navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.2)
  );
  pointer-events: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.rjm-btn {
  overflow: hidden;
  position: relative;
}
.rjm-btn::before {
  content: "";
  position: absolute;
  left: -150%;
  top: 0;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: 0.8s;
}
.rjm-btn:hover::before {
  left: 170%;
}
.rjm-navbar,
.rjm-mobile,
.rjm-dropdown,
.rjm-link,
.rjm-btn {
  will-change: transform, opacity;
}
@media (min-width: 992px) {
  .rjm-mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .rjm-menu {
    display: none;
  }
  .rjm-btn {
    display: none;
  }
  .rjm-toggle {
    display: block;
  }
  .rjm-navbar {
    width: 100%;
    padding: 0 20px;
    height: 74px;
  }
  .rjm-logo img {
    height: 48px;
  }
}
@media (max-width: 576px) {
  .rjm-navbar {
    width: 100%;
    height: 70px;
    padding: 0 16px;
  }
  .rjm-logo img {
    height: 42px;
  }
  .rjm-mobile {
    width: 330px;
  }
  .rjm-search-box {
    margin: 18px;
  }
  .rjm-mobile-social {
    padding: 20px;
  }
  .rjm-mobile-social a {
    width: 46px;
    height: 46px;
    font-size: 17px;
  }
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #4c4c4c;
  border-radius: 30px;
}
::-webkit-scrollbar-track {
  background: #efefef;
}
::selection {
  background: #c89b57;
  color: #fff;
}
.rjm-link {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.rjm-link:hover {
  transform: none;
}
.rjm-link::after {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transition: 0.8s;
  pointer-events: none;
}
.rjm-link:hover::after {
  left: 130%;
}
.rjm-dropdown {
  transform-origin: top center;
}
.rjm-dropdown-parent:hover .rjm-dropdown {
  animation: rjmDrop 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes rjmDrop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.rjm-mobile.active {
  animation: rjmDrawer 0.45s ease;
}
@keyframes rjmDrawer {
  0% {
    transform: translateX(60px);
    opacity: 0.6;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.rjm-mobile-social a {
  position: relative;
  overflow: hidden;
}
.rjm-mobile-social a::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: radial-gradient(rgba(255, 255, 255, 0.45), transparent 60%);
  animation: rjmGlow 3s linear infinite;
}
@keyframes rjmGlow {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.rjm-btn {
  position: relative;
  overflow: hidden;
}
.rjm-btn::after {
  content: "";
  position: absolute;
  left: -150%;
  top: 0;
  width: 70%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: 0.8s;
}
.rjm-btn:hover::after {
  left: 180%;
}
.rjm-btn,
.rjm-toggle,
.rjm-close,
.rjm-link {
  position: relative;
  overflow: hidden;
}
body.rjm-loaded .rjm-header {
  animation: rjmFade 0.6s ease;
}
@keyframes rjmFade {
  0% {
    opacity: 0;
    transform: translateY(-25px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.rjm-link {
  background-repeat: no-repeat;
  transition: background 0.25s, color 0.35s, transform 0.35s;
}
.rjm-header {
  isolation: isolate;
}
.rjm-mobile {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.rjm-overlay {
  touch-action: none;
}
.rjm-dropdown {
  pointer-events: auto;
}
.rjm-header *,
.rjm-navbar *,
.rjm-mobile * {
  box-sizing: border-box;
}
.vbrf-footer-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.vbrf-footer-wrapper {
  max-width: 1600px;
  margin: auto;
  padding: 40px;
  position: relative;
  overflow: hidden;
  /*background: linear-gradient(135deg, #706b6b, #514c4c 45%, #938a8a);*/
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  /*box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45),*/
  /*  inset 0 1px 0 rgba(255, 255, 255, 0.05);*/
  font-family: var(--heading-font);
}
.vbrf-footer-wrapper:before,
.vbrf-footer-wrapper:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
/*.vbrf-footer-wrapper:before {*/
/*  width: 450px;*/
/*  height: 450px;*/
/*  left: -220px;*/
/*  top: -220px;*/
/*  background: radial-gradient(*/
/*    circle,*/
/*    rgba(190, 160, 116, 0.12),*/
/*    transparent 70%*/
/*  );*/
/*  animation: vbrf-glow 8s infinite alternate;*/
/*}*/
/*.vbrf-footer-wrapper:after {*/
/*  width: 420px;*/
/*  height: 420px;*/
/*  right: -220px;*/
/*  bottom: -220px;*/
/*  background: radial-gradient(*/
/*    circle,*/
/*    rgba(255, 255, 255, 0.05),*/
/*    transparent 70%*/
/*  );*/
/*  animation: vbrf-glow 8s infinite alternate-reverse;*/
/*}*/
.vbrf-social {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}
.vbrf-social-item {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  /*background: linear-gradient(145deg, #202020, #121212);*/
  background: rgba(221, 202, 174, 0.4);
  border: 1px solid rgba(190, 160, 116, 0.18);
  border-radius: 18px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.35s;
}
.vbrf-social-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(190, 160, 116, 0.22);
}
.vbrf-social-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transition: 0.8s;
}
.vbrf-social-item:hover:before {
  left: 160%;
}
.vbrf-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ebe4e0, #908885);
  font-size: 26px;
  color: #fff;
  /*animation: vbrf-float 2.6s ease-in-out infinite,*/
  /*  vbrf-pulse 3s ease-in-out infinite;*/
}
.vbrf-title {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
.vbrf-desc {
  margin-top: 8px;
  color: #000000;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}
.vbrf-link {
  margin-top: 14px;
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.vbrf-footer-note {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #000000;
  line-height: 2;
}
.vbrf-footer-note b {
  color: #bdbdbd;
}
@keyframes vbrf-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes vbrf-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(190, 160, 116, 0.2);
  }
  50% {
    box-shadow: 0 0 24px rgba(190, 160, 116, 0.45);
  }
}
@keyframes vbrf-glow {
  from {
    transform: scale(1) rotate(0);
  }
  to {
    transform: scale(1.18) rotate(10deg);
  }
}
@media (max-width: 768px) {
  .vbrf-footer-wrapper {
    padding: 22px;
  }
  .vbrf-social {
    grid-template-columns: 1fr;
  }
}
.gbtn,
.gprev,
.gnext,
.gclose {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: #fafaf8 !important;
  border: 1px solid #e8e2dd !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}
.gbtn svg,
.gprev svg,
.gnext svg,
.gclose svg {
  stroke: #1a1a1a !important;
  stroke-width: 2.3 !important;
  width: 22px !important;
  height: 22px !important;
  transition: 0.35s;
}
.gbtn:hover,
.gprev:hover,
.gnext:hover,
.gclose:hover {
  background: #b89b72 !important;
  border-color: #b89b72 !important;
  transform: translateY(-4px);
}
.gbtn:hover svg,
.gprev:hover svg,
.gnext:hover svg,
.gclose:hover svg {
  stroke: #ffffff !important;
}
.gclose {
  top: 28px !important;
  right: 28px !important;
}
.gprev {
  left: 25px !important;
}
.gnext {
  right: 25px !important;
}
.goverlay {
  background: rgba(18, 18, 18, 0.94) !important;
  backdrop-filter: blur(8px);
}
@media (max-width: 1450px) {
  .rjm-link {
    font-size: 14px;
    padding: 0 10px;
  }
}
.scroll-top {
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #110f0c, #060505) !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 8px 25px rgba(217, 179, 125, 0.45) !important;
  transition: all 0.35s ease !important;
  z-index: 99999 !important;
}
.scroll-top i {
  font-size: 30px !important;
  color: #fff !important;
  transition: 0.35s !important;
}
.scroll-top:hover {
 background: linear-gradient(135deg, #110f0c, #060505) !important;
  transform: translateY(-6px) scale(1.08) !important;
  box-shadow: 0 15px 35px rgba(217, 179, 125, 0.6) !important;
}
.scroll-top:hover i {
  transform: translateY(-2px) !important;
  color: #fff !important;
}
.scroll-top:focus,
.scroll-top:active {
  color: #fff !important;
  outline: none !important;
}
