/* google fonts start */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
/* google fonts end */

:root {
  /* colors */
  --text-primary: #171a20;
  --text-secondary: rgba(0, 0, 0, 0.5);
  --base-transition: 0.4s all ease;
  /* font family */
  --font-primary: "Red Hat Display", sans-serif;
  --font-secondary: "Plus Jakarta Sans", sans-serif;

  /* all text sizes */
  --text--base: 16px;
  --text--lg: 20px;
  --text-2xl: 24px;
  --text-4xl: 32px;
  --text-6xl: 48px;
  --text-9xl: 90px;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--white);
}

.main_wrapper.blurred .bg_overly {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  inset: 0;
  background-color: #0000009a;
  backdrop-filter: blur(32px);
  z-index: 100;
}
.open--sidebar {
  display: none;
}

/* Note: ZH navbar section start */
.fr-header-section {
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  /* background-color: #ebe7e49a; */
}
.fr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  font-family: var(--font-primary);
}

.fr-logo {
  width: 100%;
  max-width: 250px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fr-logo img {
  width: 250px;
  height: 40px;
}

.fr-logo-text strong {
  font-size: 14px;
  color: #000;
}

.fr-logo-text span {
  font-size: 12px;
  color: #666;
}

.fr-nav {
  display: flex;
  gap: 42px;
}

.fr-nav a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  transition: color 0.3s;
  font-weight: 500;
  font-family: var(--font-primary);
}

.fr-nav a:hover {
  color: #a6905d;
}

.fr-nav .highlighted {
  color: #a6905d;
}

.fr-contact-button a {
  background-color: #a6905d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
}

.fr-contact-button a:hover {
  background-color: #a6905d;
}
/* Note: ZH navbar section end */

/* home hero starts here  */
.fr-hero {
  width: 100%;
  margin-left: auto; /* Center the container */
  margin-right: auto;
  margin-top: 160px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: stretch;
}

.fr-hero-left {
  flex: 1;
  background: #bfa873; /* luxury brown color */
  color: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 30px;
}

.fr-hero-left h1 {
  font-size: 64px;
  max-width: 650px;
  font-family: var(--font-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.fr-hero-left h1 i {
  color: #fff;
  margin: 0 10px;
}

.fr-hero-left p {
  font-size: var(--text--lg);
  font-family: var(--font-primary);
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.67);
}

.fr-trusted {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 10px;
}

.fr-trusted img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.fr-trusted span {
  color: #ffffff;
  margin-left: 15px;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.fr-search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  max-width: 600px;
}

.fr-search-box input {
  border: none;
  padding: 18px 20px;
  flex: 1;
  outline: none;
  font-size: 16px;
  font-family: var(--font-primary);
}

.fr-search-box button {
  background: #d39d47;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--font-primary);
  border-radius: 50px;
  transition: background 0.3s;
}

.fr-search-box button:hover {
  background: #b8862b;
}

/* Hero Banner right side */
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 850px;
  height: 600px;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* Rotating Circle */
/* Rotating Circle (bottom right) */
.circle-text {
  position: absolute;
  bottom: -40px; /* distance from bottom */
  right: -80px; /* distance from right */
  width: 100px;
  height: 100px;
  animation: rotate 4s linear infinite;
  transform: none; /* remove translateX(-50%) since it's bottom-right */
}

.circle-text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrow Icon (center of circle) */
.check-icon {
  position: absolute;
  bottom: -5px; /* same as circle-text */
  right: 10px;
  transform: translate(0, 0); /* reset */
  font-size: 24px;
  color: white;
  line-height: 100px; /* vertically center if needed */
}

/* Rotation animation */
@keyframes rotate {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

/* home hero ends here  */

/* contact starts here  */
.fr-contact {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fr-contact-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.fr-contact-text p {
  max-width: 550px;
  font-size: 38px;
  font-weight: 500;
  color: #2b4846;
  font-family: var(--font-primary);
}

/* CSS */
.fr-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  border: 2px solid #bfa873; /* gold-like color */
  border-radius: 50px;
  color: #bfa873;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  overflow: hidden;
}

.fr-contact-btn .icon {
  display: inline-block;
  transition: transform 0.3s ease;
  background-color: #a6905d;
  padding: 10px 14px;
  border-radius: 50%;
  color: white;
}

.fr-contact-btn:hover .icon {
  transform: rotate(-30deg);
  background-color: white;
}
.fr-contact-btn .icon i {
  transition: transform 0.3s ease;
}

.fr-contact-btn:hover .icon i {
  /* only rotate, keep red */
  transform: rotate(-30deg);
  color: #a6905d; /* explicitly keep red on hover */
}

.fr-contact-btn:hover {
  background-color: #a6905d;
  color: #fff;
}

.fr-contact-star {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
}

.fr-star1 {
  width: 100%;
  padding: 40px 80px;
  background-color: #e2e2e2;
  border-radius: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fr-star1 p {
  font-size: 48px;
  font-weight: 500;
  color: #2b4846;
  font-family: var(--font-primary);
}
.fr-star1 span {
  font-size: 24px;
  font-weight: 500;
  color: #2b4846;
  font-family: var(--font-primary);
}
.fr-star2 {
  width: 100%;
  padding: 40px 80px;
  background-color: #a6905d;
  border-radius: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fr-star2 p {
  font-size: 48px;
  font-weight: 500;
  color: white;
  font-family: var(--font-primary);
}
.fr-star2 span {
  font-size: 24px;
  font-weight: 500;
  color: white;
  font-family: var(--font-primary);
}
.fr-star3 {
  width: 100%;
  padding: 40px 80px;
  background-color: #5132031c;
  border-radius: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fr-star3 p {
  font-size: 48px;
  font-weight: 500;
  color: #a6905d;
  font-family: var(--font-primary);
}
.fr-star3 span {
  font-size: 24px;
  font-weight: 500;
  color: #a6905d;
  font-family: var(--font-primary);
}

/* contact ends here  */

/* gallery starts here  */
.fr-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fr-gallery-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.fr-gallery-text p {
  max-width: 550px;
  font-size: 38px;
  font-weight: 500;
  color: #2b4846;
  font-family: var(--font-primary);
}

/* CSS */
.fr-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  border: 2px solid #bfa873; /* gold-like color */
  border-radius: 50px;
  color: #bfa873;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  overflow: hidden;
}

.fr-gallery-btn .icon {
  display: inline-block;
  transition: transform 0.3s ease;
  background-color: #a6905d;
  padding: 10px 14px;
  border-radius: 50%;
  color: white;
}

.fr-gallery-btn:hover .icon {
  transform: rotate(-30deg);
  background-color: white;
}
.fr-gallery-btn .icon i {
  transition: transform 0.3s ease;
}

.fr-gallery-btn:hover .icon i {
  /* only rotate, keep red */
  transform: rotate(-30deg);
  color: #a6905d; /* explicitly keep red on hover */
}

.fr-gallery-btn:hover {
  background-color: #a6905d;
  color: #fff;
}

.fr-gallery-image {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fr-gallery-item {
  border-radius: 20px;
  overflow: hidden; /* hides zoom overflow */
  cursor: pointer;
}

.fr-gallery-img {
  border-radius: 20px;
  height: 480px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fr-gallery-img:hover {
  transform: scale(1.1);
}

/* gallery ends here  */

/* service starts here  */
.fr-service {
  width: 100%;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 100px 0px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.fr-service-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.fr-service-text h2 {
  font-size: 38px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: #2b4846;
  text-align: center;
}
.fr-service-text p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 20px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: rgba(24, 56, 53, 0.67);
  text-align: center;
}

.fr-service-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fr-service-card-inner {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
  cursor: pointer;
}

.fr-service-card-inner:hover {
  background-color: #a6905d;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
  cursor: pointer;
}

.fr-service-card-inner span {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(81, 50, 3, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fr-service-card-inner span:hover {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fr-service-card-inner span i {
  color: #a6905d;
  align-items: center;
}
.fr-service-card-inner:hover span i {
  color: white;
  align-items: center;
}

.fr-service-card-inner h3 {
  text-align: start;
  font-size: 24px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: #183835;
}
.fr-service-card-inner:hover h3 {
  text-align: start;
  font-size: 24px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: white;
}
.fr-service-card-inner p {
  text-align: start;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: rgba(24, 56, 53, 0.4);
}
.fr-service-card-inner:hover p {
  text-align: start;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: rgba(81, 50, 3, 0.65);
}
/* service ends here  */

/* property starts here  */
.fr-property {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.fr-video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.fr-video-container video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Button style (same for play and pause) */
.fr-play-pause-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  border: none;
  outline: none;
  transition: opacity 0.3s ease;
}

/* Hide button by default */
#playPauseBtn {
  opacity: 0;
  pointer-events: none; /* Prevent click when hidden */
}

/* Show button on hover over video */
.fr-video-container:hover #playPauseBtn {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

/* Always show when video is paused */
#playPauseBtn.show {
  opacity: 1;
  pointer-events: auto;
}

/* Hide play icon when not hovering and video is playing */
.hidden {
  opacity: 0;
}

.fr-video-description {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.fr-video-description h2 {
  max-width: 530px;
  font-size: 38px;
  font-weight: 500;
  color: #2b4846;
  font-family: var(--font-primary);
  text-align: center;
}
.fr-video-description p {
  max-width: 650px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(24, 56, 53, 0.67);
  font-family: var(--font-primary);
  text-align: center;
}
/* property ends here  */

/* swiper testimonial starts here  */
.fr-swiper-testimonials {
  width: 100%;
  margin: 60px auto;
  padding: 0 20px;
  background-color: #fafafa;
  padding-top: 72px;
  padding-bottom: 72px;
}

.fr-swiper-testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.fr-swiper-text {
  font-size: 38px;
  color: #2b4846;
  font-family: var(--font-primary);
  font-weight: 500;
  margin: 0;
}

/* arrows top-right */
.swiper-nav {
  display: flex;
  gap: 10px;
}
.swiper-button-next,
.swiper-button-prev {
  position: static !important; /* remove default positioning */
  margin: 0 !important;
  background: #fafafa;
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  border: 1px solid #a6905d;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  position: static !important; /* remove default positioning */
  margin: 0 !important;
  background: #a6905d;
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  border: 1px solid #a6905d;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  color: #a6905d;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: #fff; /* on hover */
}

.fr-swiper-testimonial-card {
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  transition: all 0.3s ease;
  color: #333;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}
.fr-swiper-testimonial-card:hover {
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  transition: all 0.3s ease;
  color: white;
  background: #a6905d;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fr-swiper-testimonial-card:hover p {
  color: white;
}
.fr-swiper-testimonial-card:hover .catering {
  background: rgba(255, 255, 255, 0.14);
}

.fr-swiper-testimonial-card:hover .fr-author {
  font-size: var(--text--lg);
  font-weight: 500;
  color: white;
  font-family: var(--font-primary);
}

.catering {
  width: fit-content;
  padding: 5px 12px;
  border-radius: 71px;
  font-size: 12px;
  background: #a8dadc;
}

.fr-swiper-catering-subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #023047;
  font-family: var(--font-primary);
}
.fr-author-stars {
  display: flex;
  justify-content: space-between;
}

.fr-author {
  font-size: var(--text--lg);
  font-weight: 500;
  color: #023047;
  font-family: var(--font-primary);
}

.stars i {
  color: #f1c40f;
  font-size: 14px;
}
/* swiper testimonial ends here   */

/* work starts here  */
.fr-work {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fr-work-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.fr-work-text p {
  max-width: 550px;
  font-size: 38px;
  font-weight: 500;
  color: #2b4846;
  font-family: var(--font-primary);
}

/* CSS */
.fr-work-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  border: 2px solid #bfa873; /* gold-like color */
  border-radius: 50px;
  color: #bfa873;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  overflow: hidden;
}

.fr-work-btn .icon {
  display: inline-block;
  transition: transform 0.3s ease;
  background-color: #a6905d;
  padding: 10px 14px;
  border-radius: 50%;
  color: white;
}

.fr-work-btn:hover .icon {
  transform: rotate(-30deg);
  background-color: white;
}
.fr-work-btn .icon i {
  transition: transform 0.3s ease;
}

.fr-work-btn:hover .icon i {
  /* only rotate, keep red */
  transform: rotate(-30deg);
  color: #a6905d; /* explicitly keep red on hover */
}

.fr-work-btn:hover {
  background-color: #a6905d;
  color: #fff;
}

.fr-work-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.fr-work-card-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #fafafa;
  border-radius: 30px;
  padding: 32px;
}

.fr-work-card-inner h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: #2b4846;
}
.fr-work-card-inner p {
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: rgba(24, 56, 53, 0.67);
}

.fr-work-image {
  width: 100%;
  height: 390px; /* Fixed height to contain image */
  overflow: hidden;
  border-radius: 30px; /* Optional for rounded corners */
  position: relative;
}

.fr-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps aspect ratio and fills */
  transition: transform 0.4s ease-in-out;
  cursor: pointer;
}

.fr-work-image img:hover {
  transform: scale(1.05); /* Zoom in */
}

/* work ends here  */

/* contact form starts here  */
.fr-contact-form {
  background-image: url("../../images/home_contact_image.jpg");
  background-size: cover; /* Makes image cover the entire area */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents tiling */
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  background-blend-mode: overlay;
}
.fr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 100px;
}

.fr-text-box {
  color: white;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fr-text-box h2 {
  font-size: 48px;
  font-family: var(--font-primary);
  font-weight: 600;
  color: #ffffff;
}

.fr-text-box p {
  font-size: 20px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: #ffffff;
}

.fr-form-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  max-width: 710px;
  min-width: 710px;
  backdrop-filter: blur(6px);
}

.fr-form-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fr-form-box input,
.fr-form-box textarea {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  outline: none;
  font-size: 18px;
  color: #fff !important;
  width: 100%;
  background-color: transparent;
  font-family: var(--font-primary);
}

.fr-form-box input::placeholder,
.fr-form-box textarea::placeholder {
  color: white;
}

.fr-form-box input:focus,
.fr-form-box textarea:focus {
  border-color: #b89a5e;
}

.fr-form-box .name-fields {
  display: flex;
  gap: 10px;
}

.fr-form-box button {
  padding: 12px;
  background: #a6905d;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: var(--font-primary);
}

.fr-form-box button:hover {
  background: #a1854f;
}
/* contact form ends here  */

/* subscription starts here  */
.fr-subscription {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  gap: 24px;
}

.fr-subscription-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  background-color: #a6905d;
  border-radius: 30px;
  padding: 40px;
}

.fr-subscription-left h1 {
  color: white;
  font-size: 64px;
  font-weight: 600;
  font-family: var(--font-primary);
}
.fr-subscription-left p {
  color: rgba(81, 50, 3, 0.67);
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.fr-input {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  max-width: 600px;
  margin-top: 15px;
}

.fr-input input {
  border: none;
  padding: 18px 20px;
  flex: 1;
  outline: none;
  font-size: 16px;
  font-family: var(--font-primary);
}

.fr-input button {
  background: #d39d47;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--font-primary);
  border-radius: 50px;
  transition: background 0.3s;
}

.fr-input button:hover {
  background: #b8862b;
}

.fr-subscription-right {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 30px;
  cursor: pointer;
}

.fr-subscription-right img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover; /* Keeps aspect ratio and fills */
  transition: transform 0.5s ease; /* Smooth transition */
}

.fr-subscription-right img:hover {
  transform: scale(1.1); /* Zoom in on hover */
}

/* subscription ends her

/* responsive starts here */

@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1720px;
  }
}
/* laptop devices */
@media only screen and (min-width: 1201px) and (max-width: 1365px) {
  /* home hero starts here  */
  .fr-hero {
    width: 100%;
    margin-left: auto; /* Center the container */
    margin-right: auto;
    margin-top: 160px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
  }

  .fr-hero-left {
    flex: 1;
    background: #bfa873; /* luxury brown color */
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 30px;
    min-width: 50%;
  }

  .fr-hero-left h1 {
    font-size: 56px;
    max-width: 650px;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .fr-hero-left h1 i {
    color: #fff;
    margin: 0 10px;
  }

  .fr-hero-left p {
    font-size: var(--text--lg);
    font-family: var(--font-primary);
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.67);
  }

  .fr-trusted {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .fr-trusted img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
  }

  .fr-trusted span {
    color: #ffffff;
    margin-left: 15px;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-primary);
  }

  .fr-search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
  }

  .fr-search-box input {
    border: none;
    padding: 18px 20px;
    flex: 1;
    outline: none;
    font-size: 16px;
    font-family: var(--font-primary);
  }

  .fr-search-box button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }

  .fr-search-box button:hover {
    background: #b8862b;
  }

  /* Hero Banner right side */
  .hero-banner {
    position: relative;
    width: 100%;
    max-width: 850px;
    height: 600px;
  }

  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
  }

  /* Rotating Circle */
  /* Rotating Circle (bottom right) */
  .circle-text {
    position: absolute;
    bottom: -40px; /* distance from bottom */
    right: -80px; /* distance from right */
    width: 100px;
    height: 100px;
    animation: rotate 4s linear infinite;
    transform: none; /* remove translateX(-50%) since it's bottom-right */
  }

  .circle-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Arrow Icon (center of circle) */
  .check-icon {
    position: absolute;
    bottom: -5px; /* same as circle-text */
    right: 10px;
    transform: translate(0, 0); /* reset */
    font-size: 24px;
    color: white;
    line-height: 100px; /* vertically center if needed */
  }

  /* Rotation animation */
  @keyframes rotate {
    from {
      transform: translateX(-50%) rotate(0deg);
    }
    to {
      transform: translateX(-50%) rotate(360deg);
    }
  }

  /* home hero ends here  */

  /* contact starts here  */
  .fr-contact-star {
    gap: 20px;
  }

  .fr-star1 {
    width: 100%;
    padding: 20px 30px !important;
    background-color: #e2e2e2;
    border-radius: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fr-star2 {
    padding: 20px 30px !important;
  }
  .fr-star3 {
    padding: 20px 30px !important;
  }
  .fr-star1 p {
    font-size: var(--text-4xl);
  }
  .fr-star1 span {
    font-size: var(--text--lg);
  }
  .fr-star2 p {
    font-size: var(--text-4xl);
  }
  .fr-star2 span {
    font-size: var(--text--lg);
  }

  .fr-star3 p {
    font-size: var(--text-4xl);
  }
  .fr-star3 span {
    font-size: var(--text--lg);
  }

  /* contact ends here  */

  /* swiper testimonial starts here  */
  .fr-swiper-testimonials {
    width: 100%;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #fafafa;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .fr-swiper-testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .fr-swiper-text {
    font-size: 38px;
    color: #2b4846;
    font-family: var(--font-primary);
    font-weight: 500;
    margin: 0;
  }

  /* arrows top-right */
  .swiper-nav {
    display: flex;
    gap: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #fafafa;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #a6905d;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px !important;
    color: #a6905d;
  }

  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    color: #fff; /* on hover */
  }

  .fr-swiper-testimonial-card {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: #333;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
  }
  .fr-swiper-testimonial-card:hover {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: white;
    background: #a6905d;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fr-swiper-testimonial-card:hover p {
    color: white;
  }
  .fr-swiper-testimonial-card:hover .catering {
    background: rgba(255, 255, 255, 0.14);
  }

  .fr-swiper-testimonial-card:hover .fr-author {
    font-size: var(--text--lg);
    font-weight: 500;
    color: white;
    font-family: var(--font-primary);
  }

  .catering {
    width: fit-content;
    padding: 5px 12px;
    border-radius: 71px;
    font-size: 12px;
    background: #a8dadc;
  }

  .fr-swiper-catering-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #023047;
    font-family: var(--font-primary);
  }
  .fr-author-stars {
    display: flex;
    justify-content: space-between;
  }

  .fr-author {
    font-size: var(--text--lg);
    font-weight: 500;
    color: #023047;
    font-family: var(--font-primary);
  }

  .stars i {
    color: #f1c40f;
    font-size: 14px;
  }
  /* swiper testimonial ends here   */

  /* contact form  */
  .fr-form-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    max-width: 710px;
    min-width: 500px;
    backdrop-filter: blur(6px);
  }

  /* subscription section  */
  .fr-subscription-left h1 {
    color: white;
    font-size: var(--text-6xl);
    font-weight: 600;
    font-family: var(--font-primary);
  }
}

/* large tablet devices */
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  /* home hero starts here  */
  .fr-hero {
    width: 100%;
    margin-left: auto; /* Center the container */
    margin-right: auto;
    margin-top: 160px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
  }

  .fr-hero-left {
    flex: 1;
    background: #bfa873; /* luxury brown color */
    color: white;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 30px;
    min-width: 50%;
  }

  .fr-hero-left h1 {
    font-size: var(--text-4xl);
    max-width: 650px;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .fr-hero-left h1 i {
    color: #fff;
    margin: 0 10px;
  }

  .fr-hero-left p {
    font-size: var(--text--base);
    font-family: var(--font-primary);
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.67);
  }

  .fr-trusted {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .fr-trusted img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
  }

  .fr-trusted span {
    color: #ffffff;
    margin-left: 15px;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-primary);
  }

  .fr-search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
  }

  .fr-search-box input {
    border: none;
    padding: 18px 20px;
    flex: 1;
    outline: none;
    font-size: 16px;
    font-family: var(--font-primary);
  }

  .fr-search-box button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }

  .fr-search-box button:hover {
    background: #b8862b;
  }

  /* Hero Banner right side */
  .hero-banner {
    position: relative;
    width: 100%;
    max-width: 850px;
    height: 400px;
  }

  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
  }

  /* Rotating Circle */
  /* Rotating Circle (bottom right) */
  .circle-text {
    position: absolute;
    bottom: -40px; /* distance from bottom */
    right: -80px; /* distance from right */
    width: 100px;
    height: 100px;
    animation: rotate 4s linear infinite;
    transform: none; /* remove translateX(-50%) since it's bottom-right */
  }

  .circle-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Arrow Icon (center of circle) */
  .check-icon {
    position: absolute;
    bottom: -5px; /* same as circle-text */
    right: 10px;
    transform: translate(0, 0); /* reset */
    font-size: 24px;
    color: white;
    line-height: 100px; /* vertically center if needed */
  }

  /* Rotation animation */
  @keyframes rotate {
    from {
      transform: translateX(-50%) rotate(0deg);
    }
    to {
      transform: translateX(-50%) rotate(360deg);
    }
  }

  /* home hero ends here  */

  /* contact section  */
  .fr-contact {
    padding-top: 72px;
    padding-bottom: 72px;
    gap: 20px;
  }

  .fr-contact-star {
    gap: 20px;
  }

  .fr-contact-text p {
    font-size: var(--text-4xl);
  }
  .fr-star1 {
    width: 100%;
    padding: 16px 20px !important;
    background-color: #e2e2e2;
    border-radius: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fr-star2 {
    padding: 16px 20px !important;
  }
  .fr-star3 {
    padding: 16px 20px !important;
  }
  .fr-star1 p {
    font-size: var(--text-2xl);
  }
  .fr-star1 span {
    font-size: var(--text--base);
  }
  .fr-star2 p {
    font-size: var(--text-2xl);
  }
  .fr-star2 span {
    font-size: var(--text--base);
  }

  .fr-star3 p {
    font-size: var(--text-2xl);
  }
  .fr-star3 span {
    font-size: var(--text--base);
  }

  /* gallery section  */
  .fr-gallery {
    gap: 32px;
  }
  .fr-gallery-text p {
    font-size: var(--text-4xl);
  }

  /* service section  */

  .fr-service {
    margin: 72px 0px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .fr-service-text h2 {
    font-size: var(--text-4xl);
  }

  .fr-service-card-inner {
    padding: 20px;
  }
  .fr-service-card-inner:hover {
    padding: 20px;
  }
  .fr-service-card-inner h3 {
    font-size: 20px;
  }
  .fr-service-card-inner:hover h3 {
    font-size: 20px;
  }

  /* property starts here  */
  .fr-property {
    padding-bottom: 10px;
  }

  .fr-video-container {
    height: 300px;
  }

  .fr-play-pause-button {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    outline: none;
    transition: opacity 0.3s ease;
  }

  .fr-video-description h2 {
    font-size: 32px;
  }
  .fr-video-description p {
    font-size: 18px;
  }
  /* property ends here  */

  /* swiper testimonial starts here  */
  .fr-swiper-testimonials {
    width: 100%;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #fafafa;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fr-swiper-testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .fr-swiper-text {
    font-size: 32px;
    color: #2b4846;
    font-family: var(--font-primary);
    font-weight: 500;
    margin: 0;
  }

  /* arrows top-right */
  .swiper-nav {
    display: flex;
    gap: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #fafafa;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #a6905d;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px !important;
    color: #a6905d;
  }

  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    color: #fff; /* on hover */
  }

  .fr-swiper-testimonial-card {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: #333;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
  }
  .fr-swiper-testimonial-card:hover {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: white;
    background: #a6905d;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fr-swiper-testimonial-card:hover p {
    color: white;
  }
  .fr-swiper-testimonial-card:hover .catering {
    background: rgba(255, 255, 255, 0.14);
  }

  .fr-swiper-testimonial-card:hover .fr-author {
    font-size: var(--text--lg);
    font-weight: 500;
    color: white;
    font-family: var(--font-primary);
  }

  .catering {
    width: fit-content;
    padding: 5px 12px;
    border-radius: 71px;
    font-size: 12px;
    background: #a8dadc;
  }

  .fr-swiper-catering-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #023047;
    font-family: var(--font-primary);
  }
  .fr-author-stars {
    display: flex;
    justify-content: space-between;
  }

  .fr-author {
    font-size: var(--text--lg);
    font-weight: 500;
    color: #023047;
    font-family: var(--font-primary);
  }

  .stars i {
    color: #f1c40f;
    font-size: 14px;
  }
  /* swiper testimonial ends here   */

  /* work starts here  */
  .fr-work {
    padding-top: 0px;
    padding-bottom: 60px;
    gap: 30px;
  }

  .fr-work-text p {
    font-size: 32px;
  }

  .fr-work-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fr-work-card-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #fafafa;
    border-radius: 30px;
    padding: 20px;
  }

  .fr-work-card-inner h2 {
    font-size: 20px;
  }
  .fr-work-card-inner p {
    font-size: 18px;
  }

  .fr-work-image {
    height: 300px;
  }
  /* work ends here  */

  /* contact form starts here  */
  .fr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fr-text-box {
    color: white;
    max-width: 580px;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .fr-text-box h2 {
    font-size: 32px;
    text-align: center;
  }

  .fr-text-box p {
    font-size: 18px;
    text-align: center;
  }

  .fr-form-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    backdrop-filter: blur(6px);
  }

  /* contact form ends here  */

  /* subscription starts here  */
  .fr-subscription {
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    gap: 20px;
  }

  .fr-subscription-left {
    padding: 20px;
  }

  .fr-subscription-left h1 {
    font-size: var(--text-4xl);
  }
  .fr-subscription-left p {
    font-size: 18px;
  }

  .fr-input {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
    margin-top: 15px;
  }

  .fr-input input {
    border: none;
    padding: 18px 20px;
    flex: 1;
    outline: none;
    font-size: 16px;
    font-family: var(--font-primary);
  }

  .fr-input button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }

  .fr-input button:hover {
    background: #b8862b;
  }

  .fr-subscription-right {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 30px;
  }

  .fr-subscription-right img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover; /* Keeps aspect ratio and fills */
    transition: transform 0.5s ease; /* Smooth transition */
  }

  .fr-subscription-right img:hover {
    transform: scale(1.1); /* Zoom in on hover */
  }

  /* subscription ends here */
}

/* medium tablet devices */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* home hero starts here  */
  .fr-hero {
    width: 100%;
    margin-left: auto; /* Center the container */
    margin-right: auto;
    margin-top: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
  }

  .fr-hero-left {
    flex: 1;
    background: #bfa873; /* luxury brown color */
    color: white;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 30px;
    min-width: 50%;
  }

  .fr-hero-left h1 {
    font-size: var(--text-4xl);
    max-width: 650px;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .fr-hero-left h1 i {
    color: #fff;
    margin: 0 10px;
  }

  .fr-hero-left p {
    font-size: var(--text--base);
    font-family: var(--font-primary);
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.67);
  }

  .fr-trusted {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .fr-trusted img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
  }

  .fr-trusted span {
    color: #ffffff;
    margin-left: 15px;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-primary);
  }

  .fr-search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
  }

  .fr-search-box input {
    border: none;
    padding: 18px 20px;
    flex: 1;
    outline: none;
    font-size: 16px;
    font-family: var(--font-primary);
  }

  .fr-search-box button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }

  .fr-search-box button:hover {
    background: #b8862b;
  }

  /* Hero Banner right side */
  .hero-banner {
    position: relative;
    width: 100%;
    max-width: 850px;
    height: 350px;
  }

  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
  }

  /* Rotating Circle */
  /* Rotating Circle (bottom right) */
  .circle-text {
    position: absolute;
    bottom: -40px; /* distance from bottom */
    right: -80px; /* distance from right */
    width: 100px;
    height: 100px;
    animation: rotate 4s linear infinite;
    transform: none; /* remove translateX(-50%) since it's bottom-right */
  }

  .circle-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Arrow Icon (center of circle) */
  .check-icon {
    position: absolute;
    bottom: -5px; /* same as circle-text */
    right: 10px;
    transform: translate(0, 0); /* reset */
    font-size: 24px;
    color: white;
    line-height: 100px; /* vertically center if needed */
  }

  /* Rotation animation */
  @keyframes rotate {
    from {
      transform: translateX(-50%) rotate(0deg);
    }
    to {
      transform: translateX(-50%) rotate(360deg);
    }
  }

  /* home hero ends here  */

  /* contact section  */
  .fr-contact {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 30px;
  }

  .fr-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-contact-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }
  .fr-contact-star {
    gap: 20px;
  }

  .fr-contact-text p {
    font-size: 28px;
    max-width: 500px;
  }
  .fr-star1 {
    width: 100%;
    padding: 12px 16px !important;
    background-color: #e2e2e2;
    border-radius: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fr-star2 {
    padding: 12px 16px !important;
  }
  .fr-star3 {
    padding: 12px 16px !important;
  }
  .fr-star1 p {
    font-size: 22px;
  }
  .fr-star1 span {
    font-size: var(--text--base);
  }
  .fr-star2 p {
    font-size: 22px;
  }
  .fr-star2 span {
    font-size: var(--text--base);
  }

  .fr-star3 p {
    font-size: 22px;
  }
  .fr-star3 span {
    font-size: var(--text--base);
  }

  /* gallery starts here  */
  .fr-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .fr-gallery-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .fr-gallery-text p {
    max-width: 550px;
    font-size: 28px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
  }

  /* CSS */
  .fr-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-gallery-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }

  .fr-gallery-btn:hover .icon {
    transform: rotate(-30deg);
    background-color: white;
  }
  .fr-gallery-btn .icon i {
    transition: transform 0.3s ease;
  }

  .fr-gallery-btn:hover .icon i {
    /* only rotate, keep red */
    transform: rotate(-30deg);
    color: #a6905d; /* explicitly keep red on hover */
  }

  .fr-gallery-btn:hover {
    background-color: #a6905d;
    color: #fff;
  }

  .fr-gallery-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fr-gallery-item {
    border-radius: 20px;
    overflow: hidden; /* hides zoom overflow */
    cursor: pointer;
  }

  .fr-gallery-img {
    border-radius: 20px;
    height: 480px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .fr-gallery-img:hover {
    transform: scale(1.1);
  }

  /* gallery ends here  */

  /* service starts here  */
  .fr-service {
    width: 100%;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px 0px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .fr-service-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  .fr-service-text h2 {
    font-size: 28px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: #2b4846;
    text-align: center;
  }
  .fr-service-text p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(24, 56, 53, 0.67);
    text-align: center;
  }

  .fr-service-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fr-service-card-inner {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    cursor: pointer;
  }

  .fr-service-card-inner:hover {
    background-color: #a6905d;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    cursor: pointer;
  }

  .fr-service-card-inner span {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(81, 50, 3, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fr-service-card-inner span:hover {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fr-service-card-inner span i {
    color: #a6905d;
    align-items: center;
  }
  .fr-service-card-inner:hover span i {
    color: white;
    align-items: center;
  }

  .fr-service-card-inner h3 {
    text-align: start;
    font-size: var(--text--lg);
    font-family: var(--font-primary);
    font-weight: 500;
    color: #183835;
  }
  .fr-service-card-inner:hover h3 {
    text-align: start;
    font-size: var(--text--lg);
    font-family: var(--font-primary);
    font-weight: 500;
    color: white;
  }
  .fr-service-card-inner p {
    text-align: start;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(24, 56, 53, 0.4);
  }
  .fr-service-card-inner:hover p {
    text-align: start;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(81, 50, 3, 0.65);
  }
  /* service ends here  */

  /* property starts here  */
  .fr-property {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding-bottom: 0px;
  }

  .fr-video-container {
    width: 100%;
    position: relative;
    height: 350px;
    border-radius: 30px !important;
  }

  video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 30px;
    object-fit: cover;
    overflow: hidden;
  }

  .fr-play-pause-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 24px;
    padding: 12px 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
  }

  .fr-video-description {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .fr-video-description h2 {
    max-width: 530px;
    font-size: 28px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
    text-align: center;
  }
  .fr-video-description p {
    max-width: 650px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(24, 56, 53, 0.67);
    font-family: var(--font-primary);
    text-align: center;
  }
  /* property ends here  */

  /* swiper testimonial starts here  */
  .fr-swiper-testimonials {
    width: 100%;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #fafafa;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fr-swiper-testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .fr-swiper-text {
    font-size: 28px;
    color: #2b4846;
    font-family: var(--font-primary);
    font-weight: 500;
    margin: 0;
  }

  /* arrows top-right */
  .swiper-nav {
    display: flex;
    gap: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #fafafa;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #a6905d;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px !important;
    color: #a6905d;
  }

  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    color: #fff; /* on hover */
  }

  .fr-swiper-testimonial-card {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: #333;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
  }
  .fr-swiper-testimonial-card:hover {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: white;
    background: #a6905d;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fr-swiper-testimonial-card:hover p {
    color: white;
  }
  .fr-swiper-testimonial-card:hover .catering {
    background: rgba(255, 255, 255, 0.14);
  }

  .fr-swiper-testimonial-card:hover .fr-author {
    font-size: var(--text--lg);
    font-weight: 500;
    color: white;
    font-family: var(--font-primary);
  }

  .catering {
    width: fit-content;
    padding: 5px 12px;
    border-radius: 71px;
    font-size: 12px;
    background: #a8dadc;
  }

  .fr-swiper-catering-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #023047;
    font-family: var(--font-primary);
  }
  .fr-author-stars {
    display: flex;
    justify-content: space-between;
  }

  .fr-author {
    font-size: 18px;
    font-weight: 500;
    color: #023047;
    font-family: var(--font-primary);
  }

  .fr-swiper-testimonial-card:hover .fr-author {
    font-size: 18px;
    font-weight: 500;
    color: white;
    font-family: var(--font-primary);
  }

  .stars i {
    color: #f1c40f;
    font-size: 14px;
  }
  /* swiper testimonial ends here   */

  /* work starts here  */
  .fr-work {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fr-work-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .fr-work-text p {
    max-width: 550px;
    font-size: 28px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
  }

  /* CSS */
  .fr-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-work-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }

  .fr-work-btn:hover .icon {
    transform: rotate(-30deg);
    background-color: white;
  }
  .fr-work-btn .icon i {
    transition: transform 0.3s ease;
  }

  .fr-work-btn:hover .icon i {
    /* only rotate, keep red */
    transform: rotate(-30deg);
    color: #a6905d; /* explicitly keep red on hover */
  }

  .fr-work-btn:hover {
    background-color: #a6905d;
    color: #fff;
  }

  .fr-work-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fr-work-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    background-color: #fafafa;
    border-radius: 30px;
    padding: 20px;
  }

  .fr-work-card-inner h2 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #2b4846;
  }
  .fr-work-card-inner p {
    font-size: var(--text--base);
    font-weight: 400;
    font-family: var(--font-primary);
    color: rgba(24, 56, 53, 0.67);
  }

  .fr-work-image {
    width: 100%;
    height: 200px; /* Fixed height to contain image */
    overflow: hidden;
    border-radius: 20px; /* Optional for rounded corners */
    position: relative;
  }

  .fr-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps aspect ratio and fills */
    transition: transform 0.4s ease-in-out;
    cursor: pointer;
  }

  .fr-work-image img:hover {
    transform: scale(1.05); /* Zoom in */
  }

  /* work ends here  */

  /* contact form starts here  */
  .fr-contact-form {
    background-image: url("../../images/home_contact_image.jpg");
    background-size: cover; /* Makes image cover the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    background-blend-mode: overlay;
  }
  .fr-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fr-text-box {
    color: white;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .fr-text-box h2 {
    font-size: 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
  }

  .fr-text-box p {
    font-size: var(--text-base);
    font-family: var(--font-primary);
    font-weight: 400;
    color: #ffffff;
    text-align: center;
  }

  .fr-form-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    max-width: 710px;
    min-width: 710px;
    backdrop-filter: blur(6px);
  }

  .fr-form-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fr-form-box input,
  .fr-form-box textarea {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    color: #fff !important;
    width: 100%;
    background-color: transparent;
    font-family: var(--font-primary);
  }

  .fr-form-box input::placeholder,
  .fr-form-box textarea::placeholder {
    color: white;
  }

  .fr-form-box input:focus,
  .fr-form-box textarea:focus {
    border-color: #b89a5e;
  }

  .fr-form-box .name-fields {
    display: flex;
    gap: 10px;
  }

  .fr-form-box button {
    padding: 12px;
    background: #a6905d;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--font-primary);
  }

  .fr-form-box button:hover {
    background: #a1854f;
  }
  /* contact form ends here  */

  /* subscription starts here  */
  .fr-subscription {
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .fr-subscription-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    background-color: #a6905d;
    border-radius: 30px;
    padding: 20px;
  }

  .fr-subscription-left h1 {
    color: white;
    font-size: var(--text-4xl);
    font-weight: 600;
    font-family: var(--font-primary);
  }
  .fr-subscription-left p {
    color: rgba(81, 50, 3, 0.67);
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-primary);
  }

  .fr-input {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
    margin-top: 15px;
  }

  .fr-input input {
    border: none;
    padding: 18px 20px;
    flex: 1;
    outline: none;
    font-size: 16px;
    font-family: var(--font-primary);
  }

  .fr-input button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }

  .fr-input button:hover {
    background: #b8862b;
  }

  .fr-subscription-right {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 30px;
  }

  .fr-subscription-right img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover; /* Keeps aspect ratio and fills */
    transition: transform 0.5s ease; /* Smooth transition */
  }

  .fr-subscription-right img:hover {
    transform: scale(1.1); /* Zoom in on hover */
  }

  /* subscription ends here  */
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* home hero starts here  */
  .fr-hero {
    width: 100%;
    margin-left: auto; /* Center the container */
    margin-right: auto;
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
  }

  .fr-hero-left {
    flex: 1;
    background: #bfa873; /* luxury brown color */
    color: white;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 30px;
  }

  .fr-hero-left h1 {
    font-size: var(--text-4xl);
    max-width: 650px;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .fr-hero-left h1 i {
    color: #fff;
    margin: 0 10px;
  }

  .fr-hero-left p {
    font-size: 18px;
    font-family: var(--font-primary);
    line-height: 1.3;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.67);
  }
  .fr-trusted {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 10px;
  }
  .fr-trusted img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
  }

  .fr-trusted span {
    color: #ffffff;
    margin-left: 15px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
  }

  .fr-search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
  }

  .fr-search-box input {
    border: none;
    padding: 10px 16px;
    flex: 1;
    outline: none;
    font-size: 16px;
    font-family: var(--font-primary);
  }

  .fr-search-box button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 6px 16px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }
  .fr-search-box button:hover {
    background: #b8862b;
  }

  /* Hero Banner right side */
  .hero-banner {
    position: relative;
    width: 100%;
    max-width: 850px;
    height: 350px;
  }

  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
  }

  /* Rotating Circle */
  /* Rotating Circle (bottom right) */
  .circle-text {
    position: absolute;
    bottom: -40px; /* distance from bottom */
    right: -80px; /* distance from right */
    width: 100px;
    height: 100px;
    animation: rotate 4s linear infinite;
    transform: none; /* remove translateX(-50%) since it's bottom-right */
  }

  .circle-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Arrow Icon (center of circle) */
  .check-icon {
    position: absolute;
    bottom: -5px; /* same as circle-text */
    right: 10px;
    transform: translate(0, 0); /* reset */
    font-size: 24px;
    color: white;
    line-height: 100px; /* vertically center if needed */
  }

  /* Rotation animation */
  @keyframes rotate {
    from {
      transform: translateX(-50%) rotate(0deg);
    }
    to {
      transform: translateX(-50%) rotate(360deg);
    }
  }

  /* home hero ends here  */

  /* contact section  */
  .fr-contact {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 30px;
  }

  .fr-contact-text {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
  }
  .fr-contact-btn {
    display: inline-flex;
    align-items: center;
    min-width: 160px;
    gap: 10px;
    padding: 8px 10px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-contact-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }
  .fr-contact-star {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
  }

  .fr-contact-text p {
    font-size: 28px;
  }
  .fr-star1 {
    width: 100%;
    padding: 24px 16px !important;
    background-color: #e2e2e2;
    border-radius: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fr-star2 {
    padding: 24px 16px !important;
  }
  .fr-star3 {
    padding: 24px 16px !important;
  }
  .fr-star1 p {
    font-size: 22px;
  }
  .fr-star1 span {
    font-size: var(--text--base);
  }
  .fr-star2 p {
    font-size: 22px;
  }
  .fr-star2 span {
    font-size: var(--text--base);
  }

  .fr-star3 p {
    font-size: 22px;
  }
  .fr-star3 span {
    font-size: var(--text--base);
  }

  /* gallery starts here  */
  .fr-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fr-gallery-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .fr-gallery-text p {
    max-width: 550px;
    font-size: 28px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
  }

  /* CSS */
  .fr-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-gallery-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }

  .fr-gallery-btn:hover .icon {
    transform: rotate(-30deg);
    background-color: white;
  }
  .fr-gallery-btn .icon i {
    transition: transform 0.3s ease;
  }

  .fr-gallery-btn:hover .icon i {
    /* only rotate, keep red */
    transform: rotate(-30deg);
    color: #a6905d; /* explicitly keep red on hover */
  }

  .fr-gallery-btn:hover {
    background-color: #a6905d;
    color: #fff;
  }

  .fr-gallery-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fr-gallery-item {
    border-radius: 20px;
    overflow: hidden; /* hides zoom overflow */
    cursor: pointer;
  }

  .fr-gallery-img {
    border-radius: 20px;
    height: 350px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .fr-gallery-img:hover {
    transform: scale(1.1);
  }

  /* gallery ends here  */

  /* service starts here  */
  .fr-service {
    width: 100%;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px 0px;
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .fr-service-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  .fr-service-text h2 {
    font-size: 28px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: #2b4846;
    text-align: center;
  }
  .fr-service-text p {
    max-width: 450px;
    margin: 0 auto;
    font-size: var(--text--base);
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(24, 56, 53, 0.67);
    text-align: center;
  }

  .fr-service-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fr-service-card-inner {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    cursor: pointer;
  }

  .fr-service-card-inner:hover {
    background-color: #a6905d;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    cursor: pointer;
  }

  .fr-service-card-inner span {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(81, 50, 3, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fr-service-card-inner span:hover {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fr-service-card-inner span i {
    color: #a6905d;
    align-items: center;
  }
  .fr-service-card-inner:hover span i {
    color: white;
    align-items: center;
  }

  .fr-service-card-inner h3 {
    text-align: start;
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: #183835;
  }
  .fr-service-card-inner:hover h3 {
    text-align: start;
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: white;
  }
  .fr-service-card-inner p {
    text-align: start;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(24, 56, 53, 0.4);
  }
  .fr-service-card-inner:hover p {
    text-align: start;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(81, 50, 3, 0.65);
  }
  /* service ends here  */

  /* property starts here  */
  .fr-property {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding-bottom: 0px;
  }

  .fr-video-container {
    width: 100%;
    position: relative;
    height: 320px;
    border-radius: 20px !important;
  }

  video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 30px;
    object-fit: cover;
    overflow: hidden;
  }

  .fr-play-pause-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 24px;
    padding: 12px 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
  }

  .fr-video-description {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .fr-video-description h2 {
    max-width: 500px;
    font-size: 28px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
    text-align: center;
  }
  .fr-video-description p {
    max-width: 650px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(24, 56, 53, 0.67);
    font-family: var(--font-primary);
    text-align: center;
  }
  /* property ends here  */

  /* swiper testimonial starts here  */
  .fr-swiper-testimonials {
    width: 100%;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #fafafa;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fr-swiper-testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .fr-swiper-text {
    font-size: 28px;
    color: #2b4846;
    font-family: var(--font-primary);
    font-weight: 500;
    margin: 0;
  }

  /* arrows top-right */
  .swiper-nav {
    display: flex;
    gap: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #fafafa;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #a6905d;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px !important;
    color: #a6905d;
  }

  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    color: #fff; /* on hover */
  }

  .fr-swiper-testimonial-card {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: #333;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
  }
  .fr-swiper-testimonial-card:hover {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: white;
    background: #a6905d;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fr-swiper-testimonial-card:hover p {
    color: white;
  }
  .fr-swiper-testimonial-card:hover .catering {
    background: rgba(255, 255, 255, 0.14);
  }

  .fr-swiper-testimonial-card:hover .fr-author {
    font-size: var(--text--lg);
    font-weight: 500;
    color: white;
    font-family: var(--font-primary);
  }

  .catering {
    width: fit-content;
    padding: 5px 12px;
    border-radius: 71px;
    font-size: 12px;
    background: #a8dadc;
  }

  .fr-swiper-catering-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #023047;
    font-family: var(--font-primary);
  }
  .fr-author-stars {
    display: flex;
    justify-content: space-between;
  }

  .fr-author {
    font-size: 18px;
    font-weight: 500;
    color: #023047;
    font-family: var(--font-primary);
  }

  .fr-swiper-testimonial-card:hover .fr-author {
    font-size: 18px;
    font-weight: 500;
    color: white;
    font-family: var(--font-primary);
  }

  .stars i {
    color: #f1c40f;
    font-size: 14px;
  }
  /* swiper testimonial ends here   */

  /* work starts here  */
  .fr-work {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fr-work-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .fr-work-text p {
    max-width: 500px;
    font-size: 28px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
  }

  /* CSS */
  .fr-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-work-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }

  .fr-work-btn:hover .icon {
    transform: rotate(-30deg);
    background-color: white;
  }
  .fr-work-btn .icon i {
    transition: transform 0.3s ease;
  }

  .fr-work-btn:hover .icon i {
    /* only rotate, keep red */
    transform: rotate(-30deg);
    color: #a6905d; /* explicitly keep red on hover */
  }

  .fr-work-btn:hover {
    background-color: #a6905d;
    color: #fff;
  }

  .fr-work-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fr-work-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    background-color: #fafafa;
    border-radius: 20px;
    padding: 20px;
  }

  .fr-work-card-inner h2 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #2b4846;
  }
  .fr-work-card-inner p {
    font-size: var(--text--base);
    font-weight: 400;
    font-family: var(--font-primary);
    color: rgba(24, 56, 53, 0.67);
  }

  .fr-work-image {
    width: 100%;
    height: 150px; /* Fixed height to contain image */
    overflow: hidden;
    border-radius: 16px; /* Optional for rounded corners */
    position: relative;
  }

  .fr-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps aspect ratio and fills */
    transition: transform 0.4s ease-in-out;
    cursor: pointer;
  }

  .fr-work-image img:hover {
    transform: scale(1.05); /* Zoom in */
  }

  /* work ends here  */

  /* contact form starts here  */
  .fr-contact-form {
    background-image: url("../../images/home_contact_image.jpg");
    background-size: cover; /* Makes image cover the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    background-blend-mode: overlay;
  }
  .fr-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fr-text-box {
    color: white;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fr-text-box h2 {
    font-size: 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
  }

  .fr-text-box p {
    font-size: var(--text-base);
    font-family: var(--font-primary);
    font-weight: 400;
    color: #ffffff;
    text-align: center;
  }

  .fr-form-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    max-width: 516px;
    min-width: 516px;
    backdrop-filter: blur(6px);
  }

  .fr-form-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fr-form-box input,
  .fr-form-box textarea {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    color: #fff !important;
    width: 100%;
    background-color: transparent;
    font-family: var(--font-primary);
  }

  .fr-form-box input::placeholder,
  .fr-form-box textarea::placeholder {
    color: white;
  }

  .fr-form-box input:focus,
  .fr-form-box textarea:focus {
    border-color: #b89a5e;
  }

  .fr-form-box .name-fields {
    display: flex;
    gap: 10px;
  }

  .fr-form-box button {
    padding: 12px;
    background: #a6905d;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--font-primary);
  }

  .fr-form-box button:hover {
    background: #a1854f;
  }
  /* contact form ends here  */

  /* subscription starts here  */
  .fr-subscription {
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .fr-subscription-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    background-color: #a6905d;
    border-radius: 20px;
    padding: 20px;
  }

  .fr-subscription-left h1 {
    color: white;
    font-size: var(--text-4xl);
    font-weight: 600;
    font-family: var(--font-primary);
  }
  .fr-subscription-left p {
    color: rgba(81, 50, 3, 0.67);
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-primary);
  }

  .fr-input {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
    margin-top: 15px;
  }

  .fr-input input {
    border: none;
    padding: 10px 16px;
    flex: 1;
    outline: none;
    font-size: 16px;
    font-family: var(--font-primary);
  }

  .fr-input button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 6px 16px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }

  .fr-input button:hover {
    background: #b8862b;
  }

  .fr-subscription-right {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
  }

  .fr-subscription-right img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover; /* Keeps aspect ratio and fills */
    transition: transform 0.5s ease; /* Smooth transition */
  }

  .fr-subscription-right img:hover {
    transform: scale(1.1); /* Zoom in on hover */
  }

  /* subscription ends here  */
}

@media only screen and (min-width: 480px) and (max-width: 575px) {
  /* home hero starts here  */
  .fr-hero {
    width: 100%;
    margin-left: auto; /* Center the container */
    margin-right: auto;
    margin-top: 110px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
  }

  .fr-hero-left {
    flex: 1;
    background: #bfa873; /* luxury brown color */
    color: white;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
  }

  .fr-hero-left h1 {
    font-size: var(--text-4xl);
    max-width: 650px;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .fr-hero-left h1 i {
    color: #fff;
    margin: 0 10px;
  }

  .fr-hero-left p {
    font-size: 18px;
    font-family: var(--font-primary);
    line-height: 1.3;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.67);
  }

  .fr-trusted {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 10px;
  }

  .fr-trusted img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
  }

  .fr-trusted span {
    color: #ffffff;
    margin-left: 15px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
  }

  .fr-search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
  }

  .fr-search-box input {
    border: none;
    padding: 10px 16px;
    flex: 1;
    outline: none;
    font-size: 16px;
    font-family: var(--font-primary);
  }

  .fr-search-box button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 6px 16px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }

  .fr-search-box button:hover {
    background: #b8862b;
  }

  /* Hero Banner right side */
  .hero-banner {
    position: relative;
    width: 100%;
    max-width: 850px;
    height: 350px;
  }

  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* Rotating Circle */
  /* Rotating Circle (bottom right) */
  .circle-text {
    position: absolute;
    bottom: -40px; /* distance from bottom */
    right: -48px; /* distance from right */
    width: 80px;
    height: 80px;
    animation: rotate 4s linear infinite;
    transform: none; /* remove translateX(-50%) since it's bottom-right */
  }

  .circle-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Arrow Icon (center of circle) */
  .check-icon {
    position: absolute;
    bottom: -12px; /* same as circle-text */
    right: 22px;
    transform: translate(0, 0); /* reset */
    font-size: 24px;
    color: white;
    line-height: 100px; /* vertically center if needed */
  }

  /* Rotation animation */
  @keyframes rotate {
    from {
      transform: translateX(-50%) rotate(0deg);
    }
    to {
      transform: translateX(-50%) rotate(360deg);
    }
  }

  /* home hero ends here  */

  /* contact section  */
  .fr-contact {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 30px;
  }

  .fr-contact-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }
  .fr-contact-btn {
    display: inline-flex;
    align-items: center;
    min-width: 160px;
    gap: 10px;
    padding: 8px 10px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-contact-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }
  .fr-contact-star {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
  }

  .fr-contact-text p {
    font-size: 28px;
    text-align: center;
  }
  .fr-star1 {
    width: 100%;
    padding: 16px 16px !important;
    background-color: #e2e2e2;
    border-radius: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fr-star2 {
    padding: 16px 16px !important;
  }
  .fr-star3 {
    padding: 16px 16px !important;
  }
  .fr-star1 p {
    font-size: 20px;
  }
  .fr-star1 span {
    font-size: var(--text--base);
  }
  .fr-star2 p {
    font-size: 20px;
  }
  .fr-star2 span {
    font-size: var(--text--base);
  }

  .fr-star3 p {
    font-size: 20px;
  }
  .fr-star3 span {
    font-size: var(--text--base);
  }

  /* gallery starts here  */
  .fr-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fr-gallery-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }
  .fr-gallery-text p {
    max-width: 550px;
    font-size: 28px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
  }

  /* CSS */
  .fr-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-gallery-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }

  .fr-gallery-btn:hover .icon {
    transform: rotate(-30deg);
    background-color: white;
  }
  .fr-gallery-btn .icon i {
    transition: transform 0.3s ease;
  }

  .fr-gallery-btn:hover .icon i {
    /* only rotate, keep red */
    transform: rotate(-30deg);
    color: #a6905d; /* explicitly keep red on hover */
  }

  .fr-gallery-btn:hover {
    background-color: #a6905d;
    color: #fff;
  }

  .fr-gallery-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fr-gallery-item {
    border-radius: 20px;
    overflow: hidden; /* hides zoom overflow */
    cursor: pointer;
  }

  .fr-gallery-img {
    border-radius: 20px;
    height: 350px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .fr-gallery-img:hover {
    transform: scale(1.1);
  }

  /* gallery ends here  */

  /* service starts here  */
  .fr-service {
    width: 100%;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px 0px;
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .fr-service-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  .fr-service-text h2 {
    font-size: 28px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: #2b4846;
    text-align: center;
  }
  .fr-service-text p {
    max-width: 450px;
    margin: 0 auto;
    font-size: var(--text--base);
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(24, 56, 53, 0.67);
    text-align: center;
  }

  .fr-service-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fr-service-card-inner {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    cursor: pointer;
  }

  .fr-service-card-inner:hover {
    background-color: #a6905d;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    cursor: pointer;
  }

  .fr-service-card-inner span {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(81, 50, 3, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fr-service-card-inner span:hover {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fr-service-card-inner span i {
    color: #a6905d;
    align-items: center;
  }
  .fr-service-card-inner:hover span i {
    color: white;
    align-items: center;
  }

  .fr-service-card-inner h3 {
    text-align: start;
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: #183835;
  }
  .fr-service-card-inner:hover h3 {
    text-align: start;
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: white;
  }
  .fr-service-card-inner p {
    text-align: start;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(24, 56, 53, 0.4);
  }
  .fr-service-card-inner:hover p {
    text-align: start;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(81, 50, 3, 0.65);
  }
  /* service ends here  */

  /* property starts here  */
  .fr-property {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding-bottom: 0px;
  }

  .fr-video-container {
    width: 100%;
    position: relative;
    height: 250px;
    border-radius: 20px !important;
  }

  video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 30px;
    object-fit: cover;
    overflow: hidden;
  }

  .fr-play-pause-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    outline: none;
    transition: opacity 0.3s ease;
  }

  .fr-video-description {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .fr-video-description h2 {
    max-width: 500px;
    font-size: 28px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
    text-align: center;
  }
  .fr-video-description p {
    max-width: 650px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(24, 56, 53, 0.67);
    font-family: var(--font-primary);
    text-align: center;
  }
  /* property ends here  */

  /* swiper testimonial starts here  */
  .fr-swiper-testimonials {
    width: 100%;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #fafafa;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fr-swiper-testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .fr-swiper-text {
    font-size: 28px;
    color: #2b4846;
    font-family: var(--font-primary);
    font-weight: 500;
    margin: 0;
  }

  /* arrows top-right */
  .swiper-nav {
    display: flex;
    gap: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #fafafa;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #a6905d;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px !important;
    color: #a6905d;
  }

  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    color: #fff; /* on hover */
  }

  .fr-swiper-testimonial-card {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: #333;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
  }
  .fr-swiper-testimonial-card:hover {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: white;
    background: #a6905d;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fr-swiper-testimonial-card:hover p {
    color: white;
  }
  .fr-swiper-testimonial-card:hover .catering {
    background: rgba(255, 255, 255, 0.14);
  }

  .fr-swiper-testimonial-card:hover .fr-author {
    font-size: var(--text--lg);
    font-weight: 500;
    color: white;
    font-family: var(--font-primary);
  }

  .catering {
    width: fit-content;
    padding: 5px 12px;
    border-radius: 71px;
    font-size: 12px;
    background: #a8dadc;
  }

  .fr-swiper-catering-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #023047;
    font-family: var(--font-primary);
  }
  .fr-author-stars {
    display: flex;
    justify-content: space-between;
  }

  .fr-author {
    font-size: 18px;
    font-weight: 500;
    color: #023047;
    font-family: var(--font-primary);
  }

  .fr-swiper-testimonial-card:hover .fr-author {
    font-size: 18px;
    font-weight: 500;
    color: white;
    font-family: var(--font-primary);
  }

  .stars i {
    color: #f1c40f;
    font-size: 14px;
  }
  /* swiper testimonial ends here   */

  /* work starts here  */
  .fr-work {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fr-work-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }
  .fr-work-text p {
    max-width: 500px;
    font-size: 28px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
  }

  /* CSS */
  .fr-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-work-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }

  .fr-work-btn:hover .icon {
    transform: rotate(-30deg);
    background-color: white;
  }
  .fr-work-btn .icon i {
    transition: transform 0.3s ease;
  }

  .fr-work-btn:hover .icon i {
    /* only rotate, keep red */
    transform: rotate(-30deg);
    color: #a6905d; /* explicitly keep red on hover */
  }

  .fr-work-btn:hover {
    background-color: #a6905d;
    color: #fff;
  }

  .fr-work-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fr-work-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    background-color: #fafafa;
    border-radius: 20px;
    padding: 20px;
  }

  .fr-work-card-inner h2 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #2b4846;
  }
  .fr-work-card-inner p {
    font-size: var(--text--base);
    font-weight: 400;
    font-family: var(--font-primary);
    color: rgba(24, 56, 53, 0.67);
  }

  .fr-work-image {
    width: 100%;
    height: 150px; /* Fixed height to contain image */
    overflow: hidden;
    border-radius: 16px; /* Optional for rounded corners */
    position: relative;
  }

  .fr-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps aspect ratio and fills */
    transition: transform 0.4s ease-in-out;
    cursor: pointer;
  }

  .fr-work-image img:hover {
    transform: scale(1.05); /* Zoom in */
  }

  /* work ends here  */

  /* contact form starts here  */
  .fr-contact-form {
    background-image: url("../../images/home_contact_image.jpg");
    background-size: cover; /* Makes image cover the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    background-blend-mode: overlay;
  }
  .fr-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fr-text-box {
    color: white;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fr-text-box h2 {
    font-size: 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
  }

  .fr-text-box p {
    font-size: var(--text-base);
    font-family: var(--font-primary);
    font-weight: 400;
    color: #ffffff;
    text-align: center;
  }

  .fr-form-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    max-width: 452px;
    min-width: 452px;
    backdrop-filter: blur(6px);
  }

  .fr-form-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fr-form-box input,
  .fr-form-box textarea {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    color: #fff !important;
    width: 100%;
    background-color: transparent;
    font-family: var(--font-primary);
  }

  .fr-form-box input::placeholder,
  .fr-form-box textarea::placeholder {
    color: white;
  }

  .fr-form-box input:focus,
  .fr-form-box textarea:focus {
    border-color: #b89a5e;
  }

  .fr-form-box .name-fields {
    display: flex;
    gap: 10px;
  }

  .fr-form-box button {
    padding: 12px;
    background: #a6905d;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--font-primary);
  }

  .fr-form-box button:hover {
    background: #a1854f;
  }
  /* contact form ends here  */

  /* subscription starts here  */
  .fr-subscription {
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .fr-subscription-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    background-color: #a6905d;
    border-radius: 20px;
    padding: 20px;
  }

  .fr-subscription-left h1 {
    color: white;
    font-size: var(--text-4xl);
    font-weight: 600;
    font-family: var(--font-primary);
  }
  .fr-subscription-left p {
    color: rgba(81, 50, 3, 0.67);
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-primary);
  }

  .fr-input {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
    margin-top: 15px;
  }

  .fr-input input {
    border: none;
    padding: 10px 16px;
    flex: 1;
    outline: none;
    font-size: 16px;
    font-family: var(--font-primary);
  }

  .fr-input button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 6px 16px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }

  .fr-input button:hover {
    background: #b8862b;
  }

  .fr-subscription-right {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
  }

  .fr-subscription-right img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover; /* Keeps aspect ratio and fills */
    transition: transform 0.5s ease; /* Smooth transition */
  }

  .fr-subscription-right img:hover {
    transform: scale(1.1); /* Zoom in on hover */
  }

  /* subscription ends here  */
}
@media only screen and (min-width: 375px) and (max-width: 479px) {
  /* home hero starts here  */
  .fr-hero {
    width: 100%;
    margin-left: auto; /* Center the container */
    margin-right: auto;
    margin-top: 110px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
  }

  .fr-hero-left {
    flex: 1;
    background: #bfa873; /* luxury brown color */
    color: white;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
  }

  .fr-hero-left h1 {
    font-size: 28px;
    max-width: 650px;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .fr-hero-left h1 i {
    color: #fff;
    margin: 0 10px;
  }

  .fr-hero-left p {
    font-size: 18px;
    font-family: var(--font-primary);
    line-height: 1.3;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.67);
  }

  .fr-trusted {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 10px;
  }

  .fr-trusted img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
  }

  .fr-trusted span {
    color: #ffffff;
    margin-left: 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-primary);
  }

  .fr-search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
  }

  .fr-search-box input {
    border: none;
    padding: 10px 16px;
    flex: 1;
    outline: none;
    font-size: 14px;
    font-family: var(--font-primary);
  }

  .fr-search-box button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 6px 8px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }

  .fr-search-box button:hover {
    background: #b8862b;
  }

  /* Hero Banner right side */
  .hero-banner {
    position: relative;
    width: 100%;
    max-width: 850px;
    height: 350px;
  }

  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* Rotating Circle */
  /* Rotating Circle (bottom right) */
  .circle-text {
    position: absolute;
    bottom: -40px; /* distance from bottom */
    right: -48px; /* distance from right */
    width: 80px;
    height: 80px;
    animation: rotate 4s linear infinite;
    transform: none; /* remove translateX(-50%) since it's bottom-right */
  }

  .circle-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Arrow Icon (center of circle) */
  .check-icon {
    position: absolute;
    bottom: -12px; /* same as circle-text */
    right: 22px;
    transform: translate(0, 0); /* reset */
    font-size: 24px;
    color: white;
    line-height: 100px; /* vertically center if needed */
  }

  /* Rotation animation */
  @keyframes rotate {
    from {
      transform: translateX(-50%) rotate(0deg);
    }
    to {
      transform: translateX(-50%) rotate(360deg);
    }
  }

  /* home hero ends here  */

  /* contact section  */
  .fr-contact {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 30px;
  }

  .fr-contact-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }
  .fr-contact-btn {
    display: inline-flex;
    align-items: center;
    min-width: 160px;
    gap: 10px;
    padding: 8px 10px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-contact-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }
  .fr-contact-star {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
  }

  .fr-contact-text p {
    font-size: 24px;
    text-align: center;
  }
  .fr-star1 {
    width: 100%;
    padding: 12px 12px !important;
    background-color: #e2e2e2;
    border-radius: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fr-star2 {
    padding: 12px 12px !important;
  }
  .fr-star3 {
    padding: 12px 12px !important;
  }
  .fr-star1 p {
    font-size: 20px;
  }
  .fr-star1 span {
    font-size: var(--text--base);
  }
  .fr-star2 p {
    font-size: 20px;
  }
  .fr-star2 span {
    font-size: var(--text--base);
  }

  .fr-star3 p {
    font-size: 20px;
  }
  .fr-star3 span {
    font-size: var(--text--base);
  }

  /* gallery starts here  */
  .fr-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fr-gallery-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }
  .fr-gallery-text p {
    max-width: 550px;
    font-size: 24px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
  }

  /* CSS */
  .fr-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-gallery-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }

  .fr-gallery-btn:hover .icon {
    transform: rotate(-30deg);
    background-color: white;
  }
  .fr-gallery-btn .icon i {
    transition: transform 0.3s ease;
  }

  .fr-gallery-btn:hover .icon i {
    /* only rotate, keep red */
    transform: rotate(-30deg);
    color: #a6905d; /* explicitly keep red on hover */
  }

  .fr-gallery-btn:hover {
    background-color: #a6905d;
    color: #fff;
  }

  .fr-gallery-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fr-gallery-item {
    border-radius: 20px;
    overflow: hidden; /* hides zoom overflow */
    cursor: pointer;
  }

  .fr-gallery-img {
    border-radius: 20px;
    height: 350px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .fr-gallery-img:hover {
    transform: scale(1.1);
  }

  /* gallery ends here  */

  /* service starts here  */
  .fr-service {
    width: 100%;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .fr-service-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  .fr-service-text h2 {
    font-size: 24px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: #2b4846;
    text-align: center;
  }
  .fr-service-text p {
    max-width: 450px;
    margin: 0 auto;
    font-size: var(--text--base);
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(24, 56, 53, 0.67);
    text-align: center;
  }

  .fr-service-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fr-service-card-inner {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    cursor: pointer;
  }

  .fr-service-card-inner:hover {
    background-color: #a6905d;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    cursor: pointer;
  }

  .fr-service-card-inner span {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(81, 50, 3, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fr-service-card-inner span:hover {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fr-service-card-inner span i {
    color: #a6905d;
    align-items: center;
  }
  .fr-service-card-inner:hover span i {
    color: white;
    align-items: center;
  }

  .fr-service-card-inner h3 {
    text-align: start;
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: #183835;
  }
  .fr-service-card-inner:hover h3 {
    text-align: start;
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: white;
  }
  .fr-service-card-inner p {
    text-align: start;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(24, 56, 53, 0.4);
  }
  .fr-service-card-inner:hover p {
    text-align: start;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(81, 50, 3, 0.65);
  }
  /* service ends here  */

  /* property starts here  */
  .fr-property {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding-bottom: 0px;
  }

  .fr-video-container {
    width: 100%;
    position: relative;
    height: 220px;
    border-radius: 20px !important;
  }

  video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 30px;
    object-fit: cover;
    overflow: hidden;
  }

  .fr-play-pause-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    outline: none;
    transition: opacity 0.3s ease;
  }

  .fr-video-description {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .fr-video-description h2 {
    max-width: 500px;
    font-size: 24px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
    text-align: center;
  }
  .fr-video-description p {
    max-width: 650px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(24, 56, 53, 0.67);
    font-family: var(--font-primary);
    text-align: center;
  }
  /* property ends here  */

  /* swiper testimonial starts here  */
  .fr-swiper-testimonials {
    width: 100%;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #fafafa;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .fr-swiper-testimonials-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: end;
    align-items: end;
    margin-bottom: 30px;
  }

  .fr-swiper-text {
    font-size: 24px;
    color: #2b4846;
    font-family: var(--font-primary);
    font-weight: 500;
    margin: 0;
  }

  /* arrows top-right */
  .swiper-nav {
    display: flex;
    gap: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #fafafa;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #a6905d;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px !important;
    color: #a6905d;
  }

  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    color: #fff; /* on hover */
  }

  .fr-swiper-testimonial-card {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: #333;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
  }
  .fr-swiper-testimonial-card:hover {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: white;
    background: #a6905d;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fr-swiper-testimonial-card:hover p {
    color: white;
  }
  .fr-swiper-testimonial-card:hover .catering {
    background: rgba(255, 255, 255, 0.14);
  }

  .fr-swiper-testimonial-card:hover .fr-author {
    font-size: var(--text--lg);
    font-weight: 500;
    color: white;
    font-family: var(--font-primary);
  }

  .catering {
    width: fit-content;
    padding: 5px 12px;
    border-radius: 71px;
    font-size: 12px;
    background: #a8dadc;
  }

  .fr-swiper-catering-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #023047;
    font-family: var(--font-primary);
  }
  .fr-author-stars {
    display: flex;
    justify-content: space-between;
  }

  .fr-author {
    font-size: 18px;
    font-weight: 500;
    color: #023047;
    font-family: var(--font-primary);
  }

  .fr-swiper-testimonial-card:hover .fr-author {
    font-size: 18px;
    font-weight: 500;
    color: white;
    font-family: var(--font-primary);
  }

  .stars i {
    color: #f1c40f;
    font-size: 14px;
  }
  /* swiper testimonial ends here   */

  /* work starts here  */
  .fr-work {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fr-work-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }
  .fr-work-text p {
    max-width: 500px;
    font-size: 24px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
  }

  /* CSS */
  .fr-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-work-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }

  .fr-work-btn:hover .icon {
    transform: rotate(-30deg);
    background-color: white;
  }
  .fr-work-btn .icon i {
    transition: transform 0.3s ease;
  }

  .fr-work-btn:hover .icon i {
    /* only rotate, keep red */
    transform: rotate(-30deg);
    color: #a6905d; /* explicitly keep red on hover */
  }

  .fr-work-btn:hover {
    background-color: #a6905d;
    color: #fff;
  }

  .fr-work-card {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .fr-work-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    background-color: #fafafa;
    border-radius: 20px;
    padding: 20px;
  }

  .fr-work-card-inner h2 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #2b4846;
  }
  .fr-work-card-inner p {
    font-size: var(--text--base);
    font-weight: 400;
    font-family: var(--font-primary);
    color: rgba(24, 56, 53, 0.67);
  }

  .fr-work-image {
    width: 100%;
    height: 150px; /* Fixed height to contain image */
    overflow: hidden;
    border-radius: 16px; /* Optional for rounded corners */
    position: relative;
  }

  .fr-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps aspect ratio and fills */
    transition: transform 0.4s ease-in-out;
    cursor: pointer;
  }

  .fr-work-image img:hover {
    transform: scale(1.05); /* Zoom in */
  }

  /* work ends here  */

  /* contact form starts here  */
  .fr-contact-form {
    background-image: url("../../images/home_contact_image.jpg");
    background-size: cover; /* Makes image cover the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    background-blend-mode: overlay;
  }
  .fr-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .fr-text-box {
    color: white;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fr-text-box h2 {
    font-size: 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
  }

  .fr-text-box p {
    font-size: var(--text-base);
    font-family: var(--font-primary);
    font-weight: 400;
    color: #ffffff;
    text-align: center;
  }

  .fr-form-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    max-width: 350px;
    min-width: 350px;
    backdrop-filter: blur(6px);
  }

  .fr-form-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fr-form-box input,
  .fr-form-box textarea {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    color: #fff !important;
    width: 100%;
    background-color: transparent;
    font-family: var(--font-primary);
  }

  .fr-form-box input::placeholder,
  .fr-form-box textarea::placeholder {
    color: white;
  }

  .fr-form-box input:focus,
  .fr-form-box textarea:focus {
    border-color: #b89a5e;
  }

  .fr-form-box .name-fields {
    display: flex;
    gap: 10px;
  }

  .fr-form-box button {
    padding: 12px;
    background: #a6905d;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--font-primary);
  }

  .fr-form-box button:hover {
    background: #a1854f;
  }
  /* contact form ends here  */

  /* subscription starts here  */
  .fr-subscription {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .fr-subscription-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    background-color: #a6905d;
    border-radius: 20px;
    padding: 20px;
  }

  .fr-subscription-left h1 {
    color: white;
    font-size: 28px;
    font-weight: 600;
    font-family: var(--font-primary);
  }
  .fr-subscription-left p {
    color: rgba(81, 50, 3, 0.67);
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-primary);
  }

  .fr-input {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
    margin-top: 15px;
  }

  .fr-input input {
    border: none;
    padding: 10px 16px;
    flex: 1;
    outline: none;
    font-size: 14px;
    font-family: var(--font-primary);
  }

  .fr-input button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 6px 16px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }

  .fr-input button:hover {
    background: #b8862b;
  }

  .fr-subscription-right {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
  }

  .fr-subscription-right img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover; /* Keeps aspect ratio and fills */
    transition: transform 0.5s ease; /* Smooth transition */
  }

  .fr-subscription-right img:hover {
    transform: scale(1.1); /* Zoom in on hover */
  }

  /* subscription ends here  */
}

@media only screen and (min-width: 320px) and (max-width: 374px) {
  /* home hero starts here  */
  .fr-hero {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
  }

  .fr-hero-left {
    flex: 1;
    background: #bfa873; /* luxury brown color */
    color: white;
    padding: 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
  }

  .fr-hero-left h1 {
    font-size: 24px;
    max-width: 650px;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .fr-hero-left p {
    font-size: 18px;
    font-family: var(--font-primary);
    line-height: 1.3;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.67);
  }

  .fr-trusted {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 10px;
  }

  .fr-trusted img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
  }

  .fr-trusted span {
    color: #ffffff;
    margin-left: 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-primary);
  }

  .fr-search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
  }

  .fr-search-box input {
    border: none;
    padding: 10px 16px;
    flex: 1;
    outline: none;
    font-size: 12px;
    font-family: var(--font-primary);
  }

  .fr-search-box button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 6px 8px;
    margin-right: 10px !important;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }

  .fr-search-box button:hover {
    background: #b8862b;
  }

  /* Hero Banner right side */
  .hero-banner {
    position: relative;
    width: 100%;
    max-width: 850px;
    height: 300px;
  }

  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* Rotating Circle */
  /* Rotating Circle (bottom right) */
  .circle-text {
    position: absolute;
    bottom: -40px; /* distance from bottom */
    right: -48px; /* distance from right */
    width: 80px;
    height: 80px;
    animation: rotate 4s linear infinite;
    transform: none; /* remove translateX(-50%) since it's bottom-right */
  }

  .circle-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Arrow Icon (center of circle) */
  .check-icon {
    position: absolute;
    bottom: -12px; /* same as circle-text */
    right: 22px;
    transform: translate(0, 0); /* reset */
    font-size: 24px;
    color: white;
    line-height: 100px; /* vertically center if needed */
  }

  /* Rotation animation */
  @keyframes rotate {
    from {
      transform: translateX(-50%) rotate(0deg);
    }
    to {
      transform: translateX(-50%) rotate(360deg);
    }
  }

  /* home hero ends here  */

  /* contact section  */
  .fr-contact {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 30px;
  }

  .fr-contact-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }
  .fr-contact-btn {
    display: inline-flex;
    align-items: center;
    min-width: 160px;
    gap: 10px;
    padding: 8px 10px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-contact-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }
  .fr-contact-star {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
  }

  .fr-contact-text p {
    font-size: 24px;
    text-align: center;
  }
  .fr-star1 {
    width: 100%;
    padding: 12px 12px !important;
    background-color: #e2e2e2;
    border-radius: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fr-star2 {
    padding: 12px 12px !important;
  }
  .fr-star3 {
    padding: 12px 12px !important;
  }
  .fr-star1 p {
    font-size: 20px;
  }
  .fr-star1 span {
    font-size: var(--text--base);
  }
  .fr-star2 p {
    font-size: 20px;
  }
  .fr-star2 span {
    font-size: var(--text--base);
  }

  .fr-star3 p {
    font-size: 20px;
  }
  .fr-star3 span {
    font-size: var(--text--base);
  }

  /* gallery starts here  */
  .fr-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fr-gallery-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }
  .fr-gallery-text p {
    max-width: 550px;
    font-size: 24px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
  }

  /* CSS */
  .fr-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-gallery-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }

  .fr-gallery-btn:hover .icon {
    transform: rotate(-30deg);
    background-color: white;
  }
  .fr-gallery-btn .icon i {
    transition: transform 0.3s ease;
  }

  .fr-gallery-btn:hover .icon i {
    /* only rotate, keep red */
    transform: rotate(-30deg);
    color: #a6905d; /* explicitly keep red on hover */
  }

  .fr-gallery-btn:hover {
    background-color: #a6905d;
    color: #fff;
  }

  .fr-gallery-image {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .fr-gallery-item {
    border-radius: 20px;
    overflow: hidden; /* hides zoom overflow */
    cursor: pointer;
  }

  .fr-gallery-img {
    border-radius: 20px;
    height: 350px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .fr-gallery-img:hover {
    transform: scale(1.1);
  }

  /* gallery ends here  */

  /* service starts here  */
  .fr-service {
    width: 100%;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .fr-service-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  .fr-service-text h2 {
    font-size: 24px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: #2b4846;
    text-align: center;
  }
  .fr-service-text p {
    max-width: 300px;
    margin: 0 auto;
    font-size: var(--text--base);
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(24, 56, 53, 0.67);
    text-align: center;
  }

  .fr-service-card {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .fr-service-card-inner {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    cursor: pointer;
  }

  .fr-service-card-inner:hover {
    background-color: #a6905d;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    cursor: pointer;
  }

  .fr-service-card-inner span {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(81, 50, 3, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fr-service-card-inner span:hover {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fr-service-card-inner span i {
    color: #a6905d;
    align-items: center;
  }
  .fr-service-card-inner:hover span i {
    color: white;
    align-items: center;
  }

  .fr-service-card-inner h3 {
    text-align: start;
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: #183835;
  }
  .fr-service-card-inner:hover h3 {
    text-align: start;
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: white;
  }
  .fr-service-card-inner p {
    text-align: start;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(24, 56, 53, 0.4);
  }
  .fr-service-card-inner:hover p {
    text-align: start;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: rgba(81, 50, 3, 0.65);
  }
  /* service ends here  */

  /* property starts here  */
  .fr-property {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding-bottom: 0px;
  }

  .fr-video-container {
    width: 100%;
    position: relative;
    height: 200px;
    border-radius: 20px !important;
  }

  video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 30px;
    object-fit: cover;
    overflow: hidden;
  }

  .fr-play-pause-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    outline: none;
    transition: opacity 0.3s ease;
  }

  .fr-video-description {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .fr-video-description h2 {
    max-width: 500px;
    font-size: 24px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
    text-align: center;
  }
  .fr-video-description p {
    max-width: 650px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(24, 56, 53, 0.67);
    font-family: var(--font-primary);
    text-align: center;
  }
  /* property ends here  */

  /* swiper testimonial starts here  */
  .fr-swiper-testimonials {
    width: 100%;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #fafafa;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .fr-swiper-testimonials-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: end;
    align-items: end;
    margin-bottom: 30px;
  }

  .fr-swiper-text {
    font-size: 24px;
    color: #2b4846;
    font-family: var(--font-primary);
    font-weight: 500;
    margin: 0;
  }

  /* arrows top-right */
  .swiper-nav {
    display: flex;
    gap: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #fafafa;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    position: static !important; /* remove default positioning */
    margin: 0 !important;
    background: #a6905d;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #a6905d;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px !important;
    color: #a6905d;
  }

  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    color: #fff; /* on hover */
  }

  .fr-swiper-testimonial-card {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: #333;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
  }
  .fr-swiper-testimonial-card:hover {
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    color: white;
    background: #a6905d;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fr-swiper-testimonial-card:hover p {
    color: white;
  }
  .fr-swiper-testimonial-card:hover .catering {
    background: rgba(255, 255, 255, 0.14);
  }

  .fr-swiper-testimonial-card:hover .fr-author {
    font-size: var(--text--lg);
    font-weight: 500;
    color: white;
    font-family: var(--font-primary);
  }

  .catering {
    width: fit-content;
    padding: 5px 12px;
    border-radius: 71px;
    font-size: 12px;
    background: #a8dadc;
  }

  .fr-swiper-catering-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #023047;
    font-family: var(--font-primary);
  }
  .fr-author-stars {
    display: flex;
    justify-content: space-between;
  }

  .fr-author {
    font-size: 18px;
    font-weight: 500;
    color: #023047;
    font-family: var(--font-primary);
  }

  .fr-swiper-testimonial-card:hover .fr-author {
    font-size: 18px;
    font-weight: 500;
    color: white;
    font-family: var(--font-primary);
  }

  .stars i {
    color: #f1c40f;
    font-size: 14px;
  }
  /* swiper testimonial ends here   */

  /* work starts here  */
  .fr-work {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fr-work-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }
  .fr-work-text p {
    max-width: 500px;
    font-size: 24px;
    font-weight: 500;
    color: #2b4846;
    font-family: var(--font-primary);
  }

  /* CSS */
  .fr-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 2px solid #bfa873; /* gold-like color */
    border-radius: 50px;
    color: #bfa873;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .fr-work-btn .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    background-color: #a6905d;
    padding: 5px 10px;
    border-radius: 50%;
    color: white;
  }

  .fr-work-btn:hover .icon {
    transform: rotate(-30deg);
    background-color: white;
  }
  .fr-work-btn .icon i {
    transition: transform 0.3s ease;
  }

  .fr-work-btn:hover .icon i {
    /* only rotate, keep red */
    transform: rotate(-30deg);
    color: #a6905d; /* explicitly keep red on hover */
  }

  .fr-work-btn:hover {
    background-color: #a6905d;
    color: #fff;
  }

  .fr-work-card {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .fr-work-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    background-color: #fafafa;
    border-radius: 20px;
    padding: 20px;
  }

  .fr-work-card-inner h2 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #2b4846;
  }
  .fr-work-card-inner p {
    font-size: var(--text--base);
    font-weight: 400;
    font-family: var(--font-primary);
    color: rgba(24, 56, 53, 0.67);
  }

  .fr-work-image {
    width: 100%;
    height: 150px; /* Fixed height to contain image */
    overflow: hidden;
    border-radius: 16px; /* Optional for rounded corners */
    position: relative;
  }

  .fr-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps aspect ratio and fills */
    transition: transform 0.4s ease-in-out;
    cursor: pointer;
  }

  .fr-work-image img:hover {
    transform: scale(1.05); /* Zoom in */
  }

  /* work ends here  */

  /* contact form starts here  */
  .fr-contact-form {
    background-image: url("../../images/home_contact_image.jpg");
    background-size: cover; /* Makes image cover the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    background-blend-mode: overlay;
  }
  .fr-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .fr-text-box {
    color: white;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fr-text-box h2 {
    font-size: 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
  }

  .fr-text-box p {
    font-size: var(--text-base);
    font-family: var(--font-primary);
    font-weight: 400;
    color: #ffffff;
    text-align: center;
  }

  .fr-form-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    max-width: 300px;
    min-width: 300px;
    backdrop-filter: blur(6px);
  }

  .fr-form-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fr-form-box input,
  .fr-form-box textarea {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    color: #fff !important;
    width: 100%;
    background-color: transparent;
    font-family: var(--font-primary);
  }

  .fr-form-box input::placeholder,
  .fr-form-box textarea::placeholder {
    color: white;
  }

  .fr-form-box input:focus,
  .fr-form-box textarea:focus {
    border-color: #b89a5e;
  }

  .fr-form-box .name-fields {
    display: flex;
    gap: 10px;
  }

  .fr-form-box button {
    padding: 12px;
    background: #a6905d;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--font-primary);
  }

  .fr-form-box button:hover {
    background: #a1854f;
  }
  /* contact form ends here  */

  /* subscription starts here  */
  .fr-subscription {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .fr-subscription-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    background-color: #a6905d;
    border-radius: 20px;
    padding: 20px;
  }

  .fr-subscription-left h1 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-primary);
  }
  .fr-subscription-left p {
    color: rgba(81, 50, 3, 0.67);
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-primary);
  }

  .fr-input {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
    margin-top: 15px;
  }

  .fr-input input {
    border: none;
    padding: 10px 16px;
    flex: 1;
    outline: none;
    font-size: 12px;
    font-family: var(--font-primary);
  }

  .fr-input button {
    background: #d39d47;
    color: white;
    border: none;
    padding: 6px 6px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
    font-family: var(--font-primary);
    border-radius: 50px;
    transition: background 0.3s;
  }

  .fr-input button:hover {
    background: #b8862b;
  }

  .fr-subscription-right {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
  }

  .fr-subscription-right img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover; /* Keeps aspect ratio and fills */
    transition: transform 0.5s ease; /* Smooth transition */
  }

  .fr-subscription-right img:hover {
    transform: scale(1.1); /* Zoom in on hover */
  }

  /* subscription ends here  */
}
