      /* Base Styles */
      :root {
          --main-color: #28542f;
          --white-color: #ffffff;
          --black-color: #222222;
          --color-two: #2c3e50;

      }

      * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
      }

      @font-face {
          font-family: 'Myfonts';
          src: url(../fonts/webfonts/GildaDisplay-Regular.ttf);
      }

      html {
          overflow-x: hidden;
      }

      body {

          font-size: 14px;
          color: var(--black-color);
          line-height: 1.6;
          font-weight: 400;
          -webkit-font-smoothing: antialiased;
          -moz-font-smoothing: antialiased;
          transition: all 0.3s ease;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
          font-family: 'Myfonts' !important;

      }

      a {
          text-decoration: none;
          color: inherit;
      }

      ul {
          list-style: none;
      }

      img {
          max-width: 100%;
          height: auto;
      }

      .container {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 15px;
      }

      .d-flex {
          display: flex;
      }

      .align-items-center {
          align-items: center;
      }

      .justify-content-between {
          justify-content: space-between;
      }

      .justify-content-center {
          justify-content: center;
      }

      .flex-wrap {
          flex-wrap: wrap;
      }

      .gap-4 {
          gap: 1rem;
      }

      .d-none {
          display: none;
      }



      /* Header Styles */


      .top-header {
          padding: 20px;
          border-bottom-left-radius: 12px;
          border-bottom-right-radius: 12px;

          z-index: 5;
          position: relative;

          border-radius: 0px 0px 45px 45px;

      }

      .header-icons img {
          width: 40px;
      }

      .header-icons a {
          margin: 0px 10px;
          text-decoration: none;
          color: var(--white-color);
          font-size: 16px;
          font-weight: 700;
      }

      .header {
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          width: 100%;
          height: auto;
          background: transparent;
          z-index: 100;
          transition: all 0.3s ease;
      }

      .header_style_one::before {
          position: absolute;
          content: '';
          left: 0;
          top: 0;
          right: 0;
          height: 120px;
          background: linear-gradient(180deg, #222222 0%, rgba(34, 34, 34, 0) 100%);
          opacity: 0.5;
      }

      .middle_bar {
          width: 100%;
          background: #dde5b6;
          transition: all 0.3s ease;

      }

      .middle_bar_inner {
          position: relative;
          width: 100%;
          padding: 0px 0 !important;
          transition: padding 0.3s ease;
      }

      /* Sticky state */
      .middle_bar.is-sticky {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          z-index: 999;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      }

      .menu-item .dropdown-menu {
          display: none;
          position: absolute;
          background: #fff;
          border: none;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      }

      .menu-item .dropdown-item {
          padding: 10px 20px;
          font-size: 15px;
          color: #333;

      }



      .menu-item:hover .dropdown-menu {
          display: block;
      }

      /* Optional: position fix */
      .menu-item {
          position: relative;
      }

      .menu-item .dropdown-item:hover {
          background: #f8f9fa;
          color: var(--main-color);
      }

      /* Logo */
      .logo {
          position: relative;
          text-align: center;
      }

      .logo .logo_sticky {
          display: none;
      }

      .logo a {
          display: inline-block;
      }

      .logo img {
          transition: all 0.3s ease;
          width: 205px;
      }

      /* Navigation */
      .mainnav ul.main_menu,
      .mainnav ul.main_menu ul {
          padding: 0;
          margin: 0;
      }

      .mainnav ul.main_menu li {
          position: relative;
          display: inline-block;
          font-size: 14px;
          font-weight: 700;
          line-height: 24px;
      }

      .button-box a {
          text-decoration: none;
      }

      .mainnav ul.main_menu li a {
          display: inline-block;
          font-family: 'poppins';
          font-size: 17px;
          font-weight: 600;
          line-height: 24px;
          text-transform: capitalize;
          color: #000;
          padding: 18px 0;
          transition: color 0.3s ease;
          text-decoration: none;
      }

      .mainnav ul.main_menu li.current>a,
      .mainnav ul.main_menu li.active>a,
      .mainnav ul.main_menu li:hover>a {
          color: #058343;
      }


      .mainnav ul.main_menu>li.menu-item-has-children>a::after {
          content: "\f078";
          font-family: 'Font Awesome 5 Pro';
          margin-left: 5px;
          font-size: 10px;
      }

      .mainnav ul.main_menu li ul li {
          width: 100%;
      }

      .mainnav ul.main_menu li ul li a {
          font-size: 14px;
          color: var(--black-color);
          width: 100%;
          padding: 10px 30px;
          white-space: nowrap;
      }

      .mainnav ul.main_menu>li {
          margin: 0 15px;
      }

      /* Mobile Menu Toggle */
      /* Mobile Menu Styles */
      .mr_menu {
          position: fixed;
          width: 300px;
          height: 100%;
          top: 0;
          right: -300px;
          /* Start off-screen to the right */
          background-color: #251b06;
          z-index: 9999;
          transition: all 0.3s ease;
          overflow-y: auto;
      }

      .mr_menu.active {
          right: 0;
          /* Slide in from right */
      }

      .mr_menu_overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          z-index: 9998;
          opacity: 0;
          visibility: hidden;
          transition: all 0.3s ease;
      }

      .mr_menu_overlay.active {
          opacity: 1;
          visibility: visible;
      }

      .mr_menu_close {
          display: none;
      }

      .mr_menu_content {
          padding: 80px 30px 30px;
      }

      /* Mobile Menu Toggle Button */
      .mr_menu_toggle {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          width: 30px;
          height: 24px;
          cursor: pointer;
          z-index: 10000;
      }

      .toggle_line {
          width: 100%;
          height: 3px;
          background: #048346;
          transition: all 0.3s ease;
      }

      .mr_menu_toggle.active .toggle_line:nth-child(1) {
          transform: rotate(45deg) translate(5px, 5px);
      }

      .mr_menu_toggle.active .toggle_line:nth-child(2) {
          opacity: 0;
      }

      .mr_menu_toggle.active .toggle_line:nth-child(3) {
          transform: rotate(-45deg) translate(5px, -5px);
      }

      .btn-style-one {
          display: inline-block;
          position: relative;
          padding: 12px 30px;
          background-color: #ffffff;
          color: var(--black-color);
          /* border: 2px solid var(--main-color); */
          border-radius: 50px;
          font-family: var(--font-family-Poppins);
          font-size: 14px;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 1px;
          overflow: hidden;
          cursor: pointer;
          transition: all 0.4s ease;
          z-index: 1;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }

      .btn-style-one::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: var(--white-color);
          transform: translateX(-100%);
          transition: all 0.4s ease;
          z-index: -1;
      }

      .btn-style-one:hover {
          color: var(--main-color);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
          transform: translateY(-2px);
      }

      .btn-style-one:hover::before {
          transform: translateX(0);
      }

      /* Active/Focus States */
      .btn-style-one:active {
          transform: translateY(0);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .btn-style-one:focus {
          outline: none;
          box-shadow: 0 0 0 3px rgba(var(--main-color-rgb), 0.3);
      }

      /* Disabled State */
      .btn-style-one:disabled {
          opacity: 0.7;
          cursor: not-allowed;
          transform: none !important;
      }

      /* Mobile Menu Items */
      .mobile_menu {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .mobile_menu li {
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .mobile_menu li a {
          display: block;
          color: #fff;
          padding: 15px 0;
          font-size: 16px;
          text-decoration: none;
      }

      /* Prevent body scroll when menu is open */
      body.menu-open {
          overflow: hidden;
      }


      .hero-btn a {
          text-decoration: none;
      }

      .hero-banner {
          position: relative;
          height: 95vh;
          overflow: hidden;
          color: white;
      }

      /* Owl Carousel Container */
      .banner-slider {
          position: relative;
          height: 100vh;
          width: 100%;
      }

      /* Slide Styles */
      .slide {
          position: relative;
          height: 100vh;
      }

      .slide-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
      }

      /* Content Overlay */
      .banner-content {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          z-index: 2;
          background: rgba(0, 0, 0, 0.4);
          /* Dark overlay */
      }

      .content-inner {
          max-width: 800px;
          padding: 0 20px;
          padding-top: 12%;
      }

      /* Text Styles */
      .subtitle {
          font-size: 1.2rem;
          font-weight: 600;
          letter-spacing: 3px;
          text-transform: uppercase;
          margin-bottom: 15px;
      }

      .padding-hero h1 {
          font-size: 3.5rem;
          font-weight: 500;
          line-height: 1.2;
          margin: 20px 0;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
          text-transform: capitalize;
      }



      /* Button Styles */
      .cta-button {
          margin-top: 30px;
      }

      .btn-primary {
          display: inline-block;
          padding: 12px 30px;
          background: transparent;
          color: white;
          border: 2px solid white;
          border-radius: 50px;
          font-weight: 600;
          text-transform: uppercase;
          transition: all 0.3s ease;
      }

      .btn-primary:hover {
          background: white;
          color: #333;
          transform: translateY(-3px);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }

      /* Owl Carousel Nav Dots */
      .owl-theme .owl-dots {
          position: absolute;
          bottom: 30px;
          left: 50%;
          transform: translateX(-50%);
          z-index: 3;
      }

      .owl-theme .owl-dots .owl-dot span {
          background: rgba(255, 255, 255, 0.5);
          transition: all 0.3s;
      }

      .owl-theme .owl-dots .owl-dot.active span {
          background: white;
          transform: scale(1.3);
      }



      /* Sticky Header */



      .section-padding {
          padding: 40px 0px;
      }

      /* about section start here  */
      .about-right h6 {
          color: #cdad00;
          font-size: 18px;
          font-weight: 500;

      }

      .about-pad {
          padding: 30px 0px;
      }

      .list-unstyled {
          justify-content: space-between;
      }

      .list-unstyled li span {
          font-size: 17px;
          font-weight: 400;

      }

      .about-right h2 {
          font-size: 48px;
          font-weight: 700;
      }

      .about-right p {
          font-size: 18px;
          font-weight: 600;
      }

      .about-section {
          padding-top: 100px;
          background-color: #fff;
          position: relative;
          overflow: hidden;
      }

      .about-content h6 {
          font-size: 50px;
          font-weight: 600;
      }

      .about-content p {
          font-size: 17px;
          font-weight: 400;
      }

      .about-content h3 {
          text-transform: capitalize;
          font-size: 55px;
      }

      .bd-welcome__list-content {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 0 50px;
      }

      .bd-welcome__list-item i {
          height: 60px;
          width: 60px;
          line-height: 68px;
          text-align: center;
          background: #F8F5F0;
          border-radius: 60px;
          display: inline-block;
          font-size: 30px;
          margin-bottom: 20px;
      }

      .hover-bounce {
          display: inline-block;
          transition: transform 0.3s ease;
      }

      .hover-bounce:hover {
          animation: bounceIcon 0.8s;
      }

      @keyframes bounceIcon {

          0%,
          100% {
              transform: translateY(0);
          }

          30% {
              transform: translateY(-8px);
          }

          50% {
              transform: translateY(4px);
          }

          70% {
              transform: translateY(-4px);
          }
      }

      .bd-welcome__list-thumb img {
          border-radius: 70px 70px 0px 0px;
      }

      .p-relative {
          position: relative;
      }

      .bd-welcome__meta-wrap-2 {
          position: absolute;
          bottom: 60px;
          inset-inline-start: 60px;
      }

      .bd-welcome__meta-2 {
          padding: 33px;
          background-color: #194123;
          display: flex;
          align-items: center;
          gap: 30px;
          width: 265px;
          z-index: 2;
      }

      .bd-welcome__meta-2 .bd-welcome__meta-content span {
          font-size: 24px;
          line-height: 28px;
          display: block;
          margin-bottom: 10px;
          text-transform: capitalize;
          color: var(--white-color);
      }

      .bd-welcome__meta-2 .bd-welcome__meta-content a {
          text-decoration: none;
          font-size: 16px;
          color: var(--white-color);
      }

      .bd-welcome__meta-icon i {
          font-size: 50px;
          color: #e3e3e3;
      }



      /* slider text section start here  */
      /* Base Styles */
      .text-scroller-section {
          overflow: hidden;
          background: #e7dab3;
      }

      .text-scroller-container {
          max-width: 100%;
          margin: 0 auto;
          padding: 0 20px;
      }

      .text-scroller {
          position: relative;
          overflow: hidden;
          margin: 20px 0;
      }

      .text-scroller__track {
          display: flex;
          width: max-content;
          will-change: transform;
          animation: scroll 20s linear infinite;
      }

      .text-scroller--rtl .text-scroller__track {
          animation-direction: reverse;
      }

      .text-scroller__slide {
          flex-shrink: 0;
          margin: 0 30px;
      }

      .text-scroller__item {
          display: flex;
          align-items: center;
          gap: 15px;
      }

      .text-scroller__title {
          font-size: 50px;
          font-weight: 400;
          line-height: 1.2;
          text-transform: capitalize;
          white-space: nowrap;
          margin-bottom: 0;
      }

      .text-scroller__title a {
          color: inherit;
          text-decoration: none;
          transition: color 0.3s;
      }

      .text-scroller__title a:hover {
          color: #c8a97e;
          /* Gold color for hover */
      }

      .text-scroller__icon {
          width: 60px;
          object-fit: contain;
          /* color: red; */
      }

      .text-scroller__divider {
          height: 1px;
          background-color: #e0e0e0;
          margin: 30px 0;
      }

      /* Animation */
      @keyframes scroll {
          0% {
              transform: translateX(0);
          }

          100% {
              transform: translateX(-50%);
          }
      }


      .our-rooms {
          background-color: #194123;
          padding: 60px 10px;
      }

      .heading-room h3 {
          padding: 20px 29px;
          font-size: 54px;
          color: var(--white-color);
      }

      .bd-roomview__list ul {
          display: flex;
          flex-direction: column;
          gap: 35px;
      }

      .image-wrapper img {
          width: 100%;
          height: 70vh;
      }

      .image-container {
          background-image: url(../images/room-view.jpg);
          background-attachment: fixed;
          background-repeat: no-repeat;
          background-position: center;
      }

      .bd-roomview__list ul li {
          list-style: none;
      }

      .bd-roomview__list ul li a {
          text-decoration: none;
          font-size: 24px;
          line-height: 40px;
          text-transform: capitalize;
          color: var(--white-color);
          font-family: var(--bd-ff-heading);
          position: relative;
          display: inline-block;
          padding-left: 0;
          transition: all 0.4s ease-out;
          z-index: 2;
      }

      .bd-roomview__list ul li a i {
          margin-left: 8px;
          opacity: 0;
          position: absolute;
          left: -15px;
          top: 50%;
          transform: translateY(-50%) translateX(-10px);
          transition: all 0.4s ease-out;
      }

      .bd-roomview__list ul li a:hover {
          padding-left: 30px;
      }

      .bd-roomview__list ul li a:hover i {
          opacity: 1;
          transform: translateY(-50%) translateX(0);
      }

      /* Keep your existing underline effect */
      .bd-roomview__list ul li a::before {
          position: absolute;
          content: "";
          width: 0px;
          height: 1px;
          bottom: 0;
          left: 0;
          background-color: var(--white-color);
          opacity: 0;
          visibility: hidden;
          transition: all 0.4s ease-out;
          z-index: 1;

      }

      .bd-roomview__list ul li a:hover::before {
          width: 100%;
          opacity: 1;
          visibility: visible;
          padding: 0px 5px;
      }



      /* facilities section start here  */
      /* .facilities-section {
          background-color: #f8f9fa;
      } */

      .section-title {
          position: relative;
          color: #2c3e50;
      }

      .aminities h2 {
          color: var(--black-color);
          text-transform: uppercase;
      }

      .section-title::after {
          content: '';
          position: absolute;
          bottom: -15px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 3px;
          background: linear-gradient(90deg, #092d16, #26512d);
      }

      .facility-image-wrapper {
          perspective: 1000px;
      }

      .facility-main-image {
          transform-style: preserve-3d;
          transition: all 0.5s ease;
          mask-image: url('../images/mask-2.png');
          mask-size: contain;
          mask-repeat: no-repeat;
          mask-position: center;
      }

      .facility-image-wrapper:hover .facility-main-image {
          transform: rotateY(10deg) scale(1.03);
      }

      .facility-content {
          transition: all 0.3s ease;
          /* border-left: 4px solid transparent; */
          /* background-color: #e7dab3; */
      }

      .facility-content:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 20px #e7dab3 !important;
          border-left-color: #092d16;
          background-color: #fff;
      }































      /* our rooms start here  */
      .room-slider-section {
          padding: 80px 0;
          background: linear-gradient(135deg, #5a5a5a00 0%, #e4e8f052 100%);
          /* background-color: #dfdfdf00; */
      }

      .section-title {
          position: relative;
          margin-bottom: 60px;
      }

      .section-title h2 {
          font-weight: 700;
          color: var(--secondary-color);
          position: relative;
          display: inline-block;
          font-size: 40px;
          text-transform: uppercase;
      }

      .section-title h2:after {
          content: '';
          position: absolute;
          width: 70px;
          height: 3px;
          background: var(--primary-color);
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
      }

      .room-card {
          background: white;
          border-radius: 15px;
          overflow: hidden;
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          transition: all 0.5s ease;
          margin: 15px;
          position: relative;
      }

      .room-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .room-img {
          height: 250px;
          overflow: hidden;
          position: relative;
      }

      .room-img img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.8s ease;
      }

      .room-card:hover .room-img img {
          transform: scale(1.1);
      }

      .room-badge {
          position: absolute;
          top: 20px;
          right: 20px;
          background: #fcd606;
          color: #000000;
          padding: 5px 15px;
          border-radius: 30px;
          font-size: 14px;
          font-weight: 600;
          z-index: 2;
          box-shadow: 0 5px 15px rgb(75 82 77 / 52%);
      }

      .room-content {
          padding: 20px 0px;
      }

      .room-title {
          font-size: 15px;
          font-weight: 700;
          margin-bottom: 15px;
          color: var(--secondary-color);
          transition: color 0.3s ease;
          padding: 0px 34px;
          text-transform: capitalize;
          text-align: center;
      }

      .room-card:hover .room-title {
          color: var(--primary-color);
      }

      .room-features {
          margin-bottom: 20px;
      }

      .room-features li {
          display: inline-block;
          margin-right: 10px;
          margin-bottom: 10px;
          background: #f1f1f1;
          padding: 5px 12px;
          border-radius: 20px;
          font-size: 12px;
          color: #555;
      }

      .room-bed {
          display: flex;
          align-items: center;
          margin-bottom: 20px;
          color: #777;
          padding: 0px 42px;
      }

      .room-bed i {
          color: var(--primary-color);
          margin-right: 8px;
          font-size: 18px;
      }

      .room-price {
          display: flex;
          justify-content: end;
          align-items: center;

          padding-top: 15px;
      }

      .price {
          font-size: 24px;
          font-weight: 700;
          color: var(--secondary-color);
      }

      .price span {
          font-size: 14px;
          font-weight: 400;
          color: #777;
      }

      .book-btn {
          background: #fcd606;
          color: var(--secondary-color);
          border: none;
          padding: 8px 25px;
          border-radius: 30px;
          font-weight: 600;
          transition: all 0.3s ease;
          box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
      }

      .book-btn:hover {
          background: var(--black-color);
          color: white;
          transform: translateY(-3px);
          box-shadow: 0 8px 20px rgba(26, 26, 46, 0.3);
      }

      /* Owl Carousel Customization */
      .owl-nav {
          position: absolute;
          top: -80px;
          right: 0;
      }

      .owl-nav button {
          width: 40px;
          height: 40px;
          border-radius: 50% !important;
          background: var(--primary-color) !important;
          color: var(--secondary-color) !important;
          margin-left: 10px !important;
          transition: all 0.3s ease;
      }

      .owl-nav button:hover {
          background: var(--secondary-color) !important;
          color: white !important;
      }

      .owl-dots {
          margin-top: 30px !important;
      }

      .owl-dots button.owl-dot {
          width: 12px;
          height: 12px;
          border-radius: 50%;
          background: #ddd !important;
          margin: 0 5px;
      }

      .owl-dots button.owl-dot.active {
          background: var(--primary-color) !important;
          transform: scale(1.2);
      }

      /* Animation Classes */
      .animate-in {
          animation: fadeInUp 1s ease forwards;
      }

      @keyframes float {
          0% {
              transform: translateY(0px);
          }

          50% {
              transform: translateY(-10px);
          }

          100% {
              transform: translateY(0px);
          }
      }

      .floating {
          animation: float 3s ease-in-out infinite;
      }

      .owl-theme .owl-dots,
      .owl-theme .owl-nav {
          text-align: center;
          -webkit-tap-highlight-color: transparent;
          display: none;
      }


      /* Background Section with Fixed Attachment */
      .attractions-section {
          position: relative;
          padding: 100px 0;
          /* background: url('../images/area.png') no-repeat center center; */
          background-size: cover;
          background-attachment: fixed;
          color: white;
          overflow: hidden;
      }

      .attractions-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: #e7dab3;
          z-index: 0;
      }

      .section-content {
          position: relative;
          z-index: 1;
      }

      /* Section Header */
      .section-header {
          text-align: center;
          margin-bottom: 66px;
          position: relative;
      }

      .section-header h2 {
          font-size: 40px;
          margin-bottom: 20px;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 2px;
          color: #101010;
      }

      .section-header p {
          font-size: 1.2rem;
          max-width: 700px;
          margin: 0 auto;
          color: #101010;
      }

      /* Carousel Container */
      .carousel-container {
          display: flex;
          gap: 10%;
          margin-top: 50px;
      }

      .carousel-wrapper {
          flex: 1;
          position: relative;
      }

      /* Owl Carousel Customization */
      .attraction-carousel {
          position: relative;
      }

      .attraction-carousel .item {
          background: #623d1f;
          backdrop-filter: blur(10px);
          border-radius: 15px;
          overflow: hidden;
          padding: 20px;
          border: 1px solid rgba(255, 255, 255, 0.2);
          transition: all 0.3s ease;
          height: 475px;
          display: flex;
          flex-direction: column;
      }

      .attraction-carousel .item:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
      }

      .attraction-img {
          height: 395px;
          overflow: hidden;
          border-radius: 10px;
          margin-bottom: 15px;
      }

      /* .attraction-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        } */

      .item:hover .attraction-img img {
          transform: scale(1.1);
      }

      .attraction-info h3 {
          font-size: 1.5rem;
          margin-bottom: 10px;
          color: #ffffff;
      }

      .attraction-info p {
          color: rgb(255 255 255 / 80%);
          margin-bottom: 15px;
          flex-grow: 1;
      }

      .attraction-meta {
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .distance {
          background: rgb(0 0 0 / 97%);
          padding: 5px 10px;
          border-radius: 20px;
          font-size: 0.9rem;
      }

      /* Navigation Buttons */
      .custom-nav {
          position: absolute;
          top: 100px;
          right: 0;
          display: flex;
          gap: 15px;
      }

      .custom-nav button {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background: rgb(98 61 31);
          border: none;
          color: white;
          font-size: 1.2rem;
          cursor: pointer;
          transition: all 0.3s ease;
          display: flex;
          align-items: center;
          justify-content: center;
          backdrop-filter: blur(5px);
      }

      .custom-nav button:hover {
          background: rgb(0 0 0 / 80%);
          transform: scale(1.1);
      }





      /* testimonial section start here  */


      .section-title {
          text-align: center;
          margin-bottom: 50px;
          color: var(--white-color);
      }

      .testimonial-section {
          padding: 100px 0;
          background: linear-gradient(192deg, rgb(0 0 0 / 51%) 0%, rgba(228, 232, 240, 0.32) 100%), url(../images/testimonial-bg.jpg);
          background-size: cover;
          background-position: center;
      }

      .user-img img {
          width: 100%;
          max-width: 60%;
          margin: auto;
          padding: 20px 0px;
      }



      .testimonial-carousel {
          position: relative;
      }

      .testimonial-card {
          background: #e3e3e3c4;
          border-radius: 15px;
          padding: 78px;
          margin: 15px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          transform: translateY(20px);
          opacity: 0;
          transition: all 0.5s ease;
          height: 100%;
          position: relative;
          overflow: hidden;
          top: 10%;
      }

      .owl-item.active .testimonial-card {
          transform: translateY(0);
          opacity: 1;
      }

      .testimonial-card:hover {
          transform: translateY(-5px) !important;
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
      }

      .testimonial-card:before {
          content: '\201C';
          position: absolute;
          top: 20px;
          left: 20px;
          font-size: 5rem;
          color: #194123;
          font-family: Georgia, serif;
          line-height: 1;
      }

      .testimonial-content {
          position: relative;
          z-index: 1;
          margin-bottom: 20px;
          font-size: 1rem;
          line-height: 1.6;
          color: var(--color-two);
      }

      .testimonial-author {
          display: flex;
          align-items: center;
      }



      .author-info h4 {
          margin: 0;
          font-size: 1.2rem;
          color: var(--black-color);
      }

      .author-info p {
          margin: 5px 0 0;
          color: #6b7280;
          font-size: 0.9rem;
      }

      .rating {
          color: #f59e0b;
          margin-top: 5px;
      }



      .review-button img {
          width: 200px !important;
      }


      /* Footer Styles */
      .premium-footer {
          background: linear-gradient(135deg, #092d16, #26512d);
          color: white;
          padding: 60px 0 0;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          position: relative;
          overflow: hidden;
      }

      .footer-wave {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 60px;
          background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23f5f5f5" opacity=".1"/></svg>');
          background-size: cover;
      }

      .footer-container {
          max-width: 1350px;
          margin: 0 auto;
          padding: 0 20px;
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 40px;
          position: relative;
          z-index: 1;
      }

      .footer-logo {
          margin-bottom: 20px;
      }

      .footer-logo img {
          max-width: 180px;
          filter: brightness(0) invert(1);
      }

      .footer-about p {
          color: rgba(255, 255, 255, 0.8);
          line-height: 1.6;
          margin-bottom: 20px;
      }

      .footer-social {
          display: flex;
          gap: 15px;
          margin-top: 20px;
      }

      .social-icon {
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.1);
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all 0.3s ease;
          color: white;
          font-size: 18px;
      }

      .social-icon:hover {
          background: var(--main-color);
          transform: translateY(-3px);
      }

      .footer-heading {
          font-size: 1.4rem;
          margin-bottom: 25px;
          position: relative;
          color: white;
          font-weight: 600;
      }

      .footer-heading::after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 0;
          width: 50px;
          height: 3px;
          background: #eaf7df;
      }

      .footer-links ul {
          list-style: none;
          padding: 0;
      }

      .footer-links li {
          margin-bottom: 12px;
      }

      .footer-links a {
          color: rgba(255, 255, 255, 0.8);
          text-decoration: none;
          transition: all 0.3s ease;
          display: inline-block;
          position: relative;
          padding-left: 15px;
      }

      .footer-links a::before {
          content: '→';
          position: absolute;
          left: 0;
          color: var(--white-color);
          opacity: 0;
          transition: all 0.3s ease;
      }

      .footer-links a:hover {
          color: white;
          padding-left: 20px;
      }

      .footer-links a:hover::before {
          opacity: 1;
          left: -5px;
      }

      .contact-info {
          margin-bottom: 20px;
      }

      .contact-item {
          display: flex;
          align-items: flex-start;
          margin-bottom: 15px;
          color: rgba(255, 255, 255, 0.8);
      }

      .contact-icon {
          margin-right: 15px;
          color: #eaf7df;
          font-size: 18px;
          min-width: 20px;
      }

      .contact-text a {
          color: var(--white-color);
          text-decoration: none;
          transition: all 0.3s ease;
      }

      .contact-text a:hover {
          color: white;
          text-decoration: underline;
      }
      .contact-text img{
        width: 100%;
        max-width: 50%;
      }

      .web-footer a{
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .booking-widget {
          background: rgba(255, 255, 255, 0.05);
          border-radius: 10px;
          padding: 25px;
          border: 1px solid rgba(255, 255, 255, 0.1);
          backdrop-filter: blur(5px);
      }

      .booking-title {
          font-size: 1.2rem;
          margin-bottom: 20px;
          color: white;
      }

      .booking-dates {
          display: flex;
          gap: 15px;
          margin-bottom: 20px;
      }

      .date-box {
          flex: 1;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 8px;
          padding: 15px;
          text-align: center;
          transition: all 0.3s ease;
      }

      .date-box:hover {
          background: rgba(255, 171, 0, 0.2);
      }

      .date-label {
          font-size: 0.9rem;
          color: rgba(255, 255, 255, 0.7);
          margin-bottom: 5px;
      }

      .date-value {
          font-size: 12px;
          font-weight: 600;
          color: white;
      }

      .book-now-btn {
          display: inline-block;
          background: #ffffff;
          color: var(--black-color);
          padding: 12px 25px;
          border-radius: 30px;
          text-decoration: none;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 1px;
          transition: all 0.3s ease;
          width: 100%;
          text-align: center;
      }

      .book-now-btn:hover {
          background: var(--black-color);
          color: var(--white-color);
          transform: translateY(-3px);
          box-shadow: 0 5px 15px rgba(255, 171, 0, 0.3);
      }

      .footer-bottom a {
          text-decoration: none;
          color: var(--white-color);
          font-size: 16px;
      }

















      /* royal booking section start here  */
      /* .royal-booking-section {
          background-color: rgba(0, 0, 0, 0.171);
          overflow: hidden;
      } */

      .booking-bg {
          background: linear-gradient(rgba(1, 3, 4, 0.5), rgba(1, 2, 4, 0.3)),
              url('../images/booknow-bg.jpg');
          background-size: cover;
          background-position: center;


      }


      .booking-content {
          z-index: 2;
          position: relative;
          padding: 60px 0px;
      }

      .subtitle {
          letter-spacing: 1px;
          font-size: 14px;
          color: #eaf7df;
      }

      .book-btn {
          background-color: #ffffff;
          color: #000;
          padding: 12px 30px;
          font-weight: 600;
          border-radius: 30px;
          transition: all 0.3s ease;
          box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
      }

      .booking-content a {
          text-decoration: none;
      }

      .book-btn:hover {
          background-color: #000;
          color: #fff;
      }





      .room-container {
          width: 100%;
          padding: 0;
          position: relative;
      }



      .room-header {
          max-width: 1200px;
          margin: 0 auto;
          padding: 20px;
      }

      .room-price {
          font-size: 24px;
          font-weight: bold;
          color: #333;
          margin-bottom: 10px;
      }

      .room-title {
          font-size: 12px;
          font-weight: bold;
          color: #000;
          margin-bottom: 30px;
          text-transform: uppercase;
      }

      .room-carousel-container {
          width: 100%;
          overflow: hidden;
      }

      .room-carousel {
          width: 100%;
          position: relative;
      }

      .room-carousel .item {
          position: relative;
      }

      .room-carousel .item img {
          width: 100%;
          height: 70vh;
          object-fit: cover;
          display: block;
          object-fit: cover;
      }

      .room-carousel .item::after {
          content: "";
          top: 0;
          bottom: 0;
          width: 100%;
          height: 100%;
          background-color: #00000069;
          position: absolute;
      }

      .room-tabs-container {
          max-width: 100%;
          margin: 0 auto;
          padding: 0 0px;

      }

      .room-tabs {
          display: flex;
          justify-content: center;
          align-items: center;
          flex-wrap: wrap;
          position: absolute;
          bottom: 20px;
          /* Adjust as needed */
          left: 50%;
          transform: translateX(-50%);
          z-index: 10;
          width: 100%;
          max-width: 1200px;
          /* Match your container width */
          padding: 0 20px;
          box-sizing: border-box;


      }

      .room-tab {
          padding: 12px 20px;
          margin: 0 5px 10px;
          background-color: #fff;
          border: 1px solid #ddd;
          cursor: pointer;
          font-weight: bold;
          text-transform: uppercase;
          font-size: 14px;
          transition: all 0.3s ease;
          text-align: center;
          min-width: 120px;
      }

      .room-tab:hover {
          background-color: #f0f0f0;
      }

      .room-tab.active {
          background-color: #000;
          color: #fff;
          border-color: #000;
      }



      .custom-number {
          position: absolute;
          z-index: 10;
          bottom: 15%;
          left: 10%;
          color: var(--main-color);
          font-size: 30px;
      }


      /* gallery section start here  */
      .gallery-slider {
          width: 100%;
          padding: 0;
          margin: 0;
      }

      .gallery-slider .owl-carousel .item {
          position: relative;
          overflow: hidden;
      }

      .gallery-slider img {
          width: 100%;
          height: 60vh;
          display: block;
          object-fit: cover;
          padding: 0;

      }

      .gallery-carousel .item img {
          height: 300px !important;
          margin: 10px 0px;
      }


      /* about us page start here  */
      .inner-section {
          background: url(../images/inner-bg.png) no-repeat center center;
          background-size: cover;
          position: relative;
          min-height: 450px;
      }

      .inner-section::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(180deg, rgba(17, 32, 33, 0.9), transparent);
          z-index: 1;
      }

      .inner-heading {
          position: absolute;
          z-index: 2;

          top: 70%;
          left: 50%;
          transform: translate(-50%, -50%);
          text-align: center;
      }

      .inner-heading h3 {
          font-size: 40px;
          color: var(--white-color);
          margin: 0;
      }

      .inner-column {
          position: relative;
      }

      .inner-column .img-2 {
          position: absolute;
          right: 0;
          bottom: -4%;
          border: 15px solid var(--white-color);

      }

      .inner-column .img-2::after {
          content: '';
          height: 100%;
          width: 100%;
          background-color: #00000082;
          position: absolute;
          right: 0;
          bottom: 0%;
      }

      .inner-column .about-img-1::after {
          content: "";
          position: absolute;
          top: 0;
          left: -40px;
          width: 30px;
          height: 250px;
          background-color: var(--main-color);
      }

      .inner-column .img-3 {
          position: absolute;
          left: -15%;
          bottom: 13%;
          z-index: -10;
      }

      .inner-column .img-4 {
          position: absolute;
          left: -14%;
          bottom: -3%;
          z-index: -10;
      }

      .img-4 img {
          width: 100%;
          max-width: 38%;
          animation: bounce 2.0s ease-in-out infinite;
          transition: transform 1.2s linear;
      }

      @keyframes bounce {
          0% {
              transform: translateY(0);
          }

          50% {
              transform: translateY(20px);
          }

          /* down */
          100% {
              transform: translateY(0);
          }
      }

      .about-section {

          padding: 80px 20px;
          text-align: start;

      }

      .sub-title {
          display: inline-block;
          font-size: 14px;
          text-transform: uppercase;
          letter-spacing: 2px;
          color: var(--main-color);
          margin-bottom: 10px;
          font-weight: 400;
      }

      .main-title {
          font-size: 36px;
          font-weight: 700;
          color: var(--black-color);
          margin-bottom: 20px;
      }

      .description {
          font-size: 16px;
          color: #555;
          max-width: 700px;
          margin: 0 auto 50px;
      }

      .info-row {
          display: flex;
          justify-content: center;
          gap: 30px;
          flex-wrap: wrap;
          margin-bottom: 50px;
      }

      .info-box {
          background: none;
          text-align: center;
      }



      .info-title {
          font-size: 18px;
          font-weight: 500;
      }

      .contact-info-1 {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 15px;
      }

      .contact-icon-1 img {
          width: 40px;
      }

      .contact-text-1 .contact-label-1 {
          display: block;
          font-size: 14px;
          text-transform: uppercase;
          color: #888;
      }

      .contact-text-1 .contact-number-1 {
          font-size: 22px;
          font-weight: 700;
          color: #111;
          text-decoration: none;
      }

      .contact-text .contact-number-1:hover {
          color: var(--main-color);

      }

      .about-section-inner-page {
          padding: 40px 1px;
      }



      /* rooms page start here  */
      .check-mark img {
          width: 20px;
          margin: 0px 10px;
      }

      .facility-item {
          flex: 0 0 50%;
          /* Ek line mein 4 */

      }

      .bd-booking-3 {
          background-color: var(--bd-theme-2, #f8f9fa);
          border: 1px solid var(--bd-grey-1, #dee2e6);
          padding-bottom: 15px;
          margin-bottom: 1.5rem;
      }

      .bd-booking-3-info {
          background-color: var(--bd-theme-2, #f8f9fa);
          border: 1px solid var(--bd-grey-1, #dee2e6);
          padding: 1rem;
      }

      .bd-booking-3__content {
          padding: 1.875rem 1.875rem 0 1.875rem;
          /* 30px top/side, 0 bottom */
          border-bottom: 1px solid var(--bd-grey-1, #dee2e6);
      }

      .bd-booking-3__title {
          font-size: 24px;
          line-height: 32px;
          text-transform: capitalize;
          color: var(--bd-common-black, #212529);
          margin-bottom: 1rem;
          padding-bottom: 0;
      }

      .bd-booking-3__price {
          display: flex;
          align-items: center;
          gap: 1.875rem;
          /* 30px */
      }

      .bd-booking-3__tax p {
          font-size: 0.9rem;
          color: #6c757d;
          margin-bottom: 0;
      }

      .bd-booking-3__list ul {
          padding-left: 0;
          margin-bottom: 0;
      }

      .bd-booking-3__list li {
          list-style: none;
          padding-left: 25px;
          position: relative;
          margin-bottom: 0.75rem;
          font-size: 1rem;
      }

      .bd-booking-3__list li i {
          position: absolute;
          left: 0;
          top: 2px;
          color: #28a745;
          /* green check */
      }

      .bd-booking-3__submit {
          padding: 0 1.875rem 1.875rem 1.875rem;
      }

      .bd-booking-3__submit button {
          font-weight: 600;
          font-size: 1rem;
      }










      /* ------------------------------
   Booking Card Styles
--------------------------------- */

      .booking-section {
          background-color: #f8f1e7;
          padding: 12px;
          border: 1px solid #ddd;
      }

      .booking-section h3 {
          font-family: serif;
          margin-bottom: 1rem;
          font-size: 18px;
      }

      .booking-info {
          font-family: sans-serif;
      }

      .booking-price {
          display: flex;
          align-items: center;
          gap: 1rem;
          margin-bottom: 1rem;
      }

      .booking-price span {
          font-weight: 700;
          font-size: 1.4rem;
      }

      .booking-night {
          font-size: 0.9rem;
          color: #6c757d;
      }

      .booking-meta {
          display: flex;
          gap: 1rem;
          font-size: 0.9rem;
          font-family: sans-serif;
          margin-bottom: 1rem;
      }

      .booking-meta .non-refundable {
          color: #dc3545;
          display: flex;
          align-items: center;
          gap: 0.25rem;
          font-weight: 600;
      }

      .booking-meta .tax-fee {
          color: #6c757d;
      }

      .booking-list {
          list-style: none;
          padding: 0;
          margin-bottom: 1rem;
          font-family: sans-serif;
      }

      .booking-list li {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          margin-bottom: 0.5rem;
      }

      .booking-list img {
          width: 16px;
          height: 16px;
      }

      .btn-booking {
          text-transform: uppercase;
          letter-spacing: 1px;
          font-weight: 600;
          width: 100%;
      }

      .btn-booking span {
          font-size: 1.2rem;
      }

      /* ------------------------------
   Extra Services Styles
--------------------------------- */

      .extra-services {
          background-color: #f8f1e7;
          padding: 2rem;
          border: 1px solid #ddd;
      }

      .extra-services h3 {
          font-family: serif;
          margin-bottom: 1rem;
      }

      .extra-services ul {
          list-style: none;
          padding: 0;
          font-family: sans-serif;
      }

      .extra-services li {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          margin-bottom: 0.75rem;
      }

      .extra-services img {
          width: 16px;
          height: 16px;
      }



      /* gallery start here  */
      .gallery-img {
          position: relative;
          overflow: hidden;
          margin-bottom: 30px;
          border-radius: 8px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

      }

      .gallery-img img {
          width: 100%;
          height: 250px;
          object-fit: cover;
          transition: all 0.5s ease;
      }


      /* contact page designs start here  */
      /* Contact Section */
      .contact__area {
          background: #f9f9f9;
          position: relative;
      }

      /* Title Section */
      .contact__area-title h3 {
          font-size: 36px;
          font-weight: 700;
          color: #222;
          margin-bottom: 15px;
      }

      .contact__area-title p {
          color: #666;
          font-size: 16px;
          line-height: 26px;
          margin-bottom: 30px;
      }

      /* Contact Info Items */
      .contact__area-info {
          margin-bottom: 40px;
      }

      .contact__area-info-item {
          display: flex;
          align-items: flex-start;
          margin-bottom: 25px;
          /* justify-content: center; */
          align-items: center;
      }

      .contact__area-info-item-icon {
          width: 50px;
          height: 50px;
          background: var(--white-color);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          margin-right: 20px;
          color: var(--main-color);
          font-size: 18px;
      }

      .contact__area-info-item-content span {
          display: block;
          color: #666;
          font-size: 14px;
          margin-bottom: 5px;
      }

      .contact__area-info-item-content h6 {
          font-size: 18px;
          font-weight: 600;
          margin-bottom: 0;
      }

      .contact__area-info-item-content h6 a {
          color: #222;
          transition: all 0.3s;
          text-decoration: none;
      }

      .contact__area-info-item-content h6 a:hover {
          color: var(--main-color);
      }

      /* Social Icons */
      .contact__area-social ul {
          display: flex;
          padding: 0;
          margin: 0;
          list-style: none;
      }

      .contact__area-social ul li {
          margin-right: 15px;
      }

      .contact__area-social ul li a {
          width: 40px;
          height: 40px;
          background: #fff;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #222;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          transition: all 0.3s;
      }

      .contact__area-social ul li a:hover {
          background: #ff5a3c;
          color: #fff;
          transform: translateY(-3px);
      }

      /* Contact Form */
      .contact__area-form h3 {
          font-size: 36px;
          font-weight: 700;
          color: #222;
          margin-bottom: 25px;
      }

      .contact__area-form-item {
          position: relative;
          margin-bottom: 20px;
      }

      .contact__area-form-item i {
          position: absolute;
          left: 20px;
          top: 18px;
          color: var(--main-color);
      }

      .contact__area-form-item input,
      .contact__area-form-item textarea {
          width: 100%;
          height: 55px;
          border: 1px solid #eee;
          border-radius: 5px;
          padding: 0 20px 0 50px;
          background: #fff;
          transition: all 0.3s;
      }

      .contact__area-form-item textarea {
          height: 150px;
          padding: 15px 20px 15px 50px;
          resize: none;
      }

      .contact__area-form-item input:focus,
      .contact__area-form-item textarea:focus {
          border-color: var(--main-color);
          outline: none;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      /* Submit Button */
      .theme-btn {
          background: var(--main-color);
          color: #fff;
          border: none;
          padding: 15px 35px;
          border-radius: 5px;
          font-weight: 600;
          display: inline-flex;
          align-items: center;
          transition: all 0.3s;
          cursor: pointer;
          text-decoration: none;
      }

      .theme-btn:hover {
          background: #222;
          color: #fff;
      }

      .theme-btn i {
          margin-left: 10px;
          font-size: 14px;
      }

      /* Map Section */
      .contact__area-map {
          margin-top: 50px;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .contact__area-map iframe {
          width: 100%;
          height: 400px;
          border: none;
      }


      /* book now page start here  */
      .book-now-section .bg-light {
          background-color: #fff !important;
          border-radius: 10px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
          padding: 30px !important;
      }

      /* Form Headings */
      .book-now-section h4 {
          color: #222;
          font-size: 24px;
          font-weight: 700;
          margin-bottom: 25px;
          padding-bottom: 15px;
          border-bottom: 1px solid #eee;
      }

      /* Form Inputs */
      .book-now-section .form-control,
      .book-now-section .form-select {
          height: 50px;
          border: 1px solid #e0e0e0;
          border-radius: 5px;
          padding: 10px 15px;
          font-size: 15px;
          transition: all 0.3s;
          background-color: #f9f9f9;
      }

      .book-now-section .form-control:focus,
      .book-now-section .form-select:focus {
          border-color: var(--main-color);
          box-shadow: 0 0 0 0.25rem rgba(255, 90, 60, 0.15);
          background-color: #fff;
      }

      /* Labels */
      .book-now-section .form-label {
          font-weight: 600;
          color: #555;
          margin-bottom: 8px;
          display: block;
      }

      /* Submit Button (Same as Contact Section) */
      .book-now-section .btn-primary {
          background: var(--main-color);
          border: none;
          padding: 12px 30px;
          font-weight: 600;
          letter-spacing: 0.5px;
          transition: all 0.3s;
      }

      .book-now-section .btn-primary:hover {
          background: var(--black-color);
          transform: translateY(-2px);
      }

      .book-now-section .btn-primary i {
          transition: transform 0.3s;
      }

      .book-now-section .btn-primary:hover i {
          transform: translateX(3px);
      }

      /* Form Row Spacing */
      .book-now-section .row.g-3 {
          row-gap: 20px;
      }

      /* Date Inputs */
      .book-now-section input[type="date"],
      .book-now-section input[type="month"] {
          position: relative;
      }

      .book-now-section input[type="date"]::-webkit-calendar-picker-indicator,
      .book-now-section input[type="month"]::-webkit-calendar-picker-indicator {
          position: absolute;
          right: 10px;
          opacity: 0.7;
          cursor: pointer;
      }

      /* Select Dropdown */
      .book-now-section .form-select {
          appearance: none;
          background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff5a3c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
          background-repeat: no-repeat;
          background-position: right 12px center;
          background-size: 16px 12px;
      }


      /* blog start here  */
      .property-image img {
          transition: transform 0.3s;
      }

      .property-image img:hover {
          transform: scale(1.02);
      }

      .description-section {
          background: white;
          padding: 20px;
          border-radius: 8px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      }

      .sidebar-blogs h5 a {
          color: #2c3e50;
          transition: color 0.3s;
      }

      .sidebar-blogs h5 a:hover {
          color: var(--main-color);
      }

      .sidebar-taglines i {
          color: var(--black-color);
      }

      .sidebar-taglines {
          background-color: var(--main-color);
      }



      /* Fixed wrapper bottom right */
      .order-now-wrapper {
          position: fixed;
          bottom: 30px;
          right: 30px;
          display: flex;
          flex-direction: column;
          align-items: center;
          z-index: 9999;
          animation: bounce 2s infinite alternate;
      }

      /* Order Now image size */
      .order-now-wrapper .order-now-icon {
          max-width: 80px;
          /* Adjust as needed */
          display: block;
          margin-bottom: 10px;
      }

      /* Book Now button */
      .order-now-wrapper .book-now-btn {
          display: inline-block;
          background-color: #28542f;
          color: #fff;
          padding: 12px 24px;
          text-decoration: none;
          border-radius: 50px;
          font-weight: 600;
          transition: background 0.3s ease;
      }

      .order-now-wrapper .book-now-btn:hover {
          background-color: #1e4024;
          /* Darker shade on hover */
      }

      /* Bounce animation */
      @keyframes bounce {
          0% {
              transform: translateY(0px);
          }

          100% {
              transform: translateY(-20px);
          }
      }

      /* Responsive Adjustments */
      @media (max-width: 768px) {
          .book-now-section .bg-light {
              padding: 20px !important;
          }

          .book-now-section h4 {
              font-size: 20px;
          }

          .book-now-section .form-control,
          .book-now-section .form-select {
              height: 45px;
              font-size: 14px;
          }
      }

      .pets-section p {
          font-size: 25px;

      }

      .price-highlight {
          font-weight: 700;
          font-size: 21px;
          /* bold */
          color: var(--main-color);
          /* optional: make darker if needed */
      }

      .food-court-section {
          background: #f9f9f9;
      }

      .food-box {
          position: relative;
          overflow: hidden;
          text-align: center;
          cursor: pointer;
          border-radius: 12px;
      }

      .food-heading {
          margin-top: 15px;
          font-weight: 600;
          color: #333;
          position: relative;
          z-index: 2;
          font-size: 35px;
      }

      .food-box .food-img {
          height: 250px;
          background-size: cover;
          background-position: center;
          transition: transform 0.4s ease;
      }

      .food-box h4 {
          margin-top: 15px;
          font-weight: 600;
          color: #333;
          position: relative;
          z-index: 2;
      }

      .banking-section {
          background: #fff;
      }

      .bank-box {
          position: relative;
          overflow: hidden;
          border-radius: 12px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          background: #f8f9fa;
          transition: all 0.4s ease;
      }

      .bank-img {
          position: relative;
          overflow: hidden;
      }

      .bank-img img {
          width: 100%;
          height: auto;
          display: block;
          transition: transform 0.4s ease;
      }

      .bank-icon {
          position: absolute;
          bottom: 15px;
          right: 15px;
          background: var(--main-color);
          color: #fff;
          border-radius: 50%;
          padding: 15px;
          font-size: 24px;
          z-index: 2;
          transition: background 0.3s ease;
      }

      .bank-content {
          padding: 20px;
          text-align: center;
      }

      .bank-content h4 {
          font-weight: 600;
          margin-bottom: 10px;
          color: #333;
      }

      .bank-content p {
          color: #555;
          font-size: 1.2rem;
      }

      .bank-box::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: #28542f75;
          transition: all 0.4s ease;
          z-index: 1;
      }

      .bank-box:hover::before {
          left: 0;
      }

      .bank-box:hover .bank-img img {
          transform: scale(1.1);
      }

      .bank-box:hover .bank-icon {
          background: #000;
      }

      .bank-box:hover h4,
      .bank-box:hover p {
          color: #fff;
          position: relative;
          z-index: 2;
      }

      .blog{
        padding: 1rem;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        border-radius: 0.5rem;
      }
      .blog img{
        border-radius: 0.5rem;
      }
      .blog-page h1{
        font-size: 2rem;
        font-weight: 600;
      }
      .blog-page a{
        font-size: 1rem;
        font-weight: 700;
        color: #5a9a65;
        text-decoration: none;
      }
      .blog-page .date{
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        background-color: #5a9a65;
        width: fit-content;
        margin-bottom: 1rem;
        color: white;
      }
      .blog-page h2{
        font-size: 1.5rem;
        font-weight: 700;
      }