  /* Background setup - you'll add your own image */
  body {
      overflow-x: hidden;
      background-image: url('../images/67bdf3d85c009b52ed8b1d22_BG-02.svg');
      background-position: 0 0;
      background-size: 400px;
      font-size: 20px;
      font-weight: 400;
      line-height: 1em;
      margin: 0;
  }
  /* cart */

  .cart-popup {
      display: none;
      position: fixed;
      top: 400%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #f0e7af;
      border: 1px solid #e0e0e0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      width: 350px;
    
  }

  .cart-popup-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 20px;
      border-bottom: 1px solid black;
  }

  .cart-popup-header h2 {
      margin: 0;
      font-size: 24px;
      color: #4d423d;
      font-weight: 600;
      font-family: "Aboreto", sans-serif;
  }

  .close-button {
      background: none;
      border: none;
      font-size: 35px;
      cursor: pointer;
      color: black;
      margin-right: -15px;
  }

  .cart-popup-content {
      padding: 40px 20px;
      text-align: center;
      min-height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .cart-popup-content p {
      color: #4d423d;
      font-size: 16px;
  }

  .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 999;
      /* Overlay should be below the popup */
  }


  /*  sidebar*/
  /* Sidebar */
  .sidebar {
      position: fixed;
      top: 0;
      left: -300px;
      /* Sidebar is off-screen initially */
      width: 300px;
      height: 100vh;
      background-color: black;
      transition: left 0.3s ease;
      z-index: 2000;
      overflow-y: auto;
  }

  /* Sidebar is shown when `.open` class is added */
  .sidebar.open {
      left: -90px;
  }

  /* Sidebar Header */
  .sidebar-header {
      padding: 30px 70px 20px 100px;
  }

  .sidebar-header img {
      width: 150px;
      height: 20%;
  }

  /* Navigation Menu */
  .sidebar-nav-menu {
      padding: 20px 100px;
      align-items: flex-start;
      display: flex;
      flex-direction: column;
  }

  .sidebar-nav-item {
      display: block;
      padding: 15px 0px;
      color: #ccc;
      text-decoration: none;
      font-size: 16px;
      transition: all 0.3s ease;
      font-family: "Aboreto", sans-serif;
  }

  .sidebar-nav-item:hover {
      background-color: rgb(61, 61, 253);
      color: white;
      padding-left: 30px;
  }

  .sidebar-nav-item.active {
      color: white;
  }

  /* Contact Section */
  .sidebar-contact-section {
      padding-left: 100px;
  }

  .sidebar-contact-section .sidebar-contact-btn {
      color: white;
      padding: 12px 18px 12px 18px;
      text-decoration: none;
      border-radius: 25px;
      font-size: 13px;
      max-width: 30px;
      text-transform: uppercase;
      font-family: "Aboreto", sans-serif;
      border: 1px solid rgb(109, 109, 109);
  }

  /* Overlay */
  .sidebar-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }

  .sidebar-overlay.show {
      opacity: 1;
      visibility: visible;
  }

  /* Sidebar Close Button */
  .sidebar-close-btn {
      position: absolute;
      top: 20px;
      right: 45px;
      background: none;
      border: none;
      color: #f0e7af;
      font-size: 24px;
      cursor: pointer;
      padding: 5px;
      border-radius: 3px;
      transition: all 0.3s ease;
      z-index: 3000;
  }

  .sidebar-close-btn:hover {
      color: #f0e7af;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .sidebar {
          width: 100%;
          left: -100%;
          /* Fix issue on smaller screens */
      }
  }
  #sidebarMenuBtn {
  cursor: pointer;
  margin: 10px;
}
#sidebarMenuBtn {
  position: relative;
  z-index: 3000;
}


  /*  */

  .darker {
      font-family: "Darker Grotesque", sans-serif;


  }

  .aboreto-regular {
      font-family: "Aboreto", sans-serif;

  }

  .section1-background-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 90%;
      padding-top: 150px;
      padding-left: 130px;
      background-image: url('../images/about-background.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: -1;
      overflow-x: hidden;
  }

  /* Overlay gradient that fades out at bottom */
  .section1-background-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom,
              rgba(2, 2, 5, 0.6) 0%,
              rgba(2, 2, 4, 0.6) 70%,
              rgba(0, 0, 0, 0) 100%);
      z-index: -1;
      overflow: hidden;
  }


  /* Add your background image to this class */
  .section1-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      z-index: -2;
      overflow: hidden;
  }

  /* Decorative borders */
  .section1-left-border img {
      position: absolute;
      top: -45px;
      left: 20px;
      height: 65%;
      width: 70px;
      background-repeat: repeat-y;
      z-index: 2;
      overflow: hidden;
  }

  .section1-right-border img {
      position: absolute;
      top: -45px;
      right: 20px;
      height: 65%;
      width: 70px;
      background-repeat: repeat-y;
      z-index: 2;
      overflow: hidden;
  }

  .section1-border-bottom-left img {
      position: absolute;
      top: 335px;
      left: 20px;
      height: 65%;
      width: 70px;
      z-index: 2;
      transform: rotate(180deg);
      overflow: hidden;
  }

  .section1-border-bottom-right img {
      position: absolute;
      top: 335px;
      right: 20px;
      height: 65%;
      width: 70px;
      z-index: 2;
      transform: rotate(180deg);
      overflow: hidden;
  }

  .section1-left-border {
      left: 0;
      overflow: hidden;
  }

  .section1-right-border img {
      right: 20px;
      transform: scaleX(-1);
      overflow: hidden;
  }

  /* Header and Navigation */
  header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 85px 8px 95px;

  }

  nav {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: space-between;
      position: relative;

  }

  .image-burger {
      display: none;
  }

  .left-menu,
  .right-menu {
      display: flex;
      list-style: none;
      align-items: center;
  }

  .left-menu li,
  .right-menu li {
      margin: 0 22px;
  }


  .left-menu li a,
  .right-menu li a {
      color: #e9d8a6;
      text-decoration: none;
      font-family: "Darker Grotesque", sans-serif;
      font-size: 20px;
      font-weight: 500;
      transition: color 0.3s;
  }


  .left-menu li a:hover,
  .right-menu li a:hover {
      color: #fff;
  }

  .dropdown-arrow {
      display: inline-block;
      margin-left: 5px;
      font-size: 10px;
      vertical-align: middle;
  }

  .hollow-dropdown-arrow {
      display: inline-block;
      margin-left: 2px;
      width: 4px;
      height: 4px;
      border: 3px solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
      position: relative;
      top: -6px;
  }

  .logo {
      display: flex;
      align-items: center;
      font-size: 26px;
      font-weight: bold;
      letter-spacing: 1px;
      color: #e9d8a6;
      position: absolute;
      left: 51%;
      transform: translateX(-50%);
      white-space: nowrap;
  }

  .logo img {
      margin-right: 0px;
      height: 30px;
  }

  .cart-icon {
      position: relative;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid white;
      padding: 9px;
      margin-left: -16px;

  }

  .cart-count {
      position: absolute;
      top: -5px;
      right: -15px;
      background-color: #e9d8a6;
      color: #333;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 12px;
      font-weight: bold;
  }

  /*  */
  /* Floating Navbar Styles */
  /* Floating Navbar Styles */
  .floating-navbar {
      position: fixed;
      top: 0;
      /* Always at top position */
      left: 0;
      right: 0;
      height: 60px;
      background-color: black;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(233, 216, 166, 0.1);
      opacity: 0;
      /* transform: translateY(100%);  */
      transition: opacity 0.08s linear, transform 0.08s linear;
      /* Ultra-fast transition */
      will-change: opacity, transform;
      /* Performance optimization */
      /*  */
      justify-content: space-between;

      padding: 8px 85px 8px 95px;
  }

  .floating-navbar.visible {
      opacity: 1;
      transform: translateY(0);
      /* Move to normal position */
  }

  .floating-left,
  .floating-right {
      display: flex;
      align-items: center;
  }

  .floating-logo {
      display: flex;
      align-items: center;
  }

  .floating-logo img {
      height: 24px;
  }

  .floating-menu {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0 0 0 40px;
  }

  .floating-menu li {
      margin: 0 15px;
  }

  .floating-menu li a {
      color: #e9d8a6;
      text-decoration: none;
      font-size: 18px;
      transition: color 0.3s;
  }

  .floating-menu li a:hover {
      color: #fff;
  }

  .floating-actions {
      display: flex;
      align-items: center;
  }

  .floating-cart {
      position: relative;
      margin-left: 20px;
  }

  .floating-search {
      margin-right: 20px;
      cursor: pointer;
  }

  .floating-search svg,
  .floating-cart svg {
      fill: #e9d8a6;
      width: 18px;
      height: 18px;
      transition: fill 0.3s;
  }

  .floating-search:hover svg,
  .floating-cart:hover svg {
      fill: #fff;
  }

  .floating-cart-count {
      position: absolute;
      top: -8px;
      right: -8px;
      background-color: #e9d8a6;
      color: #333;
      border-radius: 50%;
      width: 16px;
      height: 16px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 10px;
      font-weight: bold;
  }

  /* Main content */
  .section1-main-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: calc(100vh - 120px);
      padding: 0 100px;
      color: #f0e7af;

  }

  .section1-title {
      font-size: 72px;
      line-height: 1.2;
      letter-spacing: 2px;
      font-weight: 100;
      text-transform: uppercase;
      font-family: "Aboreto", sans-serif;
      margin: 0 123px;
      color: #f0e7af;
  }


  .section1-subtitle {
      font-size: 21px;
      line-height: 1.1;
      max-width: 55%;
      font-family: "Darker Grotesque", sans-serif;
      font-weight: 500;
      color: #f0e7af;
  }

  /*  */
  .section1-gallery {
      position: absolute;
      top: 90%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 48%;
      height: 100px;
      display: flex;
      align-items: center;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      /* Hide scrollbar for Firefox */
      -ms-overflow-style: none;
      /* Hide scrollbar for IE and Edge */
  }

  .section1-gallery::-webkit-scrollbar {
      display: none;
      /* Hide scrollbar for Chrome, Safari and Opera */
  }

  .section1-image-container {
      flex: 0 0 auto;
      width: 160px;
      height: 100px;
      margin: 0 8px;
      transition: all 0.3s ease;
  }

  .section1-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }

  .section1-nav-button {
      position: absolute;
      top: 90%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: transparent;
      border: 1px solid #f0e7af;
      color: #f0e7af;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: background-color 0.3s ease;
  }

  .section1-nav-button:hover {
      background-color: rgba(0, 0, 0, 0.6);
  }

  .section1-prev {
      left: 310px;
  }

  .section1-next {
      right: 310px;
  }

  /* Make gallery work on mobile */
  @media (max-width: 768px) {
      .section1-image-container {
          width: 300px;
          height: 200px;
      }

      .section1-nav-button {
          width: 40px;
          height: 40px;
          font-size: 16px;
      }
  }

  /* section2 */
  .section2-container {
      display: flex;
      gap: 90px;
      padding: 250px 120px 0px 120px;
  }

  .section2-left-content {
      width: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0;
      margin: 0;
  }

  .section2-right-content {
      width: 50%;
      position: relative;
      outline-color: #f0e7af;
      outline-offset: 8px;
      outline-width: 2px;
      outline-style: solid;
  }

  .section2-right-content img {
      width: 545px;
      height: 691px;
  }

  .section2-hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .background-video-cover {
      object-fit: cover;
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0%;
  }

  .w-background-video {
      color: #fff;
      height: 697px;
      width: 565px;
      position: relative;
      overflow: hidden;
  }

  .section2-heading {
      font-size: 48px;
      font-weight: 400;
      color: #4a4a4a;
      margin-bottom: 2rem;
      line-height: 1.2;
      font-family: "Aboreto", sans-serif;
      padding: 0;
      margin: 0;
  }

  .section2-about-btn {
      display: inline-block;
      background-color: black;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 25px;
      font-size: 13px;
      max-width: 75px;
      margin-bottom: 100px;
      text-transform: uppercase;
      font-family: "Aboreto", sans-serif;
      margin-top: 40px;
  }

  .section2-title {
      color: #4a4a4a;
      font-size: 24px;
      font-weight: 400;
      text-transform: uppercase;
      font-family: "Aboreto", sans-serif;
      padding-top: 10px;
      line-height: 1.1em;
  }

  .section2-description {
      color: #777;
      font-size: 20px;
      font-family: "Darker Grotesque", sans-serif;
      margin: 0;
      line-height: 22px;
  }

  @media (max-width: 768px) {
      .section2-container {
          flex-direction: column;
      }

      .section2-left-content {
          padding: 2rem;
      }

      .section2-right-content {
          height: 50vh;
      }
  }

  /* section3 */
  .section3-container {
      display: flex;
      gap: 75px;
      padding: 50px 120px 0px 120px;
      align-items: center;
  }

  .section3-image-container {
      width: 40%;
      border: 2px solid #f0e7af;
      padding: 0.4rem;
      background-color: #fff;
      margin-top: 70px;
  }

  .section3-castle-image {
      width: 100%;
      height: 540px;
  }

  .section3-content {
      width: 60%;
      margin: 0px;
      padding-top: 60px;
  }

  .section3-main-heading {
      font-family: Aboreto, sans-serif;
      font-size: 48px;
      color: #4a4a4a;
      font-weight: normal;
      line-height: 1.2em;
      margin: 0;
      padding: 0;
  }

  .section3-intro-text {
      color: #717171;
      font-weight: 400;
      font-size: 20px;
      line-height: 1.2;
      font-family: "Darker Grotesque", sans-serif;
      padding-right: 40px;
  }

  .section3-timeline {
      display: flex;
      justify-content: space-between;
      padding-top: 80px;
  }

  .section3-timeline-item {
      flex: 1;
      padding-right: 1.5rem;
  }

  .section3-timeline-year {
      font-family: Aboreto, sans-serif;
      font-size: 20px;
      color: #4a4a4a;
      font-weight: 100;
      margin-bottom: 1rem;
      padding-bottom: 0.7rem;
      border-bottom: 1px solid #e5d9b6;
  }

  .section3-timeline-content {
      color: #666;
      font-size: 20px;
      line-height: 1.2;
      font-family: "Darker Grotesque", sans-serif;
  }

  @media (max-width: 768px) {
      .section3-container {
          flex-direction: column;
      }

      .section3-timeline {
          flex-direction: column;
          gap: 2rem;
      }

      .section3-timeline-item {
          padding-right: 0;
      }
  }

  /* section4 */
  .section4-container {
      margin-top: 140px;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(4, 170px);

  }

  .section4-text-overlay {
      position: absolute;
      top: 50px;
      left: 30px;
      color: white;
      font-size: 20px;
      font-weight: 500;
      padding: 20px;
      font-family: Darker Grotesque, sans-serif;
      line-height: 1.2;
      max-width: 68.2%;
      z-index: 1;

  }

  .section4-image-container {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 100%;

  }

  .section4-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .section4-image-1 {
      grid-column: 1 / 7;
      grid-row: 1 / 5;
      position: relative;
      height: 400px;


  }


  .section4-image-2 {
      grid-column: 7 / 10;
      grid-row: 1 / 5;
  }

  .section4-image-3 {
      grid-column: 10 / 13;
      grid-row: 1 / 3;
  }

  .section4-image-4 {
      grid-column: 10 / 13;
      grid-row: 3 / 5;
  }

  .section4-content-box {
      grid-column: 1 / 7;
      grid-row: 3 / 5;
      background-color: #f0e7af;
      padding: 170px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      z-index: 2;

  }

  .section4-heading {
      color: #4d423d;
      font-family: Aboreto, sans-serif;
      font-size: 48px;
      font-weight: 400;
      line-height: 1.2em;
      margin-bottom: 20px;
      text-transform: uppercase;
      max-width: 70%;
  }

  .section4-button {
      display: inline-block;
      background-color: black;
      color: white;
      padding: 10px 33px;
      font-family: Aboreto, sans-serif;
      font-size: 13px;
      text-decoration: none;
      margin-top: 15px;
      margin-bottom: 30px;
      border-radius: 25px;
      text-transform: uppercase;
      width: fit-content;

  }

  @media (max-width: 992px) {
      .section4-container {
          grid-template-columns: 1fr 1fr;
          grid-template-rows: repeat(5, auto);
      }

      .section4-image-1 {
          grid-column: 1 / 2;
          grid-row: 1 / 2;
          height: 300px;
      }

      .section4-image-2 {
          grid-column: 1 / 3;
          grid-row: 3 / 4;
          height: 400px;
      }

      .section4-image-3 {
          grid-column: 2 / 3;
          grid-row: 1 / 2;
          height: 300px;
      }

      .section4-image-4 {
          grid-column: 1 / 3;
          grid-row: 5 / 6;
          height: 300px;
      }

      .section4-content-box {
          grid-column: 1 / 3;
          grid-row: 2 / 3;
          padding: 20px;
      }
  }

  @media (max-width: 576px) {
      .section4-container {
          grid-template-columns: 1fr;
      }



      .section4-image-1 {
          grid-row: 1 / 2;
      }

      .section4-content-box {
          grid-column: 1 / 2;
          grid-row: 2 / 3;
      }

      .section4-image-2 {
          grid-row: 3 / 4;
      }

      .section4-image-3 {
          grid-row: 4 / 5;
      }

      .section4-image-4 {
          grid-row: 5 / 6;
      }
  }

  /* section5 */


  .section5-container {
      display: flex;
      gap: 75px;
      padding: 120px 120px 0px 120px;
      justify-content: space-between;
      align-items: center;
      gap: 70px;
  }

  .section5-left-content {
      width: 50%;

  }

  .section5-right-content {
      width: 50%;

  }

  .section5-heading {
      font-family: Aboreto, sans-serif;
      font-size: 48px;
      font-weight: 400;
      color: #4a4141;
      margin-bottom: 30px;
  }

  .section5-paragraph {

      color: #666;
      margin-bottom: 30px;
      font-family: Darker Grotesque, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.2em;
      max-width: 500px;
  }

  .section5-learn-more-btn {
      display: inline-block;
      background-color: black;
      color: white;
      padding: 10px 33px;
      font-family: Aboreto, sans-serif;
      font-size: 13px;
      text-decoration: none;
      margin-top: 15px;
      border-radius: 25px;
      text-transform: uppercase;
      width: fit-content;
  }

  .section5-learn-more-btn:hover {
      background-color: #333;
      transform: translateY(-2px);
  }

  .section5-hours-card {
      background-color: #000;
      color: #fff;
      padding: 35px 130px 0 130px;
      text-align: center;
      position: relative;
      overflow: hidden;
      max-width: 1000px;
      font-family: Darker Grotesque, sans-serif;
  }

  .section5-corner-decoration {
      position: absolute;
      width: 20px;
      height: 20px;
      color: white;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.2em;
      letter-spacing: .4px;
      font-family: Darker Grotesque, sans-serif;

  }

  .section5-top-left {
      top: 10px;
      left: 10px;
  }

  .section5-top-right {
      top: 10px;
      right: 10px;
  }

  .section5-bottom-left {
      bottom: 10px;
      left: 10px;
  }

  .section5-bottom-right {
      bottom: 10px;
      right: 10px;
  }

  .section5-hours-heading {
      font-size: 20px;
      font-weight: 500;
      line-height: 1.2em;
      letter-spacing: .4px;
      font-family: Darker Grotesque, sans-serif;
      margin-bottom: 20px;


  }

  .section5-months {
      margin-bottom: 10px;
      font-size: 16px;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.2em;
      letter-spacing: .4px;
      font-family: Darker Grotesque, sans-serif;
  }

  .section5-time {
      margin-bottom: 30px;
      font-family: Aboreto, sans-serif;
      font-size: 28px;
      font-weight: 400;
      line-height: 1.2em;
      letter-spacing: -.5px;
      color: #f0e7af;
      ;
  }

  @media (max-width: 768px) {
      .section5-container {
          flex-direction: column;
          padding: 15px;
      }

      .section5-left-content {
          padding-right: 0;
      }

      .section5-heading {
          font-size: 36px;
      }

      .section5-right-content {
          width: 100%;
          max-width: 100%;
      }
  }

  .corner {
      z-index: 1;
      filter: invert();
      width: 25px;
      height: 25px;
      position: absolute;
      inset: 0% 0% auto auto;
  }

  /* section6 */
  .section6-body {
      background-color: #fffef8;
      color: #3a2a1d;
      position: relative;
      padding: 20px;
      overflow-x: hidden;
  }

  /* Background decorative elements */
  .section6-body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      background-image:
          radial-gradient(circle, #f0e9cb 1px, transparent 2px),
          radial-gradient(circle, #f0e9cb 1px, transparent 2px);
      background-size: 50px 50px;
      background-position: 0 0, 25px 25px;
      opacity: 0.7;
  }

  .section6-container {
      padding: 120px 120px 0px 120px;

  }

  .section6-header {
      display: flex;
      justify-content: space-between;
      align-items: center;

  }

  .section6-header h2 {
      font-size: 42px;
      font-weight: 100;
      line-height: 1.3em;
      color: #4d423d;
      font-family: Aboreto, sans-serif;
      max-width: 600px;
  }

  .section6-description {
      padding-top: 30px;
      max-width: 550px;
      line-height: 1.3;
      color: #454545;
      font-family: Darker Grotesque, sans-serif;
  }

  .section6-description span {
      color: #c39f67;
  }

  .section6-tabs {
      display: flex;
      margin-bottom: 40px;

  }

  .section6-tab {
      padding: 0px 30px 5px 50px;
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      border-radius: 30px;
      margin-right: -30px;
      color: #4d423d;
      background-color: #f9f9fa;
      font-family: Darker Grotesque, sans-serif;
      align-items: center;
      text-align: center;
  }

  .section6-tab.active {
      padding: 0px 30px 5px 20px;
      background-color: #f0e9cb;
      color: #4d423d;
      font-weight: 400;
      z-index: 1;
      text-align: center;
      font-family: Darker Grotesque, sans-serif;
      align-items: center;
  }

  .section6-price-cards {
      display: flex;
      justify-content: space-between;

  }

  .section6-price-card {
      flex: 1;
      padding: 40px 40px;
      border-left: 1px solid #e0e0e0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      color: #4d423d;
      font-weight: 100px;
  }

  .section6-price-card:first-child {
      border-left: none;
  }

  .section6-category {
      font-size: 22px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
      font-family: Aboreto, sans-serif;
      font-weight: 100;
  }

  .section6-price {
      font-family: Aboreto, sans-serif;
      font-size: 36px;
      margin-bottom: 10px;
      padding-top: 10px;

  }

  .section6-payment-info {
      font-family: Darker Grotesque, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.2em;
      color: #5a5a5a;
      margin-bottom: 40px;

  }

  .section6-explore-btn {

      border: none;
      display: inline-block;
      background-color: black;
      color: white;
      padding: 12px 25px;
      font-family: Aboreto, sans-serif;
      font-size: 13px;
      text-decoration: none;
      margin-top: 15px;
      border-radius: 25px;
      text-transform: uppercase;
      width: fit-content;
  }

  .section6-explore-btn:hover {
      background-color: #333;
  }

  /* Make it responsive */
  @media (max-width: 900px) {
      .section6-price-cards {
          flex-direction: column;
      }

      .section6-price-card {
          border-left: none;
          border-top: 1px solid #e0e0e0;
          padding: 30px 0;
      }

      .section6-price-card:first-child {
          border-top: none;
      }
  }

  /* section7 */
  .section7-container {
      margin-top: 150px;
      padding: 100px 120px 130px 120px;
      background-color: #f0e7af;

  }

  .section7-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 40px;
      gap: 30px;
  }

  .section7-main-title {
      font-family: Aboreto, sans-serif;
      font-size: 48px;
      font-weight: 400;
      line-height: 1.2em;
      font-weight: normal;
      color: #4d423d;
      width: 55%;

      text-transform: uppercase;
      letter-spacing: 2px;
  }

  .section7-intro-text {
      width: 45%;
      font-family: Darker Grotesque, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.2em;
      color: #5a5a3a;
      padding-top: 20px;
  }

  .section7-tour-image-container {
      position: relative;
  }

  .section7-tours-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 40px;
  }

  .section7-tour-card {
      background-color: transparent;
      position: relative;
  }



  .section7-tour-image::before,
  .section7-tour-image::after {

      position: absolute;
      width: 20px;
      height: 20px;
      background-color: transparent;

  }

  .image-container7 {
      width: 100%;
      overflow: hidden;
      margin-bottom: 10px;
  }

  .image-container7 img.section7-tour-image:hover {
      transform: scale(1.1);
  }

  .section7-tour-image {
      width: 100%;
      height: 399px;
      object-fit: cover;
      display: block;
      position: relative;
      transition: transform 0.5s ease;

  }

  .section7-corner-decoration {
      position: absolute;
      width: 15px;
      height: 15px;
      padding: 10px;
      z-index: 2;
  }

  .section7-top-left {
      top: 10px;
      left: 10px;
      border-right: none;
      border-bottom: none;
  }

  .section7-top-right {
      top: 10px;
      right: 10px;
      border-left: none;
      border-bottom: none;
  }

  .section7-bottom-left {
      bottom: 10px;
      left: 10px;
      border-right: none;
      border-top: none;
  }

  .section7-bottom-right {
      bottom: 10px;
      right: 10px;
      border-left: none;
      border-top: none;
  }



  .section7-read-more {
      display: inline-block;
      text-decoration: none;
      border-bottom: 1px solid #afafaf80;
      letter-spacing: 1px;
      margin-top: 10px;
      color: black;
      letter-spacing: .6px;
      text-transform: uppercase;
      padding-bottom: 2px;
      font-family: Aboreto, sans-serif;
      font-size: 14px;
  }


  .section7-tour-date {
      letter-spacing: .6px;
      text-transform: uppercase;
      margin-bottom: 10px;
      font-family: Aboreto, sans-serif;
      font-size: 14px;
      color: #4d423d;
      ;
  }

  .section7-tour-title {
      color: black;
      margin-top: 10px;
      margin-bottom: 10px;
      font-family: Aboreto, sans-serif;
      font-size: 20px;
      font-weight: 400;
      display: inline-block;
      line-height: 1.2em;
  }

  .section7-tour-description {
      letter-spacing: .4px;
      margin-top: 10px;
      margin-bottom: 10px;
      font-family: Darker Grotesque, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.2em;
      color: #535353;

  }

  /* section8 */
  .section8-testimonial-slider {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      inset: 0%;

  }

  .section8-testimonial-slider video {
      background-image: url(&quot;https://cdn.prod.website-files.com/67bafeaa5944e1c1e6decf3d%2F67be34d823a3f9f21c6904bc_7469515-hd_1920_1080_24fps-poster-00001.jpg&quot;);
      width:100%;
  }


  .w-background-video1 {
      color: #fff;
      height: 100%;
      width: 100%;
      position: relative;
      overflow: hidden;
      inset: 0%;
  }


  .section8-slider-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('/api/placeholder/1920/1080');
      background-size: cover;
      background-position: center;
      z-index: 1;
      inset: 0%;
  }

  .section8-testimonial-card {
      position: absolute;
      top: 50%;
      right: 50px;
      transform: translateY(-50%);
      width: 45%;
      max-width: 1000px;
      z-index: 10;
      display: flex;
  }

  .section8-testimonial-content {
      background-color: white;
      padding: 10px 100px 30px 30px;
      flex-grow: 1;
  }

  .section8-testimonial-quote {
      font-size: 24px;
      line-height: 1.1;
      color: #535353;
      margin-bottom: 25px;
      font-weight: 500;
      font-family: Darker Grotesque, sans-serif;
  }

  .section8-testimonial-user {
      display: flex;
      align-items: center;
  }

  .section8-user-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
  }

  .section8-user-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .section8-user-info h3 {
      font-family: Darker Grotesque, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1em;
      color: #333;
      letter-spacing: 1px;
      padding-bottom: 10px;
      margin: 0;
  }

  .section8-user-info p {
      font-size: 18px;
      font-family: Darker Grotesque, sans-serif;
      font-weight: 500;
      line-height: 1em;
      color: #5b5b5b;
      margin: 0;

  }

  .section8-navigation-controls {
      width: 220px;
      background-color: #f0e7af;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 30px 0;
  }

  .section8-nav-arrow {
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #333;
      transition: background-color 0.3s;
  }



  .section8-nav-arrow svg {
      width: 20px;
      height: 20px;
  }

  .section8-testimonial-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      z-index: 1;
  }

  .section8-testimonial-slide.active {
      opacity: 1;
      z-index: 2;
  }

  @media (max-width: 768px) {
      .section8-testimonial-card {
          width: 90%;
          right: 5%;
      }
  }

  /* Footer styles */
  /* Footer styles */
  footer {
      background-color: #000;
      background-image: linear-gradient(#0000, #4d423d4d), url('https://cdn.prod.website-files.com/67bafeaa5944e1c1e6decf3d/67bdf3b05e2cf438f71e4b14_BG-02.svg');
      background-position: 0 0, 0 0;
      background-repeat: repeat, repeat;
      background-size: auto, 400px;
      align-items: flex-start;
      padding-top: 60px;
      padding-bottom: 60px;
      font-size: 20px;
      font-weight: 100;
      line-height: 1em;
  }

  .footer-logo img {
      width: 185px;
      height: 39px;
  }

  .footer-container {

      color: #cdcdcd;
      padding: 100px 120px 10px 120px;
  }

  .footer-content {
      display: flex;
      flex-direction: column;
      padding: 0 20px;
  }

  .footer-main {
      display: flex;
      flex-direction: row;
      border-bottom: 1px solid #686868;
      padding: 60px 0;
      gap: 80px;
  }

  .footer-map {
      width: 50%;

  }

  .footer-map img {
      width: 100%;
      height: 350px;
      border: 1px solid #333;
  }

  .footer-info {
      width: 50%;
      display: flex;
      flex-direction: column;
  }

  .footer-section {
      margin-bottom: 10px;
  }




  .footer-section-title {

      color: #f0e7af;
      font-weight: normal;
      letter-spacing: 1px;
      margin-bottom: 15px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      /*  */
      font-family: Aboreto, sans-serif;
      font-size: 28px;
      line-height: 1.2em;

  }

  .footer-section img {
      border: 1px solid rgb(129, 128, 128);
      border-radius: 100px;
      flex: none;
      justify-content: center;
      align-items: center;
      padding: 10px;
      display: flex;
  }

  .footer-section-title img.arrow-medium {
      width: 11px;
      height: 10px;
      margin-right: 35px;
  }

  .footer-section-content {
      color: white;
      font-weight: 500;
      font-family: Darker Grotesque, sans-serif;
      font-size: 19px;
      line-height: 1.2;
      letter-spacing: .4px;
      margin-left: 70px;

  }

  .footer-navigation {
      display: flex;
      /* justify-content: space-between; */

      padding-bottom: 50px;
      border-bottom: 1px solid #646464;
      align-items: start;
  }

  .footer-navigation1 {
      width: 50%;
      display: flex;
      justify-content: flex-start;
      align-items: start;

  }

  .footer-navigation1 p {
      margin: 2px 0 0 50px;
      letter-spacing: .4px;
      font-family: Darker Grotesque, sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.2em;
      color: white;
      max-width: 300px;
  }

  .footer-navigation2 {
      display: flex;
      justify-content: flex-end;
      width: 50%;
      grid-column-gap: 55px;
      grid-row-gap: 80px;

  }

  .line {
      border: 0.1px solid #4c4c4c80;
      height: 0.1px;
  }


  .footer-nav-group {
      display: flex;
      flex-direction: column;
      grid-column-gap: 15px;
      grid-row-gap: 15px;

  }

  .footer-nav-item {
      margin-right: 20px;
      text-decoration: none;
      color: #f0e7af;
      font-family: Darker Grotesque, sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 1em;
  }

  .footer-nav-item:hover {
      color: #c9a84b;
  }

  .footer-social {
      display: flex;
  }

  .footer-social-icon {
      margin-left: 15px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f0e7af;
      text-decoration: none;
      border: 1px solid #f0e7af;
      width: 30px;
      height: 30px;
      font-size: 14px;
      font-family: "Fa Brands 400 (6.4.2)", sans-serif;

  }

  .footer-social-icon:hover {
      background-color: #c9a84b;
  }

  .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 35px;
      padding-bottom: 45px;
      font-size: 12px;
      color: #666;
  }

  .footer-copyright {

      grid-column-gap: 5px;
      grid-row-gap: 0px;
      color: #ffffffb3;
      text-align: center;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      font-weight: 500;
      line-height: 1.2em;
      display: flex;
      font-family: Darker Grotesque, sans-serif;
  }

  .footer-credits {
      grid-column-gap: 5px;
      grid-row-gap: 0px;
      color: #ffffffb3;
      font-size: 18px;
      font-weight: 500;
      line-height: 1.2em;
      display: flex;
      font-family: Darker Grotesque, sans-serif;
  }

  @media (max-width: 768px) {
      .footer-main {
          flex-direction: column;
      }

      .footer-map {
          margin-right: 0;
          margin-bottom: 0px;
      }

      .footer-navigation {
          flex-direction: column;
      }

      .footer-nav-group {
          margin-bottom: 15px;
      }

      .footer-bottom {
          flex-direction: column;
          align-items: flex-start;
      }

      .footer-logo {
          margin-bottom: 10px;
      }

      .footer-copyright {
          margin-bottom: 10px;
      }
    }
      /* about page */
      .about-sections{
        padding-bottom: 120px;
      }
    .about-section1-background-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 50%;
      padding-top: 150px;
      padding-left: 30px;
      background-image: url('../images/about-background.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: -1;
      overflow-x: hidden;
  }

  /* Overlay gradient that fades out at bottom */
  .about-section1-background-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom,
              rgba(2, 2, 5, 0.6) 0%,
              rgba(2, 2, 4, 0.6) 70%,
              rgba(0, 0, 0, 0) 100%);
      z-index: -1;
      overflow: hidden;
  }


  /* Add your background image to this class */
  .about-section1-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      z-index: -2;
      overflow: hidden;
  }
   /* Main content */
  .about-section1-main-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: calc(60vh - 0px);
      padding: 0 100px;
      color: #f0e7af;

  }

  .about-section1-title {
      font-size: 72px;
      line-height: 1.2;
      font-weight: 100;
      text-transform: uppercase;
      font-family: "Aboreto", sans-serif;
      margin: 0 123px;
      color: white;
  }


  .about-section1-subtitle {
      font-size: 21px;
      line-height: 1.1;
      max-width: 45%;
      font-family: "Darker Grotesque", sans-serif;
      font-weight: 500;
      color: white;
      margin-top:2px ;
  }
  /* section2 */

  .about-section7-container {
      margin-top: 0px;
      padding: 100px 120px 20px 120px;
     

  }

  .about-section7-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 40px;
      gap: 120px;
  }

  .about-section7-main-title {
      font-family: Aboreto, sans-serif;
      font-size: 48px;
      font-weight: 400;
      line-height: 1.2em;
      font-weight: normal;
      color: #4d423d;
      width: 55%;
      text-transform: uppercase;
      letter-spacing: -2px;
  }

  .about-section7-intro-text {
      width: 45%;
      font-family: Darker Grotesque, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.2em;
      color: #5a5a3a;
      padding-top: 20px;
  }

  .about-section2-container {
            width: 100%;
            height: 100vh;
            background: url('../images/67bfaa402fdc8afe7b7abf9e_peter-oswald-GWvMtSiYHWI-unsplash (1).jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            align-items: flex-end;
            font-family: 'Georgia', serif;
        }

        .about-section2-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.7) 100%
            );
        }

        .about-section2-flower-left {
            position: absolute;
            top: 10px;
            left:-40px;
            width: 80px;
            height: 80px;
           
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.8;
            z-index: 2;
        }

        .about-section2-flower-right {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 80px;
            height: 80px;
           
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.8;
            z-index: 2;
        }

        .about-section2-content-wrapper {
            display: flex;
            width: 100%;
            z-index: 3;
            position: relative;
            padding: 0 20px 10px 20px;
        }

        .about-section2-panel {
            flex: 1;
            padding: 0 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .about-section2-panel:hover {
            transform: translateY(-10px);
        }

        .about-section2-title {
            color: #ffffff;
            font-size: 1.4rem;
            font-weight: 100;
            text-transform: uppercase;
            margin-bottom: 15px;
            line-height: 1.2;
            font-family: "Aboreto", sans-serif;
            font-weight: 400;
            
        }

        .about-section2-description {
            color: #e8e8e8;
            font-size: 20px;
            line-height: 1.1;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
            font-weight: 500;
             font-family: "Darker Grotesque", sans-serif;
        }

    

        .about-section2-legends {
            text-align: left;
        }

        .about-section2-events {
            text-align: left;
        }

        .about-section2-tours {
            text-align: left;
        }

        .about-section2-events .about-section2-description {
            margin: 0 auto;
        }

        .about-section2-tours .about-section2-description {
            margin-left: auto;
        }

        .about-section2-tours .about-section2-accent {
            margin-left: auto;
        }

        .about-section2-events .about-section2-accent {
            margin: 0 auto 20px auto;
        }

        @media (max-width: 768px) {
            .about-section2-content-wrapper {
                flex-direction: column;
                padding: 0 15px 30px 15px;
            }

            .about-section2-panel {
                padding: 20px 0;
                text-align: left !important;
            }

            .about-section2-description {
                max-width: none;
                margin: 0 !important;
            }

            .about-section2-accent {
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .about-section2-flower-left,
            .about-section2-flower-right {
                width: 50px;
                height: 50px;
                top: 30px;
            }

         

        }

        @media (max-width: 480px) {
            .about-section2-title {
                font-size: 1rem;
            }

            .about-section2-description {
                font-size: 0.8rem;
            }

            .about-section2-content-wrapper {
                padding: 0 10px 20px 10px;
            }

            .about-section2-flower-left,
            .about-section2-flower-right {
                width: 40px;
                height: 40px;
                top: 20px;
            }

            .about-section2-flower-left {
                left: 15px;
            }

            .about-section2-flower-right {
                right: 15px;
            }
            
            
        }
        /* section4 */
         .about-section4-gallery-container {
            padding-top: 120px;
            display: flex;
            gap: 20px;
            height: 80vh;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-section4-gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
            width: 20%;
        }

        .about-section4-gallery-item:first-child {
            width: 40%;
            padding-left: 50px;
        }

        .about-section4-gallery-item:hover {
            /* transform: translateY(-5px); */
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
             width: 40%;
        }

        .about-section4-gallery-item:hover ~ .about-section4-gallery-item {
             width: 20%;
        }

        .about-section4-gallery-item:hover .about-section4-gallery-description {
            max-height: 200px;
           
            margin-top: 10px;
        }

        .about-section4-gallery-item:hover .about-section4-gallery-title {
            width: 150px;
            margin-bottom: 15px;
        }

        .about-section4-gallery-item:first-child .about-section4-gallery-description {
            max-height: 200px;
           
            margin-top: 10px;
        }

        .about-section4-gallery-item:first-child .about-section4-gallery-title {
        width: 150px;
        margin-left:0px;
            margin-bottom: 15px;
        }

        .about-section4-gallery-container:hover .about-section4-gallery-item:first-child:not(:hover) {
            flex: 20%;
        }

        .about-section4-gallery-container:hover .about-section4-gallery-item:first-child:not(:hover) .about-section4-gallery-description {
            max-height: 0;
          
            margin-top: 0;
        }

        .about-section4-gallery-container:hover .about-section4-gallery-item:first-child:not(:hover) .about-section4-gallery-title {
            margin-bottom: 8px;
        }

        .about-section4-gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, 
                rgba(0,0,0,0.1) 0%, 
                rgba(0,0,0,0.3) 60%, 
                rgba(0,0,0,0.8) 100%);
            z-index: 2;
            transition: opacity 0.3s ease;
        }

        .about-section4-gallery-item:hover::before {
            opacity: 0.5;
        }

        .about-section4-gallery-item:first-child::before {
            opacity: 0.5;
        }

        .about-section4-gallery-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-section4-gallery-item:hover .about-section4-gallery-bg {
            transform: scale(1.05);
        }

        .about-section4-gallery-content {
            position: absolute;
            bottom: 350px;
            left: 30px;
            right: 30px;
            z-index: 3;
            color: white;
            transform: translateY(0);
            transition: all 0.5s ease;
        }

        .about-section4-gallery-title {
            font-size: 25px;
            margin-bottom: 8px;
            font-family: "Aboreto", sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            line-height: 1.2;
            transition: font-size 0.3s ease;
        }


        .about-section4-arrow-button {
            position: absolute;
            bottom: 30px;
            right: 20px;
            width: 40px;
            height: 40px;
            border: 1px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 4;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .about-section4-arrow-button::before {
            content: '→';
            color: white;
            font-size: 12px;
            font-weight: 900;
            transform: rotate(45deg);
            transition: transform 0.3s ease;
        }

        .about-section4-gallery-item:hover .about-section4-arrow-button {
            background: transparent;
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }

        .about-section4-gallery-item:hover .about-section4-arrow-button::before {
            transform: rotate(45deg);
        }

        /* Specific background images for each item */
        .about-section4-medieval-festival {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7)), 
                        url('../images/army.jpg') center/cover;
        }

        .about-section4-haunted-night {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), 
                        url('../images/dinning-table.jpg') center/cover;
        }

        .about-section4-royal-banquet {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7)), 
                        url('../images/palace-dinning.jpg') center/cover;
        }

        .about-section4-mysteries-myths {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), 
                        url('../images/guestroom.jpg') center/cover;
        }

        @media (max-width: 768px) {
            .about-section4-gallery-container {
                flex-direction: column;
                height: auto;
                gap: 15px;
            }
            
            .about-section4-gallery-item {
                height: 200px;
                flex: none !important;
            }
            
            .about-section4-gallery-item:hover,
            .about-section4-gallery-item:first-child {
                height: 400px;
            }
            
            .about-section4-gallery-content {
                bottom: 20px;
                left: 20px;
                right: 20px;
            }
            
            .about-section4-gallery-title {
                font-size: 1.4rem;
            }
        }
        /*section5  */
     .about-section5-container {
      padding: 120px;
    }

    .about-section5-testimonial-box {
      display: flex;
      gap: 55px;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .about-section5-highlight {
      background-color: #f0e7af;
      padding:0 20px 30px 20px;
      font-size: 20px;
      color: #555;
      max-width: 250px;
      position: relative;
      font-family: "Darker Grotesque", sans-serif;
      height: 170px;
      display: flex;
     align-items: flex-end;
     width: 30%;
    }

    .about-section5-highlight::before {
      content: "“";
      font-size: 120px;
      color: #000;
      margin-right: 10px;
      position: absolute;
      top: 30px;
      left: 20px;
      
    }

    .about-section5-right-content {
      width: 70%;
      /* max-width: 300px; */
    }

    .about-section5-quote {
      font-size: 26px;
      line-height: 1.2em;
      color: #555;
      margin-bottom: 10px;
      font-family: "Darker Grotesque", sans-serif;
      margin-top: 0px;
      
    }

    .about-section5-author {
      font-weight: 400;
      font-size: 28px;
      color: #333;
     font-family: "Aboreto", sans-serif;
     margin-top: 70px;
    }

    .about-section5-country {
      font-size: 18px;
      color: #999;
      font-family: "Darker Grotesque", sans-serif;
    }

    .about-section5-carousel-wrapper {
      position: relative;
    }

    .about-section5-carousel {
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 20px;
    }

    .about-section5-image-box {
      position: relative;
      min-width: 500px;
      border-radius: 10px;
      overflow: hidden;
    }

    .about-section5-image-box img {
      width: 100%;
      display: block;
      border-radius: 10px;
    }

    .about-section5-text-image {
      max-width: 320px;
      background: url('../images/step-through.jpg') no-repeat center/cover;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      color: white;
      text-align: center;
      max-height: 673px;
      position: relative;
     
 
}
.about-section5-down{
    display: flex;
    gap: 30px;
}
    

    .about-section5-text-overlay {
      font-family: "Darker Grotesque", sans-serif;
      padding: 0px;
      border-radius: 5px;
      font-size: 28px;
      width: 80%;
      line-height: 1.1em;
      text-align: left;
      font-weight: 500;
    }

    .about-section5-nav {
      position: absolute;
      top: -70px;
      right: 0;
      display: flex;
      gap: 10px;
    }

    .about-section5-nav button {
      background: white;
      border: 1px solid black;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      cursor: pointer;
      font-size: 25px;
      font-weight: 600;
    }

    .about-section5-flower-border {
      position: absolute;
      width: 30px;
      height: 30px;
      background: url('flower.png') no-repeat center/cover;
    }

    .about-section5-flower-top-left { top: 3px; left: 3px; }
    .about-section5-flower-top-right { top: 3px; right: 3px; }
    .about-section5-flower-bottom-left { bottom: 3px; left:  3px; }
    .about-section5-flower-bottom-right { bottom:  3px; right:  3px; }
    /* section6 */
    .about-section6-container {
      display: flex;
      width: 100%;
    }

    .about-section6-side-image {
      width: 25%;
      background-size: cover;
      background-position: center;
    }

    .about-section6-left-image {
      background-image: url('../images/67bf40bda62a72d4ef4ec040_birmingham-museums-trust-zaAvk8K5Eno-unsplash.jpg'); /* Replace with actual path */
    }

    .about-section6-right-image {
      background-image: url('../images/67be274a101d5ff58a3c9c0a_jessica-kantak-bailey-55d8tpuIEbw-unsplash.jpg'); /* Replace with actual path */
    }

    .about-section6-faq {
      width: 50%;
      padding: 80px 40px;
      background-color: #000;
      text-align: center;
    }

    .about-section6-faq h1 {
      font-size: 48px;
      margin-bottom: 50px;
        color: white;
        font-weight: 100;
         font-family: "Aboreto", sans-serif;
    }

    .about-section6-question {
      border-top: 1px solid rgb(255, 255, 255);
      padding: 40px 0;
      text-align: left;
      position: relative;
      cursor: pointer;
   
    }
    .about-section6-question.active{
      border-top: 1px solid rgb(172, 172, 172);
       color: #bfae75;
       
    }
      .about-section6-question-title:hover{
         color: #bfae75;
      }
    
    .about-section6-question:first-of-type{
      border-top: 0px solid rgb(0, 0, 0);
      padding: 20px 0 40px 0;
    }

    .about-section6-question:last-child {
      border-bottom: 1px solid rgb(255, 255, 255);
    }

    .about-section6-question-title {
     font-size: 24px;
    font-weight: 400;
    line-height: 1.2em;
    width: 88%;
    color:white;
     font-family: "Aboreto", sans-serif;
    }

    .about-section6-answer {
      display: none;
      font-size: 18px;
      margin-top: 10px;
      color: #ccc;
       font-family: "Darker Grotesque", sans-serif;
       line-height: 1.1em;
       font-weight: 700;
    }

    .about-section6-question.active .about-section6-answer {
      display: block;
      
    }

    .about-section6-toggle-icon {
      position: absolute;
      right: 10px;
      top: 40px;
      font-size: 18px;
      color: #bfae75;
      transition: transform 0.3s;
       width: 4px;
      height: 4px;
      border: 3px solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
      
      /*  */
 

 
    }
    .small-icon{
      border: 1px solid white;
      border-radius: 50%;
      width: 50px;
      height: 50px;
    }

    .about-section6-question.active .about-section6-toggle-icon {
      transform: rotate(225deg);
      color: #bfae75;
    }

