/*Footer mobile view logo css*/
    @media (max-width: 768px) {
      .footer-logo-img {
        width: 48px !important;
        height: 48px !important;
      }
    }
    /*ENd*/
  .contact-list .inner .list-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: -6px;
  }
  .contact-list .inner .list-info i {
    margin-top: 4px;
    flex-shrink: 0;
  }
  .contact-list .inner .list-info a {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* About section scroll */
  .about-scroll-content {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 12px;
    margin-bottom: 30px;
  }
  .about-scroll-content::-webkit-scrollbar { width: 5px; }
  .about-scroll-content::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
  .about-scroll-content::-webkit-scrollbar-thumb { background: #a0845c; border-radius: 10px; }
  .about-scroll-content::-webkit-scrollbar-thumb:hover { background: #8a6e4a; }
  .about-scroll-content p { margin-bottom: 14px; line-height: 1.7; font-size: 15px; color: #555; }

  /* Preloader logo */
  .preloader-heading .preloader-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    animation: logoPulse 1.0s ease-in-out infinite;
    filter: drop-shadow(0 0 18px rgba(181, 136, 74, 0.45));
  }

  /* WhatsApp icon */
  .whatsapp-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 25px;
    background-color: #f8f7f7;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0px 0px 6px #999;
    z-index: 1000;
  }

  /* Main header ke neeche extra space — logo ka jo hissa bahar nikla hai uska */
  .main-header.header-style-one {
    margin-bottom: 55px; /* logo ki half height jitna space */
  }

  /* =============================================
     MAIN HEADER (gd-header) — NOT FIXED
     Shows on page load, scrolls away naturally
  ============================================= */
  .gd-header {
    position: relative;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: #f6efe5;
    padding: 0;
    box-shadow: 0 1px 12px rgba(0,0,0,0.07);
    overflow: visible; /* logo ko bahar nikalne do */
  }

  .gd-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 88px;
    position: relative;
    overflow: visible;
  }

  .gd-nav--left,
  .gd-nav--right {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
  }

  .gd-nav--right {
    justify-content: flex-end;
  }

  .gd-nav--left a,
  .gd-nav--right a {
    font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #4f6d51;
    text-decoration: none;
    padding: 10px 18px;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
  }

  .gd-nav--left a::after,
  .gd-nav--right a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: #b5884a;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
  }

  .gd-nav--left a:hover,
  .gd-nav--right a:hover { color: #2e4a30; }

  .gd-nav--left a:hover::after,
  .gd-nav--right a:hover::after { transform: scaleX(1); }

  /* Dropdown wrapper — flex so it sits inline with nav links */
  .gd-nav--left .gd-dropdown,
  .gd-nav--right .gd-dropdown,
  .gd-sn-left .gd-dropdown,
  .gd-sn-right .gd-dropdown {
    position: relative;
    display: flex;
    align-items: center;
  }

  /* Dropdown trigger link — same style as other nav links */
  .gd-nav--left .gd-dropdown > a,
  .gd-nav--right .gd-dropdown > a {
    font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #4f6d51;
    text-decoration: none;
    padding: 10px 18px;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
  }

  .gd-nav--left .gd-dropdown > a:hover,
  .gd-nav--right .gd-dropdown > a:hover { color: #2e4a30; }

  /* Sticky header dropdown trigger */
  .gd-sn-left .gd-dropdown > a,
  .gd-sn-right .gd-dropdown > a {
    font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #4f6d51;
    text-decoration: none;
    padding: 8px 16px;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
  }

  .gd-sn-left .gd-dropdown > a:hover,
  .gd-sn-right .gd-dropdown > a:hover { color: #2e4a30; }

  /* Dropdown UL — shared for both headers */
  .gd-nav--left .gd-dropdown ul,
  .gd-nav--right .gd-dropdown ul,
  .gd-sn-left .gd-dropdown ul,
  .gd-sn-right .gd-dropdown ul {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #f6efe5;
    border-top: 2px solid #b5884a;
    min-width: 190px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    border-radius: 0 0 8px 8px;
    z-index: 99999; /* above sticky header */
  }

  .gd-nav--left .gd-dropdown:hover ul,
  .gd-nav--right .gd-dropdown:hover ul,
  .gd-sn-left .gd-dropdown:hover ul,
  .gd-sn-right .gd-dropdown:hover ul { display: block; }

  /* Dropdown items */
  .gd-nav--left .gd-dropdown ul li a,
  .gd-nav--right .gd-dropdown ul li a,
  .gd-sn-left .gd-dropdown ul li a,
  .gd-sn-right .gd-dropdown ul li a {
    display: block;
    padding: 10px 22px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #4f6d51;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }

  .gd-nav--left .gd-dropdown ul li a:hover,
  .gd-nav--right .gd-dropdown ul li a:hover,
  .gd-sn-left .gd-dropdown ul li a:hover,
  .gd-sn-right .gd-dropdown ul li a:hover {
    color: #2e4a30;
    background: rgba(79,109,81,0.06);
  }

  .gd-nav--left .gd-dropdown ul li a::after,
  .gd-nav--right .gd-dropdown ul li a::after,
  .gd-sn-left .gd-dropdown ul li a::after,
  .gd-sn-right .gd-dropdown ul li a::after { display: none; }

  /* Center logo — half inside strip, half outside (floating effect) */
  .gd-header__logo {
    flex-shrink: 0;
    margin: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 35px;
    z-index: 1001;
  }

  .gd-header__logo a {
    display: block;
    line-height: 0;
    background: #f6efe5;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(181,136,74,0.30);
  }

  .gd-header__logo img {
    height: 115px;
    width: 115px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0 2px 8px rgba(181,136,74,0.20));
  }

  /* Book Now button */
  .gd-header__book {
    margin-left: 20px;
    flex-shrink: 0;
  }

  .gd-header__book a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #b5884a;
    color: #fff !important;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    padding: 10px 22px !important;
    border-radius: 30px;
    border: 1.5px solid #b5884a;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease !important;
    text-decoration: none;
    white-space: nowrap;
  }

  .gd-header__book a:hover {
    background: transparent !important;
    color: #b5884a !important;
    transform: translateY(-1px) !important;
  }

  .gd-header__book a::after { display: none !important; }

  /* Gold dividers */
  .gd-nav--left::after {
    content: '';
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(181,136,74,0.35);
    margin-left: 8px;
    flex-shrink: 0;
  }

  .gd-nav--right::before {
    content: '';
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(181,136,74,0.35);
    margin-right: 8px;
    flex-shrink: 0;
  }

  /* Mobile toggle for main header */
  .gd-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #4f6d51;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
  }

  /* =============================================
     STICKY HEADER (gd-sticky-new)
     Hidden by default — shows after 88px scroll
  ============================================= */
  .gd-sticky-new {
    display: none; /* HIDDEN by default */
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 9998;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
    padding: 0;
    overflow: visible; /* dropdown ul ko clip mat karo */
  }

  .gd-sticky-new.visible {
    display: block;
  }

  /* Sticky header inner */
  .gd-sn-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    height: 76px;
    overflow: visible;
  }

  .gd-sn-left,
  .gd-sn-right {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 4px;
    overflow: visible;
  }

  .gd-sn-right { justify-content: flex-end; }

  .gd-sn-left a,
  .gd-sn-right a {
    font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #4f6d51;
    text-decoration: none;
    padding: 8px 16px;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
  }

  .gd-sn-left a::after,
  .gd-sn-right a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 16px; right: 16px;
    height: 1.5px;
    background: #b5884a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .gd-sn-left a:hover,
  .gd-sn-right a:hover { color: #2e4a30; }

  .gd-sn-left a:hover::after,
  .gd-sn-right a:hover::after { transform: scaleX(1); }

  /* Gold dividers */
  .gd-sn-left::after {
    content: '';
    display: block;
    width: 1px;
    height: 26px;
    background: rgba(181,136,74,0.35);
    flex-shrink: 0;
    margin: 0 6px;
  }

  .gd-sn-right::before {
    content: '';
    display: block;
    width: 1px;
    height: 26px;
    background: rgba(181,136,74,0.35);
    flex-shrink: 0;
    margin: 0 6px;
  }

  /* Sticky logo — same half-out effect */
  .gd-sn-logo {
    flex-shrink: 0;
    margin: 0 10px;
    position: relative;
    top: 30px; /* aadha bahar — sticky height 76px, logo 80px, so ~half */
    z-index: 10000;
  }
  .gd-sn-logo a {
    display: block;
    line-height: 0;
    background: #ffffff;
    border-radius: 50%;
    padding: 5px; 
    box-shadow: 0 4px 16px rgba(181,136,74,0.28);
  }
  .gd-sn-logo img { height: 100px; width: 100px; object-fit: contain; border-radius: 50%; }

  /* Sticky Book Now */
  .gd-sn-book { margin-left: 16px; flex-shrink: 0; }

  .gd-sn-book a {
    display: inline-block;
    background: #b5884a;
    color: #fff;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 30px;
    border: 1.5px solid #b5884a;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    white-space: nowrap;
  }

  .gd-sn-book a:hover {
    background: transparent;
    color: #b5884a;
    transform: translateY(-1px);
  }

  /* Sticky mobile toggle */
  .gd-sn-toggle {
    display: none;
    background: none;
    border: none;
    color: #4f6d51;
    font-size: 26px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
  }

  /* =============================================
     SHARED MOBILE OVERLAY MENU
  ============================================= */
  .gd-mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: #f6efe5;
    z-index: 99999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .gd-mob-overlay.open { display: flex; }

  .gd-mob-overlay .mob-close-btn {
    position: absolute;
    top: 20px; right: 24px;
    font-size: 36px;
    color: #4f6d51;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
  }

  .gd-mob-overlay .mob-logo { margin-bottom: 28px; }

  .gd-mob-overlay .mob-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
  }

  .gd-mob-overlay a {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4f6d51;
    text-decoration: none;
    padding: 14px 48px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(181,136,74,0.2);
    transition: color 0.2s, background 0.2s;
  }

  .gd-mob-overlay a:hover {
    color: #2e4a30;
    background: rgba(79,109,81,0.06);
  }

  .gd-mob-overlay .mob-book-btn {
    margin-top: 20px;
    background: #b5884a;
    color: #fff !important;
    border-radius: 30px;
    border-bottom: none !important;
  }

  /* Mobile Facilities dropdown */
  .mob-dropdown { width: 100%; text-align: center; }

  .mob-dropdown > a {
    display: block;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4f6d51;
    text-decoration: none;
    padding: 14px 48px;
    border-bottom: 1px solid rgba(181,136,74,0.2);
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
  }

  .mob-dropdown > a:hover { color: #2e4a30; background: rgba(79,109,81,0.06); }

  .mob-sub { display: none; background: rgba(181,136,74,0.07); width: 100%; }
  .mob-sub.open { display: block; }

  .mob-sub a {
    display: block;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #6b5535;
    text-decoration: none;
    padding: 11px 48px;
    border-bottom: 1px solid rgba(181,136,74,0.12);
    transition: color 0.2s, background 0.2s;
  }

  .mob-sub a:hover { color: #2e4a30; background: rgba(79,109,81,0.06); }

  /* =============================================
     RESPONSIVE BREAKPOINTS
  ============================================= */
  @media (max-width: 900px) {
    /* Hide desktop nav in main header */
    .gd-nav--left,
    .gd-nav--right,
    .gd-nav--left::after,
    .gd-nav--right::before,
    .gd-header__book { display: none; }

    .gd-mobile-toggle { display: block; }

    .gd-header__inner { justify-content: space-between; }

    /* Mobile — logo pehle jaisa, no half-out effect */
    .gd-header__logo {
      top: 0;
      margin: 0 12px;
    }
    .gd-header__logo a {
      background: transparent;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
    }
    .gd-header__logo img {
      height: 60px;
      width: 60px;
      border-radius: 0;
      filter: none;
    }

    /* Hide desktop nav in sticky header */
    .gd-sn-left,
    .gd-sn-right,
    .gd-sn-left::after,
    .gd-sn-right::before,
    .gd-sn-book { display: none; }

    .gd-sn-toggle { display: block; }
    .gd-sn-inner { justify-content: space-between; }

    /* Mobile sticky logo — bhi normal */
    .gd-sn-logo { top: 0; }
    .gd-sn-logo a { background: transparent; box-shadow: none; padding: 0; }
    .gd-sn-logo img { height: 48px; width: 48px; border-radius: 0; }

    .main-header.header-style-one { margin-bottom: 0; }
  }