  @font-face {
      font-family: 'GildaDisplay';
      src: url('fonts/GildaDisplay-Regular.ttf') format('truetype');
      font-display: swap;
  }

  @font-face {
      font-family: 'Oswald';
      src: url('fonts/Oswald-VariableFont_wght.ttf') format('truetype');
      font-display: swap;
  }

  :root {
      --primary-color: #fb0000;
      --secondary-color: #002bbc;
      --web-color: #00bc15;
      --orange-color: #fb9000;
      --black-color: #000;
      --white-color: #fff;
      --font-primary: 'GildaDisplay', serif;
      --font-secondary: 'Oswald', sans-serif;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: var(--font-primary);
      overflow-x: hidden;
  }

  /* Top Header */
  .top-header {
      /* background-color: rgba(0, 0, 0, 0.7); */
      padding: 10px 0;
      position: absolute;
      width: 100%;
      z-index: 10000;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      gap: 15px 30px;
  }

  .top-header>div {
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .top-header a {
      color: var(--white-color);
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 18px;
      font-weight: 600;
  }

  .top-header i {
      color: var(--orange-color);

      transition: all 0.3s ease;
      font-size: 18px;
      white-space: nowrap;
  }

  .top-header a:hover {
      color: var(--primary-color);
  }

  /* Desktop Navbar */
  .desktop-navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 75px;
      position: absolute;
      width: 100%;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.3) !important;
  }

  .desktop-navbar .navbar-brand {
      margin: 0 20px;
  }

  .desktop-navbar .navbar-brand img {
      max-height: 120px;
      transition: all 0.3s ease;
  }

  .desktop-navbar .navbar-nav {
      align-items: center;
  }

  .desktop-navbar .nav-link {
      color: var(--white-color);
      font-family: var(--font-primary);
      font-size: 16px;
      margin: 0 15px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      padding: 8px 0;
      position: relative;
      margin: 0px 34px;
  }

  .desktop-navbar .nav-link:hover {
      color: var(--primary-color);
  }

  .desktop-navbar .nav-link:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-color);
      transition: width 0.3s ease;
  }

  .desktop-navbar .nav-link:hover:after {
      width: 100%;
  }

  .desktop-navbar .book-btn {
      padding: 8px 20px;
      color: var(--white-color);
      background: linear-gradient(rgba(255, 0, 0, 0.6), rgba(241, 20, 20, 0.84));
      border: none;
      text-transform: uppercase;
      font-family: var(--font-primary);
      font-size: 16px;
      margin-left: 15px;
      text-decoration: none;
      border-radius: 4px;
      transition: all 0.3s ease;
      animation: blinkColors 0.5s infinite alternate;
  }

  .desktop-navbar .book-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* 🔁 Blinking animation */
  @keyframes blinkColors {
      0% {
          background: linear-gradient(rgba(255, 0, 0, 0.6), rgba(241, 20, 20, 0.84));
      }

      100% {
          background: linear-gradient(#68b5ab, #68b5ab);
      }
  }


  /* Mobile Navbar */
  .mobile-navbar {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1050;
      background-color: var(--black-color);
      padding: 10px 15px;
  }

  .mobile-navbar .navbar-brand img {
      height: 50px;
  }

  .mobile-navbar .navbar-toggler {
      border: none;
      color: var(--white-color);
      font-size: 1.5rem;
      padding: 5px 10px;
  }

  .mobile-navbar .offcanvas {
      background: rgba(0, 0, 0, 0.95);
      width: 75%;
      max-width: 300px;
  }

  .mobile-navbar .offcanvas-header {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      /* padding: 15px; */
      padding-top: 102px;
  }

  .mobile-navbar .offcanvas-title img {
      height: 40px;
  }

  .mobile-navbar .btn-close {
      filter: invert(1);
  }

  .mobile-navbar .nav-link {
      color: var(--white-color);
      font-family: var(--font-primary);
      font-size: 16px;
      padding: 12px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      text-transform: uppercase;
  }

  .mobile-navbar .nav-link:hover {
      color: var(--primary-color);
      background: rgba(255, 255, 255, 0.05);
  }

  .mobile-navbar .book-btn {
      display: block;
      margin: 20px;
      padding: 10px 20px;
      color: var(--white-color);
      background: linear-gradient(rgba(255, 0, 0, 0.6), rgba(241, 20, 20, 0.84));
      text-align: center;
      text-transform: uppercase;
      font-family: var(--font-primary);
      font-size: 16px;
      text-decoration: none;
      border-radius: 4px;
  }


  /* Improved Hero Section */
  .hero-section {
      width: 100%;
      position: relative;
      overflow: hidden;
      height: 100vh;
      /* Full viewport height */
      max-height: 900px;
      /* Optional max height */
      min-height: 500px;
      /* Optional min height */
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 0;
      /* Remove padding if any */
  }

  .hero-bg-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
  }

  .hero-bg {
      width: 100%;
      height: 100%;
      object-position: center;
  }

  .hero-content {
      position: absolute;
      z-index: 2;
      color: white;
      text-align: center;
      padding: 0 15px;
      bottom: 100px;
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
      .hero-section {
          height: 80vh;
          min-height: 400px;
      }

      .desktop-navbar {
          padding-top: 60px;
      }

      .desktop-navbar .navbar-brand img {
          max-height: 80px;
      }
  }

  @media (max-width: 768px) {
      .hero-section {
          height: 70vh;
          min-height: 350px;
      }

      .mobile-navbar {
          display: flex;
          /* Ensure mobile nav shows */
      }

      .desktop-navbar {
          display: none;
          /* Hide desktop nav */
      }

      .hero-content {
          padding-top: 60px;
          /* Space for mobile nav */
      }
  }

  @media (max-width: 576px) {
      .hero-section {
          height: 60vh;
          min-height: 300px;
      }

      .hero-content h1 {
          font-size: 2rem;
          /* Smaller heading on mobile */
      }

      .theme-btn.book-now-btn {
          padding: 12px 24px;
          /* Smaller button on mobile */
      }
  }

  /* Rest of your button styling remains same */


  .theme-btn.book-now-btn {
      position: relative;
      display: inline-block;
      padding: 14px 32px;
      background-color: var(--primary-color);
      color: var(--white-color);
      text-transform: uppercase;
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 1px;
      border-radius: 50px;
      text-decoration: none;
      overflow: hidden;
      transition: color 0.3s ease;
  }

  .theme-btn.book-now-btn::before,
  .theme-btn.book-now-btn::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      transition: transform 0.4s ease;
      border-radius: 50px;
      z-index: 0;
  }


  .theme-btn.book-now-btn::before {
      background: var(--web-color);
      opacity: 0.1;
      transform: scaleX(0);
      transform-origin: left;
  }


  .theme-btn.book-now-btn::after {
      border: 2px solid var(--web-color);
      transform: scaleY(0);
      transform-origin: bottom;
  }


  .theme-btn.book-now-btn:hover::before {
      transform: scaleX(1);
  }

  .theme-btn.book-now-btn:hover::after {
      transform: scaleY(1);
  }

  .theme-btn.book-now-btn:hover {
      color: var(--white-color);
      background-color: var(--primary-color);
  }



  /* about us start here  */
  /* Custom CSS */
  .doray-hotel-section {
      position: relative;
      padding-top: 200px;
      padding-bottom: 100px;
      overflow: hidden;
  }

  /* .doray-back-title {
      position: absolute;
      top: 18px;
      left: 0;
      width: 100%;
      font-size: 160px;
      font-weight: 700;
      text-align: center;
      z-index: -1;
      color: rgb(1 41 178 / 24%);
      opacity: 0;
      transform: translateY(20px);
      transition: all 1s ease;
      background: url('../images/adventure.png');
      background-size: cover;
      background-position: center;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center;
  }

  .doray-back-title.show {
      opacity: 1;
      transform: translateY(0);
  } */
  .doray-back-title {
      position: absolute;
      top: 18px;
      left: 0;
      width: 100%;
      font-size: 135px;
      font-weight: 700;
      text-align: center;
      z-index: -1;
      opacity: 0;
      transform: translateY(20px);
      transition: all 1s ease;
      text-align: center;
  }

  .doray-back-title.show {
      opacity: 1;
      transform: translateY(0);
  }

  .doray-back-title span {
      position: relative;
      display: inline-block;
  }

  /* Individual letter colors */
  .doray-back-title span:nth-child(1) {
      color: red;
  }

  /* D */
  .doray-back-title span:nth-child(2) {
      color: green;
  }

  /* O */
  .doray-back-title span:nth-child(3) {
      color: orange;
  }

  /* R */
  .doray-back-title span:nth-child(4) {
      color: blue;
  }

  /* A */
  .doray-back-title span:nth-child(5) {
      color: red;
  }

  /* Y */
  .doray-back-title span:nth-child(7) {
      color: green;
  }

  /* M */
  .doray-back-title span:nth-child(8) {
      color: green;
  }

  /* O */
  .doray-back-title span:nth-child(9) {
      color: green;
  }

  /* T */
  .doray-back-title span:nth-child(10) {
      color: green;
  }

  /* E */
  .doray-back-title span:nth-child(11) {
      color: green;
  }

  /* L */

  /* Animation effects with before and after */
  .doray-back-title span::before,
  .doray-back-title span::after {
      content: attr(data-char);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: all 0.5s ease;
  }

  .doray-back-title span::before {
      color: rgba(255, 255, 255, 0.8);
      transform: translateY(-20px) scale(1.1);
  }

  .doray-back-title span::after {
      color: rgba(0, 0, 0, 0.4);
      transform: translateY(20px) scale(0.9);
  }

  .doray-back-title.show span::before,
  .doray-back-title.show span::after {
      opacity: 0.6;
      transform: translateY(0) scale(1);
  }

  /* Stagger the animation */
  .doray-back-title.show span:nth-child(1)::before,
  .doray-back-title.show span:nth-child(1)::after {
      transition-delay: 0.1s;
  }

  .doray-back-title.show span:nth-child(2)::before,
  .doray-back-title.show span:nth-child(2)::after {
      transition-delay: 0.2s;
  }

  .doray-back-title.show span:nth-child(3)::before,
  .doray-back-title.show span:nth-child(3)::after {
      transition-delay: 0.3s;
  }

  .doray-back-title.show span:nth-child(4)::before,
  .doray-back-title.show span:nth-child(4)::after {
      transition-delay: 0.4s;
  }

  .doray-back-title.show span:nth-child(5)::before,
  .doray-back-title.show span:nth-child(5)::after {
      transition-delay: 0.5s;
  }

  .doray-back-title.show span:nth-child(7)::before,
  .doray-back-title.show span:nth-child(7)::after {
      transition-delay: 0.6s;
  }

  .doray-back-title.show span:nth-child(8)::before,
  .doray-back-title.show span:nth-child(8)::after {
      transition-delay: 0.7s;
  }

  .doray-back-title.show span:nth-child(9)::before,
  .doray-back-title.show span:nth-child(9)::after {
      transition-delay: 0.8s;
  }

  .doray-back-title.show span:nth-child(10)::before,
  .doray-back-title.show span:nth-child(10)::after {
      transition-delay: 0.9s;
  }

  .doray-back-title.show span:nth-child(11)::before,
  .doray-back-title.show span:nth-child(11)::after {
      transition-delay: 1.0s;
  }

  .doray-images-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 50px;
  }

  .doray-image-container {
      overflow: hidden;
      position: relative;
      border-radius: 16px;
      opacity: 0;
      transform: translateX(20px);
      transition: all 1s ease;
  }

  .doray-image-container.show {
      opacity: 1;
      transform: translateX(0);
  }

  .doray-image-container::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--white-color);
      z-index: 2;
      transform-origin: right;
      animation: imgReveal 2.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }

  .doray-image-container img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      transform: scale(1.1);
      transition: transform 2.4s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .doray-image-container.show img {
      transform: scale(1);
  }

  .doray-content {
      text-align: center;
      margin-top: -70px;
  }

  .doray-title {
      font-size: 6rem;
      margin-bottom: 1.5rem;
      opacity: 0;
      transform: translateY(20px);
      transition: all 1s ease;
  }

  .doray-title.show {
      opacity: 1;
      transform: translateY(0);
  }

  .doray-description {
      font-size: 1.2rem;
      line-height: 1.8;
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateY(20px);
      transition: all 1s ease;
  }

  .doray-description.show {
      opacity: 1;
      transform: translateY(0);
  }

  .doray-btn {
      display: inline-flex;
      align-items: center;
      padding: 12px 30px;
      background: transparent;
      border: 1px solid var(--primary-color);
      color: var(--black-color);
      font-size: 15px;
      font-weight: 500;
      text-transform: uppercase;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
      transition: all 1s ease;
  }

  .doray-btn a {
      text-decoration: none;
      color: var(--black-color);
  }

  .doray-btn.show {
      opacity: 1;
      transform: translateY(0);
  }

  .doray-btn a:hover {
      color: var(--white-color);
  }

  .doray-btn:hover {
      background: var(--primary-color);
      color: var(--white-color);
  }

  .doray-btn-icon {
      margin-right: 10px;
      width: 30px;
      height: 18px;
  }

  .doray-btn svg:hover {
      color: var(--white-color) !important;
  }

  /* Animation keyframes */
  @keyframes imgReveal {
      0% {
          transform: scaleX(1);
      }

      100% {
          transform: scaleX(0);
      }
  }

  /* facilities section start here  */
  .facilities-section {

      background: linear-gradient(rgb(0 0 0 / 18%), rgb(0 0 0 / 28%)), url(../images/hero.jpg) center / cover no-repeat;

      background-attachment: fixed;

  }

  .section-subtitle {
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--web-color);
      margin-bottom: 30px;
      /* display: block; */
  }

  .section-title {
      font-size: 64px;
      font-weight: 700;
      margin-bottom: 80px;
      color: #222;
  }

  .facility-card {
      text-align: center;
      padding: 30px 20px;
      margin-bottom: 30px;
      transition: all 0.3s ease;
  }

  .facility-card:hover {
      transform: translateY(-10px);
  }

  .facility-icon {
      width: 100px;
      height: 100px;
      background: var(--white-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      font-size: 40px;
      color: #222;
  }

  .facility-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--white-color);
  }

  /* padding */
  .section-padding {
      padding: 100px 0;

  }

  /* room section start here  */
  .rooms-section {

      position: relative;
  }

  .section-header {
      text-align: center;
      margin-bottom: 50px;
  }

  .section-subtitle {
      color: var(--orange-color);
      text-transform: uppercase;
      font-size: 18px;
      margin-bottom: 10px;
      display: block;
  }

  .section-title {
      font-size: 60px;
      color: #222;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 15px;
      text-align: center;
  }

  .section-title:after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 4px;
      width: 60px;
      background: var(--orange-color);
      margin: 0 auto;
      transition: 0.3s;
  }

  .section-description {
      width: 60%;
      margin: 0 auto;
      font-size: 18PX;
  }

  /* Room Card */
  .room-card {
      background: var(--white-color);
      box-shadow: 0px 5px 17px 0px rgba(0, 0, 0, 0.07);
      position: relative;
      margin: 2px;
      transition: all 0.3s ease;
  }

  .room-card:hover {
      box-shadow: 2px 3px 4px 0px var(--primary-color);
      transform: translateY(-10px);
  }

  .room-thumb {
      position: relative;
      overflow: hidden;
  }

  .room-thumb img {
      width: 100%;
      height: auto;
      transition: transform 0.5s ease;
  }

  .room-card:hover .room-thumb img {
      transform: scale(1.05);
  }

  .room-price {
      background: var(--orange-color);
      font-family: 'Jost', sans-serif;
      color: var(--white-color);
      font-size: 16px;
      font-weight: 600;
      width: 85%;
      margin-top: -70px;
      position: relative;
      margin: auto;
      bottom: 30px;
  }

  .room-price ul {
      display: flex;
      padding: 0;
      margin: 0;
      list-style: none;
  }

  .room-price li {
      flex: 1;
      text-align: center;
      padding: 20px 0;
      border-right: 2px solid var(--orange-color);
  }

  .room-price li:last-child {
      border-right: none;
  }

  .room-price a {
      color: var(--white-color);
      text-decoration: none;
  }

  .room-content {
      padding: 30px;
  }

  .room-title {
      font-size: 24px;
      margin-bottom: 15px;
  }

  .room-title a {
      color: #222;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .room-title a:hover {
      color: var(--orange-color);
  }

  .room-description {
      color: #666;
      margin-bottom: 20px;
  }

  .room-amenities {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;

      justify-content: space-around;
  }

  .room-amenities img {
      height: 20px;
      width: auto;
  }

  /* Owl Carousel Navigation */
  .owl-nav {
      position: absolute;
      top: -100px;
      right: 0;
  }

  .owl-nav button {
      width: 40px;
      height: 40px;
      background: var(--orange-color) !important;
      color: var(--white-color) !important;
      border-radius: 50% !important;
      margin-left: 10px;
      transition: all 0.3s ease;
  }

  .owl-nav button:hover {
      background: var(--orange-color) !important;
  }

  .owl-dots {
      text-align: center;
      margin-top: 30px;
  }

  .owl-dots button.owl-dot {
      width: 20px;
      height: 5px;
      background: var(--orange-color);
      border-radius: 50px;
      margin: 0 5px;
      transition: all 0.3s ease;
  }

  .owl-dots button.owl-dot.active {
      width: 50px;
      background: var(--orange-color);
  }

  /* area attraction start here  */
  .attractions-section {

      background: linear-gradient(rgb(0 0 0 / 18%), rgb(0 0 0 / 28%)), url(../images/hero.jpg) center / cover no-repeat;

      background-attachment: fixed;
  }



  .attraction-item {
      background: var(--white-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      margin: 15px;
      position: relative;
  }

  .attraction-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .attraction-img {
      height: 200px;
      overflow: hidden;
      position: relative;
  }

  .attraction-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .attraction-item:hover .attraction-img img {
      transform: scale(1.1);
  }

  .attraction-img:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
      z-index: 1;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .attraction-item:hover .attraction-img:before {
      opacity: 1;
  }

  .attraction-name {
      padding: 20px;
      text-align: center;
      font-size: 18px;
      font-weight: 600;
      color: #333;
      transition: color 0.3s ease;
  }

  .attraction-item:hover .attraction-name {
      color: var(--primary-color);
  }

  .owl-theme .owl-dots .owl-dot span {
      display: none !important;
  }









  /* footer start here  */
  /* Existing footer styles */
  .recent-blog-footer li {
      display: flex;
      margin-bottom: 25px !important;

  }

  .footer-widget ul {
      list-style: none;
      padding: 0;
  }

  .recent-blog-footer li .thum {
      float: left;
      width: 155px;
      margin-right: 10px;
  }

  .recent-blog-footer li .thum img {
      border-radius: 10px;
  }

  .recent-blog-footer a {
      width: 100%;
      display: inline-block;
      color: var(--white-color)c !important;
  }

  .recent-blog-footer a:hover {
      color: var(--white-color) !important;
  }

  .recent-blog-footer span {
      color: var(--orange-color);
  }

  .footer-top-heiding {
      margin-bottom: 50px;

  }

  .footer-top {
      padding-top: 30px;

  }

  .footer-top-heiding .container {
      padding-bottom: 50px;
      border-bottom: 1px solid var(--white-color)fff2e;
  }

  .f-contact {
      display: flex;
  }

  .f-contact i {
      width: 40px;
      height: 40px;
      background: var(--white-color);
      line-height: 40px;
      color: #412720 !important;
      text-align: center;
      border-radius: 50%;
      float: left;
  }

  .f-contact a {
      color: var(--white-color) !important;
      text-decoration: none;
  }

  .f-contact a:hover {
      color: var(--white-color)c !important;
  }

  .footer-top-heiding .col-lg-4 {
      border-right: 2px solid #20282E;
  }

  .footer-top-heiding .col-lg-4:last-child {
      border-right: none;
  }

  .f-contact span {
      color: var(--white-color)c;
      margin: 5px 10px;
  }

  .f-contact h3 {
      color: var(--white-color);
      font-size: 24px;
  }

  .footer-top-heiding h2 {
      color: var(--white-color);
  }

  .footer-bg {
      color: #777;
      background-position: -180px center !important;
      background-size: cover;
  }

  .f-cta-area.gray-bg {
      background: #f4f4fe;
      border-top: 3px solid var(--orange-color);
  }

  .footer-text p {
      color: #ddd;
      margin-bottom: 0;
  }

  .footer-social span {
      font-size: 14px;
      color: var(--white-color);
      font-weight: 500;
      font-family: 'Playfair Display', serif;
      display: inline-block;
      margin-right: 20px;
  }

  .footer-social a {
      font-size: 16px;
      display: inline-block;
      margin-right: 10px;
      width: 40px;
      height: 40px;
      border-radius: 5px;
      background-color: #101010;
      text-align: center;
      line-height: 40px;
      color: var(--white-color) !important;
  }

  .footer-social a:hover {
      background: var(--orange-color);
      color: var(--white-color) !important;
  }

  .f-widget-title h3,
  .footer-widget .widgettitle {
      font-size: 24px;
      margin-bottom: 5px;
      position: relative;
      padding-bottom: 30px;
      color: var(--white-color);
  }

  .f-widget-title h3::before,
  .footer-widget .widgettitle::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 1px;
      width: 70px;
  }

  .f-widget-title img {
      width: 146px;
  }

  .footer-link ul li i {
      color: var(--orange-color);
      margin-right: 5px;
  }

  .footer-link ul li a {
      color: var(--white-color);
      display: inline-block;
      text-decoration: none;
  }

  .footer-link ul li a::before {
      content: "+";
      margin-right: 8px;
      color: var(--orange-color);
      font-size: 18px;
      display: none;
  }

  .footer-link ul li a:hover {
      color: var(--white-color);
  }

  .footer-link ul li {
      margin-bottom: 10px;
  }

  .footer-link ul li:last-child {
      margin-bottom: 0;
  }

  .f-insta ul li {
      display: inline-block;
      margin-bottom: 15px;
      margin-right: 9px;
      width: 31.2% !important;
  }

  .f-insta ul li img {
      width: 100%;
  }

  .f-insta ul li:nth-child(3),
  .f-insta ul li:nth-child(6) {
      margin-right: 0 !important;
  }

  .f-insta ul li a {
      display: block;
      position: relative;
  }

  .f-insta ul li a::before {
      content: "\e035";
      font-family: "dripicons-v2" !important;
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 24px;
      color: var(--white-color);
      transition: .3s;
      opacity: 0;
      z-index: 9;
  }

  .f-insta ul li a::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      background: var(--orange-color);
      opacity: 0;
      transition: .3s;
  }

  .f-insta ul li:hover a::before {
      top: 50%;
      opacity: 1;
  }

  .f-insta ul li:hover a::after {
      opacity: .6;
  }

  .copyright-wrap {
      background: #282828;
      color: var(--white-color);
      font-size: 15px;
  }

  .copyright-wrap .container {
      padding: 20px 0;
  }

  .copyright-wrap li {
      display: inline;
      padding-left: 15px;
      margin-left: 40px;
      position: relative;
  }

  .copyright-wrap li::before {
      background-color: #101010;
      width: 8px;
      height: 8px;
      content: "";
      position: absolute;
      left: -4px;
      top: 5px;
      border-radius: 50px;
  }

  .copyright-wrap li a {
      color: var(--white-color);
  }

  .f-contact .icon {
      float: left;
      margin-top: 7px;
      margin-right: 15px;
      width: 40px;
  }

  .f-contact li {
      float: left;
      margin-bottom: 15px !important;
      width: 100%;
  }

  .f-contact li:last-child {
      margin-bottom: 0px !important;
  }

  /* New booking form styles */
  .booking-form {
      margin-top: 20px;
  }

  .booking-form .form-group {
      margin-bottom: 15px;
  }

  .booking-form label {
      display: block;
      color: var(--white-color);
      margin-bottom: 5px;
      font-size: 14px;
  }

  .booking-form .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.1);
      color: var(--white-color);
      border-radius: 5px;
  }

  .booking-form .form-control:focus {
      outline: none;
      border-color: var(--orange-color);
  }

  .booking-btn {
      width: 100%;
      padding: 12px;
      background: var(--orange-color);
      color: var(--white-color);
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .booking-btn:hover {
      background: #412720;
  }

  input[type="date"]::-webkit-calendar-picker-indicator {
      filter: invert(1);
  }

  /* Timing Card Styles */
  .timing-card {
      /* background: rgba(255, 255, 255, 0.05); */
      border-radius: 8px;
      /* padding: 20px; */
      /* margin-top: 20px; */
      /* width: 59%; */
      /* max-width: 71%; */
  }

  .timing-item {
      display: flex;
      margin-bottom: 20px;
  }

  .timing-item:last-child {
      margin-bottom: 25px;
  }

  .timing-icon {
      width: 40px;
      height: 40px;
      background: var(--orange-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
  }

  .timing-icon i {
      color: var(--white-color);
      font-size: 16px;
  }

  .timing-info h4 {
      color: var(--white-color);
      font-size: 18px;
      margin-bottom: 5px;
  }


  .small-note {
      font-size: 12px !important;
      color: rgba(255, 255, 255, 0.6) !important;
      margin-top: 5px !important;
      font-style: italic;
  }

  .copyright {
      padding-top: 10px;
      color: var(--white-color);
  }

  .copyright a {
      text-decoration: none;
      font-size: 16px;
      color: var(--white-color);

  }


  /* testimonial section start here  */
  .testimonial-area {
      position: relative;
      z-index: 1;
  }

  .testimonial-area .container {
      position: relative;
      z-index: 2;
  }

  .review-btn a img {
      width: 65% !important;
      margin: auto;
  }

  .section-title h5 {
      color: var(--orange-color);
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
  }

  .section-title h2,
  .section-title .h2 {

      font-size: 60px;
      margin-bottom: 20px;
      position: relative;
      font-weight: 700;
  }

  .section-title p {
      color: rgba(255, 255, 255, 0.8);
      max-width: 700px;
      margin: 0 auto;
  }

  .testimonial-carousel {
      position: relative;
  }

  .single-testimonial {
      background: var(--white-color);
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      margin: 15px;
      position: relative;
      transition: all 0.3s ease;
  }

  .single-testimonial:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .testi-author {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
  }



  .ta-info h6 {
      color: var(--orange-color);
      font-size: 20px;
      margin-bottom: 5px;
      font-weight: 700;
  }

  .ta-info span {
      color: #777;
      font-size: 14px;
  }

  .review-icon {
      margin-bottom: 20px;
  }

  .single-testimonial p {
      color: #555;
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 0;
      font-style: italic;
      position: relative;
      padding-left: 30px;
  }

  .single-testimonial p:before {
      content: '"';
      position: absolute;
      left: 0;
      top: 0;
      font-size: 50px;
      line-height: 1;
      color: var(--orange-color);
      opacity: 0.2;
      font-family: serif;
  }

  .qt-img {
      position: absolute;
      bottom: 30px;
      right: 30px;
      opacity: 0.1;
  }

  /* Owl Carousel Navigation */
  .testimonial-carousel .owl-nav {
      position: absolute;
      top: -80px;
      right: 0;
  }

  .testimonial-carousel .owl-nav button {
      width: 40px;
      height: 40px;
      background: var(--white-color) !important;
      border-radius: 50% !important;
      margin-left: 10px !important;
      transition: all 0.3s ease;
  }

  .testimonial-carousel .owl-nav button:hover {
      background: var(--orange-color) !important;
      color: var(--white-color) !important;
  }

  .testimonial-carousel .owl-nav button span {
      font-size: 24px;
      line-height: 40px;
  }

  /* Owl Carousel Dots */
  .testimonial-carousel .owl-dots {
      margin-top: 30px !important;
      text-align: center;
  }

  .testimonial-carousel .owl-dots button.owl-dot span {
      width: 12px;
      height: 12px;
      margin: 0 5px;
      background: #ddd !important;
      transition: all 0.3s ease;
  }

  .testimonial-carousel .owl-dots button.owl-dot.active span {
      background: var(--orange-color) !important;
      transform: scale(1.2);
  }

  .inner-section {
      background:
          linear-gradient(rgba(2, 3, 4, 0.12), rgba(2, 3, 4, 0.30)),
          url(../images/inner-bg.jpg) center center / cover no-repeat;
      padding: 200px 0px;
      position: relative;

  }

  .inner-content {
      position: absolute;
      transform: translate(-50%, -50%);
      top: 60%;
      left: 50%;
  }

  .inner-haeding {
      color: var(--white-color);
      text-transform: uppercase;
  }

  .about-title h3 {
      text-transform: uppercase;
      font-weight: 500;
      color: var(--black-color);
      font-family: var(--font-primary);
      font-size: 68px;
  }

  .about-title P {
      font-size: 18px;
      line-height: 1.5;
  }

  .book-now-section {
      position: relative;
      display: inline-block;
      text-decoration: none;
      color: var(--white-color);
      background-color: var(--primary-color);
      padding: 10px 25px;
      text-transform: uppercase;
      font-weight: 600;
      overflow: hidden;
      z-index: 1;
      transition: color 0.4s ease;
  }

  .book-now-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg,
              rgba(255, 255, 255, 0.1) 0%,
              rgba(255, 255, 255, 0.3) 50%,
              rgba(255, 255, 255, 0.1) 100%);
      transform: skewX(-20deg);
      transition: left 0.7s ease;
      z-index: -1;
  }

  .book-now-section:hover::before,
  .book-now-section:active::before {
      left: 100%;
  }

  .book-now-section:hover {
      color: var(--white-color);
      background-color: var(--black-color);
  }

  .call-info {
      line-height: 0.5;
      margin: 0px 5px;
  }

  .call-info i {
      margin: 0px 10px;
      background-color: var(--primary-color);
      color: var(--white-color);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      z-index: 1;
      transition: color 1.5s;
  }

  .call-info p {
      font-size: 18px;

  }

  .call-info a {
      text-decoration: none;
      color: var(--black-color);
  }

  /* Image Containers */
  .about-page {
      padding: 0px 50px;
  }

  .img-container {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      margin-bottom: 20px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .img-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
  }

  .img-container:hover::before {
      opacity: 1;
  }

  .img-container img {
      width: 100%;
      height: auto;
      transition: transform 0.5s ease;
  }

  .img-container:hover img {
      transform: scale(1.05);
  }

  /* Main Image Overlay */
  .about-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
  }

  .discount-wrapper {
      text-align: center;
      position: relative;
  }



  .discount-animation span {
      position: absolute;
      left: 50%;
      top: 0;
      transform-origin: 0 90px;
      color: var(--white-color);
      font-weight: 700;
      font-size: 14px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  /* Reviews Section */
  .voucher-box {
      background: var(--white-color);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
      max-width: 378px;
  }

  .voucher-box::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--primary-color);
  }

  .review-header {
      position: relative;
      padding-bottom: 15px;
      margin-bottom: 20px;
  }

  .review-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary-color);
  }

  .voucher-title {
      color: var(--primary-color);
      font-size: 24px;
      margin-bottom: 15px;
      position: relative;
  }

  .voucher-text {
      color: #666;
      margin-bottom: 20px;
      line-height: 1.6;
  }

  .img-first {
      height: 300px;
  }

  /* Customer Rating */
  .customer-review {
      background: var(--primary-color);
      padding: 30px;
      border-radius: 10px;
      color: var(--white-color);
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .customer-review::before {
      content: '';
      position: absolute;
      top: -20px;
      right: -20px;
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
  }

  .star-rating {
      margin-bottom: 15px;
      position: relative;
  }

  .star-rating i {
      color: #ffc107;
      margin: 0 3px;
      font-size: 20px;
  }

  .rating-number {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 5px;
      position: relative;
  }

  .rating-text {
      font-size: 16px;
      opacity: 0.9;
      margin-bottom: 20px;
  }

  .voucher-btn {
      background: var(--black-color);
      color: var(--white-color);
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      display: inline-block;
      position: relative;
      overflow: hidden;
  }

  .voucher-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: all 0.5s ease;
  }

  .voucher-btn:hover::before {
      left: 100%;
  }

  .voucher-btn:hover {
      background: #333;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }



  /* hotel amenties start here  */
  /* Flip Container */
  .service-box {
      position: relative;
      height: 270px;
      /* Fixed height for consistency */
      perspective: 1000px;
      border: 1px solid #333;
      background: #222;
  }

  /* Flip Animation */
  .service-box-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.6s;

  }

  .service-box:hover .service-box-inner {
      text-align: center;
  }

  /* Front and Back Faces */
  .service-box-front,
  .service-box-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      padding: 30px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
  }

  /* Back Face */


  /* Icon Styling */
  .box-icon img {
      width: 60px;
      height: 60px;
      transition: all 0.3s ease;
  }

  .service-box:hover .box-icon img {
      transform: scale(1.1);
  }

  /* Text Styling */
  .box-title {
      font-size: 20px;
      margin: 15px 0 10px;
      color: #fff;
  }

  .box-text {
      color: #aaa;
      font-size: 14px;
      line-height: 1.4;
  }

  .service-box-back p {
      color: #fff;
      font-size: 15px;
      line-height: 1.5;
  }


  /* room details start here  */
  .room-header {
      margin-bottom: 30px;
  }

  .room-title {
      font-weight: 700;
      color: #2c3e50;
  }


  .per-night {
      font-size: 14px;
      color: #7f8c8d;
  }

  .sidebar-card {
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 25px;
      border: none;
  }

  .sidebar-header {
      background-color: var(--primary-color);
      color: white;
      padding: 15px;
      border-radius: 10px 10px 0 0 !important;
  }

  .amenities-list {
      list-style: none;
      padding: 0;
  }

  .amenities-list li {
      padding: 8px 0;
      border-bottom: 1px solid #eee;
  }

  .amenities-list li:last-child {
      border-bottom: none;
  }

  .book-now-btn {
      background-color: var(--primary-color);
      border: none;
      padding: 12px;
      font-weight: 600;
  }

  .book-now-btn:hover {
      background-color: var(--primary-color);
  }

  .call-btn {
      background-color: var(--primary-color);
      border: none;
      padding: 12px;
      font-weight: 600;
  }

  .call-btn a {
      text-decoration: none;
      color: var(--white-color);
      text-transform: uppercase;
  }

  .call-btn:hover {
      background-color: var(--black-color);
      color: var(--white-color);
  }

  .room-details-section {
      background-color: var(--orange-color);
      color: var(--white-color);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      margin-top: 30px;
  }



  .owl-carousel .item img {
      border-radius: 10px;
      height: 500px;
      object-fit: cover;
  }

  .owl-nav {
      position: absolute;
      top: 50%;
      width: 100%;
  }

  .owl-prev,
  .owl-next {
      position: absolute;
      background: rgba(0, 0, 0, 0.5) !important;
      color: white !important;
      width: 40px;
      height: 40px;
      border-radius: 50% !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
  }

  .owl-prev {
      left: 15px;
  }

  .owl-next {
      right: 15px;
  }

  .room-feature-icon {
      font-size: 24px;
      color: #e74c3c;
      margin-right: 10px;
  }



  .gallery-section {
      padding: 60px 0;
      background-color: #f8f9fa;
  }

  .gallery-title {
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
  }

  .gallery-title:after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, #ff6b6b, #4ecdc4);
  }

  .gallery-item {
      position: relative;
      margin-bottom: 30px;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      cursor: pointer;
  }

  .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .gallery-img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: all 0.5s ease;
  }

  .gallery-item:hover .gallery-img {
      transform: scale(1.05);
  }

  .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255, 107, 107, 0.7) 0%, rgba(78, 205, 196, 0.7) 100%);
      opacity: 0;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .gallery-item:hover .gallery-overlay {
      opacity: 1;
  }

  .gallery-overlay i {
      color: white;
      font-size: 40px;
  }

  /* Modal Styles */
  .gallery-modal {
      display: none;
      position: fixed;
      z-index: 1050;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background-color: rgba(0, 0, 0, 0.9);
      animation: fadeIn 0.3s;
  }

  .modal-content {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      /* position: relative; */
  }

  .modal-img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
      animation: zoomIn 0.3s;
  }

  .close-btn {
      position: absolute;
      top: 88px;
      right: 110px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
      z-index: 10;
  }

  .close-btn:hover {
      color: #ff6b6b;
  }

  .prev-btn,
  .next-btn {
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      margin-top: -22px;
      color: white;
      font-size: 30px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
      user-select: none;
  }

  .next-btn {
      right: 0;
      border-radius: 3px 0 0 3px;
  }

  .prev-btn {
      left: 0;
      border-radius: 0 3px 3px 0;
  }

  .prev-btn:hover,
  .next-btn:hover {
      background-color: rgba(0, 0, 0, 0.8);
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  @keyframes zoomIn {
      from {
          transform: scale(0.9);
      }

      to {
          transform: scale(1);
      }
  }

  @media (max-width: 767px) {
      .gallery-img {
          height: 200px;
      }

      .modal-img {
          max-width: 95%;
          max-height: 80%;
      }

      .prev-btn,
      .next-btn {
          font-size: 20px;
          padding: 10px;
      }
  }


  /* blog page start here  */
  .blog-pad {
      padding: 80px 0px;
  }

  .blog-btn {
      padding: 20px 0px;
  }

  .blog-btn a {
      text-decoration: none;
      padding: 10px 26px;
      background-color: #000;
      color: #fff;
  }

  .blog-card {
      border: 1px solid #eee;
      border-radius: 5px;
      overflow: hidden;
      background: #fff;
      transition: all 0.3s ease;
  }

  .blog-card:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .blog-img {
      width: 100%;
      height: auto;
      display: block;
  }

  .blog-content {
      padding: 5px 10px;
  }

  .blog-content .blog-meta {
      font-size: 14px;
      color: #666;
  }

  .blog-content .blog-tagline {
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 600;
  }

  .blog-content .blog-title {
      margin-top: 5px;
      font-size: 24px;
      font-weight: 700;
  }

  .sidebar h4 {
      margin-bottom: 15px;
  }

  .sidebar a {
      text-decoration: none;
      color: #333;
  }

  .sidebar a:hover {
      text-decoration: underline;
  }

  .sidebar .latest-posts li img {
      width: 60px;
      height: 60px;
      object-fit: cover;
  }

  .sidebar .latest-posts li a {
      font-weight: 500;
      color: #333;
      text-decoration: none;
  }

  .sidebar .latest-posts li a:hover {
      text-decoration: underline;
  }

  .blog-tittle {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
      padding: 10px 0px;
  }

  .blog-details h3 {
      margin-top: 30px;
      font-size: 24px;
      padding: 10px 0px;
  }

  .blog-details h4 {
      margin-top: 24px;
      font-size: 18px;
      padding: 10px 0px;
  }

  .seo-none {
      display: none;
  }

  .blog-details a {
      color: red;
  }

  .share {
      padding: 20px 0px;
  }

  .post-info-blog {
      color: var(--primary-color);
      font-weight: 500;

  }

  .blog-date {
      color: var(--primary-color) !important;
      font-weight: 500;

  }

  .blog-details {
      /* color:var(--primary-color) !important; */
      font-weight: 500;

  }

  .blog-details a {
      color: var(--primary-color) !important;

  }


  /* Contact Section */
  .contact-area {
      background-repeat: no-repeat;
      background-position: center center;
      position: relative;
      z-index: 1;
  }

  .contact-bg02 {
      background: #f7f5f1;
      padding: 80px;
      text-align: center;
      border-radius: 10px;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  }

  .contact-bg02 h3 {
      font-size: 48px;
      color: #333;
      margin-bottom: 30px;
      font-weight: 700;
  }

  .contact-info {
      padding: 30px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  }

  .single-cta {
      margin-bottom: 30px;
      /* text-align: left; */
      padding: 20px;
      border-radius: 8px;
      transition: all 0.3s ease;
      background: #fff;
      border: 1px solid #eee;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
  }

  .single-cta:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .f-cta-icon {
      font-size: 30px;
      color: var(--primary-color);
      margin-bottom: 15px;
  }

  .single-cta h5 {
      font-size: 20px;
      color: #333;
      margin-bottom: 15px;
      font-weight: 600;
  }

  .single-cta p {
      color: #666;
      margin-bottom: 0;
  }

  .single-cta a {
      color: var(--primary-color);
      text-decoration: none;
      transition: all 0.3s ease;
      width: 100%;
  }

  .single-cta a:hover {
      color: #333;
      text-decoration: underline;
  }

  /* Contact Form */
  .contact-form input,
  .contact-form textarea {
      width: 100%;
      padding: 15px 20px;
      border: 1px solid #ddd;
      border-radius: 5px;
      margin-bottom: 20px;
      font-size: 16px;
      transition: all 0.3s ease;
      background: #f9f9f9;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
      outline: none;
      border-color: var(--primary-color);
      background: #fff;
      box-shadow: 0 0 10px rgba(100, 66, 34, 0.1);
  }

  .contact-form textarea {
      height: 150px;
      resize: none;
  }

  /* Submit Button */
  .ss-btn {
      background: var(--primary-color);
      color: #fff;
      border: none;
      padding: 15px 40px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 5px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .ss-btn:hover {
      background: #333;
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
      .contact-bg02 {
          padding: 50px;
      }
  }

  @media (max-width: 767px) {
      .contact-bg02 {
          padding: 30px;
      }

      .contact-bg02 h3 {
          font-size: 36px;
      }

      .contact-info {
          margin-bottom: 30px;
      }
  }

  @media (max-width: 575px) {
      .contact-bg02 {
          padding: 20px;
      }

      .contact-bg02 h3 {
          font-size: 28px;
      }

      .single-cta {
          padding: 15px;
      }
  }




  /* FAQ Section Styles */
  .section_padding {
      padding: 80px 0;
  }

  .faq_accordion {
      max-width: 970px;
      display: block;
      margin: 0 auto;
  }

  .title_area {
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
      text-align: center;
  }

  .animate_title {
      position: relative;
      font-size: 32px;
      font-weight: 700;
      color: #000;
      padding-bottom: 20px;
      display: inline-block;
      opacity: 0;
      transform: translateY(30px);
  }

  .animate_title::before,
  .animate_title::after {
      content: "";
      position: absolute;
      height: 3px;
      width: 50px;
      background-color: red;
      bottom: 0;
      transition: 0.4s ease;
  }

  .animate_title::before {
      left: 0;
  }

  .animate_title::after {
      right: 0;
  }

  .animate_title:hover::before,
  .animate_title:hover::after {
      width: 80px;
      background-color: #ff6b35;
  }

  /* Accordion Styles */
  .accordion_card {
      transition: 0.4s ease-in-out;
      overflow: hidden;
      /* background-color: #f0ebeb; */
      position: relative;
      z-index: 3;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 24px;
  }

  .accordion_header {
      position: relative;
  }

  .accordion_button {
      width: 100%;
      font-size: 18px;
      font-weight: 600;
      border: 0;
      color: #000;
      background-color: #ffffff;
      letter-spacing: 0.02em;
      padding: 24px 60px 24px 48px;
      text-align: left;
      transition: 0.3s;
      position: relative;
      border-radius: 8px 8px 0 0;
      cursor: pointer;
      display: flex;
      align-items: center;
  }

  .accordion_button.active {
      color: #000;
      /* background-color: #f0ebeb; */
      padding-bottom: 15px;
  }

  .accordion_button h1,
  .accordion_button h2,
  .accordion_button h3 {
      font-size: 18px;
      font-weight: 600;
      margin: 0;
      color: inherit;
  }

  .accordion_button::after {
      content: "+";
      position: absolute;
      right: 30px;
      font-size: 20px;
      font-weight: 500;
      color: red;
      transition: 0.3s ease-in-out;
  }

  .accordion_button.active::after {
      content: "−";
      color: orangered;
  }

  .accordion_collapse {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
  }

  .accordion_collapse.show {
      max-height: 1000px;
      /* Adjust based on content */
  }

  .accordion_body {
      padding: 0 48px 24px;
      border-radius: 0 0 8px 8px;
  }

  .faq_text {
      margin-bottom: 15px;
      color: #000;
      line-height: 1.6;
  }

  .faq_text ul {
      margin-top: 10px;
      padding-left: 20px;
  }

  .accordion_body ul li {
      margin-bottom: 8px;
      color: #111111;
  }

  .faq_text a {
      color: orangered;
      text-decoration: none;
      font-weight: 600;
  }

  .faq_text a:hover {
      text-decoration: underline;
  }

  /* Animation */
  @keyframes fadeUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }