* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      width: 100%;
      overflow-x: hidden;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background: #0d1b2a;
    }

    a {
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    :root {
      --primary: #0d3b66;
      --secondary: #0d5c91;
      --accent: #009245;
      --accent-dark: #007a39;
      --white: #ffffff;
      --light: rgba(255, 255, 255, 0.85);
      --overlay: rgba(7, 20, 35, 0.45);
      --shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
      --radius: 14px;
      --transition: all 0.35s ease;
    }

    /* =========================
       HERO WRAPPER
    ========================= */
    .hero-section {
      position: relative;
      width: 100%;
      min-height: 100vh;
      overflow: hidden;
      background: #111;
    }

    /* =========================
       HEADER
    ========================= */
    .site-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 18px 0;
      transition: 0.3s ease;
      background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.05)); border-bottom: solid #ccc 1px;
    }

    .header-container {
      width: 92%;
      max-width: 1400px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
    }

    .logo {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
    }

    .logo img {
      width: 200px;
      max-width: 100%;
      height: auto;
      filter: brightness(0) invert(1);
    }

    /* Center Menu */
    .main-nav {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .main-nav ul {
      display: flex;
      align-items: center;
      gap: 34px;
    }

    .main-nav ul li a {
      color: var(--white);
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.4px;
      position: relative;
      transition: var(--transition);
    }

    .main-nav ul li a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: var(--transition);
    }

    .main-nav ul li a:hover {
      color: #dfffe8;
    }

    .main-nav ul li a:hover::after {
      width: 100%;
    }

    /* Right Header Area */
    .header-right {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .phone-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
    }

    .phone-label {
      font-size: 12px;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .phone-link {
      color: var(--white);
      font-size: 18px;
      font-weight: 700;
      transition: var(--transition);
    }

    .phone-link:hover {
      color: #c6ffd7;
    }

    /* Book Button */
    .book-btn {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 160px;
      padding: 15px 28px;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: var(--white);
      font-size: 15px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: 0;
      transition: var(--transition);
      box-shadow: var(--shadow);
    }

    .book-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 120%;
      height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255,255,255,0.0) 0%,
        rgba(255,255,255,0.28) 50%,
        rgba(255,255,255,0.0) 100%
      );
      transition: 0.55s ease;
    }

    .book-btn:hover::before {
      left: 100%;
    }

    .book-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(0, 146, 69, 0.35);
    }

    /* Mobile Menu Button */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 28px;
      height: 3px;
      background: #fff;
      border-radius: 10px;
      transition: 0.3s ease;
    }

    /* =========================
       SLIDER
    ========================= */
    .slider {
      position: relative;
      width: 100%;
      min-height: 100vh;
    }

    .slides {
      position: relative;
      width: 100%;
      min-height: 100vh;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transform: scale(1.08);
      transition: opacity 1s ease, transform 6s ease;
    }

    .slide.active {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
      z-index: 2;
    }

    .slide img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      display: block;
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(7, 20, 35, 0.45) 0%,
        rgba(7, 20, 35, 0.25) 35%,
        rgba(7, 20, 35, 0.50) 100%
      );
      z-index: 1;
    }

    /* Hero Content */
    .hero-content {
      position: absolute;
      left: 50%;
      bottom: 12%;
      transform: translateX(-50%);
      width: 92%;
      max-width: 1200px;
      text-align: center;
      z-index: 5;
      color: #fff;
    }

    .hero-subtitle {
      display: inline-block;
      padding: 10px 18px;
      margin-bottom: 18px;
      border: 1px solid rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(10px);
      color: #eaf6ff;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      border-radius: 40px;
    }

    .hero-title {
      font-size: 68px;
      line-height: 1.1;
      font-weight: 300;
      margin-bottom: 18px;
      text-shadow: 0 10px 30px rgba(0,0,0,0.45);
      font-family: Georgia, "Times New Roman", serif;
    }

    .hero-desc {
      max-width: 760px;
      margin: auto;
      font-size: 18px;
      line-height: 1.8;
      color: rgba(255,255,255,0.92);
    }

    /* Slider Controls */
    .slider-controls {
      position: absolute;
      left: 50%;
      bottom: 5%;
      transform: translateX(-50%);
      z-index: 20;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .slider-btn {
      width: 56px;
      height: 56px;
      border: 1px solid rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.08);
      color: #fff;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      transition: var(--transition);
      backdrop-filter: blur(8px);
    }

    .slider-btn:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(-3px);
    }

    .slider-count {
      color: #fff;
      font-size: 15px;
      letter-spacing: 2px;
      font-weight: 600;
      min-width: 72px;
      text-align: center;
    }

    /* Dots */
    .slider-dots {
      position: absolute;
      right: 50px;
      bottom: 60px;
      z-index: 20;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      border: 2px solid transparent;
      cursor: pointer;
      transition: var(--transition);
    }

    .dot.active {
      background: var(--accent);
      border-color: #fff;
      transform: scale(1.15);
    }

    /* =========================
       MOBILE NAV
    ========================= */
    @media (max-width: 1100px) {
      .main-nav ul {
        gap: 24px;
      }

      .main-nav ul li a {
        font-size: 15px;
      }

      .hero-title {
        font-size: 56px;
      }
    }

    @media (max-width: 991px) {
      .site-header {
        padding: 14px 0;
      }

      .header-container {
        flex-wrap: wrap;
        gap: 16px;
      }

      .logo img {
        width: 180px;
      }

      .menu-toggle {
        display: flex;
        margin-left: auto;
      }

      .main-nav {
        width: 100%;
        order: 10;
        display: none;
        justify-content: flex-start;
      }

      .main-nav.active {
        display: flex;
      }

      .main-nav ul {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 22px;
        background: rgba(6, 16, 28, 0.94);
        border-radius: 16px;
        margin-top: 10px;
        box-shadow: var(--shadow);
      }

      .header-right {
        margin-left: auto;
        gap: 12px;
      }

      .phone-wrap {
        display: none;
      }

      .book-btn {
        min-width: 135px;
        padding: 13px 22px;
        font-size: 14px;
      }

      .hero-title {
        font-size: 44px;
      }

      .hero-desc {
        font-size: 16px;
      }

      .slider-dots {
        right: 25px;
        bottom: 40px;
      }
    }

    @media (max-width: 767px) {
      .hero-section,
      .slider,
      .slides,
      .slide img {
        min-height: 88vh;
        height: 88vh;
      }

      .logo img {
        width: 150px;
      }

      .header-right {
        width: 100%;
        justify-content: space-between;
      }

      .hero-content {
        bottom: 14%;
      }

      .hero-subtitle {
        font-size: 12px;
        padding: 9px 16px;
        letter-spacing: 1.4px;
      }

      .hero-title {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 14px;
      }

      .hero-desc {
        font-size: 15px;
        line-height: 1.7;
      }

      .slider-controls {
        gap: 12px;
        bottom: 5.5%;
      }

      .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
      }

      .slider-count {
        font-size: 14px;
      }

      .slider-dots {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        bottom: 24px;
        flex-direction: row;
        gap: 10px;
      }
    }

    @media (max-width: 480px) {
      .header-container {
        width: 94%;
      }

      .logo img {
        width: 138px;
      }

      .book-btn {
        min-width: 120px;
        padding: 12px 18px;
        font-size: 13px;
      }

      .hero-title {
        font-size: 28px;
      }

      .hero-desc {
        font-size: 14px;
      }
    }
	
#reserve { float:none; width:100%; margin:0 auto; background:#00723F; }
.reserve { color:#fff; font-size:28px;  float:left;  font-weight:normal; text-align:left; padding:15px 12px; margin-right:26px; font-family: Georgia, "Times New Roman", serif;}
.imenu { width:90%; float:none; margin:0 auto; padding:12px 0;}
.check1{ margin:11px 10px; float:left; width:10%; font-weight:normal;}
.check2{ margin:0px 10px; float:left; width:10%; font-weight:normal;}
.chk {font-size:12px; color:#fff; line-height:24px;}
.message1{ font-size:14px; padding:10px 11px; margin:0 auto; border:#fff solid 1px; color: #fff; width:92%; font-weight:normal;  background:#00723F; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;}
.message2{ font-size:14px; padding:9px 10px; margin:0 auto; width:96%; color: #fff; font-weight:normal; background:#00723F; border:#fff solid 1px; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;}
input[type="submit"]
.palace-button, input[type="submit"], input#searchsubmit {
background-color:#E6F1EC; border:none; color:#000; font-size: 17px; padding:10px 30px; font-weight:bold;  letter-spacing:1px; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; margin-top:10px;}
::-webkit-input-placeholder {
   color: #333333;
}

:-moz-placeholder { /* Firefox 18- */
   color: #333333;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #333333;  
}

:-ms-input-placeholder {  
   color: #333333;  
}
.map1{ font-size:12px;
padding:10px;  font-family: "Libre Baskerville", serif;
width:50%; 
margin-right:15px; background:#fff;
border: 1px double #929292;
color:#444;
float:left; border-radius: 20px;
}
label { display:none;}

 .welcome-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    overflow: hidden;
  }

  .welcome-container {
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
  }

  /* Heading */
  .welcome-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
  }

  .welcome-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #009245;
    margin-bottom: 12px;
    position: relative;
  }

  .welcome-subtitle::after {
    content: "";
    width: 55px;
    height: 2px;
    background: #009245;
    display: block;
    margin: 10px auto 0;
  }

  .welcome-title, .welcome-title a {
    font-size: 46px;
    line-height: 1.2;
    color: #0d3b66;
    font-weight: 400;
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
  }

  .welcome-heading p {
    font-size: 17px;
    line-height: 1.9;
    color: #5a6672;
  }

  /* Row Layout */
  .welcome-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
  }

  /* Left Image */
  .welcome-image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  }

  .welcome-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
  }

  .welcome-image:hover img {
    transform: scale(1.05);
  }

  /* Decorative Frame */
  .welcome-image::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 22px;
    right: 22px;
    bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    z-index: 2;
    pointer-events: none;
  }
  .welcome-subrow {
    align-items: center;
    gap: 60px;
  }
  
    .welcome-subcontent {
     align-items: center;
    padding: 2px 0 20px 0;
  }
  
  /* Right Content */
  .welcome-content {
    position: relative;
    padding: 20px 0 20px 0;
    border-right: 5px solid #009245;
    padding-right: 35px;
  }
  
  .welcome-subcontent p {
    font-size: 17px;
    line-height: 1.95; text-align:Center;
    color: #3f4a56;
    margin-bottom: 20px;
  }

  .welcome-content-heading {
    font-size: 34px;
    line-height: 1.25;
    color: #0d3b66;
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
  }

  .welcome-content p {
    font-size: 17px;
    line-height: 1.95;
    color: #4f5d6b;
    margin-bottom: 20px;
  }

  /* Read More Content */
  .read-more-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.55s ease;
  }

  .read-more-content.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 8px;
  }

  /* Read More Button */
  .read-more-btn {
    margin-top: 12px;  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 28px;
    background: linear-gradient(135deg, #009245, #007a39);
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 146, 69, 0.22);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
  }

  .read-more-btn span {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.35s ease;
  }

  .read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0, 146, 69, 0.28);
  }

  .read-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.28) 50%,
      rgba(255,255,255,0) 100%
    );
    transition: all 0.6s ease;
  }

  .read-more-btn:hover::before {
    left: 100%;
  }

  .read-more-btn.active span {
    transform: rotate(45deg);
  }

  /* Responsive */
  @media (max-width: 1100px) {
    .welcome-row {
      gap: 40px;
    }

    .welcome-heading h2 {
      font-size: 40px;
    }

    .welcome-content h3 {
      font-size: 30px;
    }
  }

  @media (max-width: 991px) {
    .welcome-section {
      padding: 80px 0;
    }

    .welcome-row {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .welcome-image img {
      min-height: 420px;
    }

    .welcome-content {
      border-right: none;
      border-top: 5px solid #009245;
      padding-right: 0;
      padding-top: 30px;
    }

    .welcome-heading h2 {
      font-size: 36px;
    }

    .welcome-content h3 {
      font-size: 28px;
    }
  }

  @media (max-width: 767px) {
    .welcome-section {
      padding: 65px 0;
    }

    .welcome-heading {
      margin-bottom: 40px;
    }

    .welcome-heading h2 {
      font-size: 30px;
    }

    .welcome-heading p,
    .welcome-content p {
      font-size: 15px;
      line-height: 1.8;
    }

    .welcome-content h3 {
      font-size: 24px;
    }

    .welcome-image img {
      min-height: 300px;
    }

    .read-more-btn {
      padding: 14px 24px;
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .welcome-heading h2 {
      font-size: 26px;
    }

    .welcome-content h3 {
      font-size: 22px;
    }

    .welcome-content {
      padding-top: 24px;
    }
  }
	
 .amenities-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: #f4f4f4;
    overflow: hidden;
  }

  .amenities-section::before {
    content: "";
    position: absolute;
    top: -60px;
    right: 8%;
    width: 260px;
    height: 260px;
    background: url("https://www.cyberwebhotels.com/brandlogo/wingate.svg") no-repeat center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
  }

  .amenities-wrapper {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    min-height: 700px;
    align-items: stretch;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  }

  /* LEFT IMAGE AREA */
  .amenities-image-slider {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    background: #ddd;
  }

  .amenity-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.06);
    transition: all 0.8s ease;
  }

  .amenity-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
  }

  .amenity-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* RIGHT CONTENT AREA */
  .amenities-content-area {
    position: relative;
    background: #f1f1f1;
    padding: 90px 90px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .amenities-top-text {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #6d645d;
    margin-bottom: 70px;
  }

  .amenity-content-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex: 1;
  }

  .amenity-text-wrap {
    position: relative;
    z-index: 2;
    max-width: 500px;
  }

  #amenityTitle {
    font-size: 58px;
    line-height: 1.15;
    color: #0d0d0d;
    font-weight: 400;
    margin-bottom: 25px;
    font-family: Georgia, "Times New Roman", serif;
  }

  .amenity-text-wrap p {
    font-size: 18px;
    line-height: 1.9;
    color: #5f5f5f;
    margin-bottom: 35px;
    max-width: 500px;
  }

  .amenity-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b7a3b;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  .amenity-link span {
    font-size: 22px;
    transition: transform 0.3s ease;
  }

  .amenity-link:hover {
    color: #065d2b;
  }

  .amenity-link:hover span {
    transform: translateX(6px);
  }

  /* BIG NUMBER */
  .amenity-big-number {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 260px;
    font-weight: 700;
    color: rgba(120, 110, 120, 0.12);
    line-height: 1;
    z-index: 1;
    user-select: none;
  }

  /* CONTROLS */
  .amenities-controls {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 50px;
    z-index: 5;
    position: relative;
  }

  .amenity-btn {
    background: transparent;
    border: none;
    font-size: 42px;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
  }

  .amenity-btn:hover {
    color: #0b7a3b;
    transform: translateY(-2px);
  }

  .amenity-counter {
    font-size: 18px;
    color: #0b7a3b;
    letter-spacing: 1px;
    min-width: 85px;
    text-align: center;
  }

  /* RESPONSIVE */
  @media (max-width: 1200px) {
    .amenities-content-area {
      padding: 70px 60px 60px;
    }

    .amenity-text-wrap h2 {
      font-size: 48px;
    }

    .amenity-big-number {
      font-size: 210px;
    }
  }

  @media (max-width: 991px) {
    .amenities-section {
      padding: 80px 0;
    }

    .amenities-wrapper {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .amenities-image-slider {
      min-height: 420px;
    }

    .amenities-content-area {
      padding: 55px 35px 50px;
    }

    .amenities-top-text {
      margin-bottom: 40px;
    }

    .amenity-text-wrap h2 {
      font-size: 40px;
    }

    .amenity-text-wrap p {
      font-size: 16px;
    }

    .amenity-big-number {
      font-size: 170px;
      right: 10px;
      top: 45%;
    }
  }

  @media (max-width: 767px) {
    .amenities-section {
      padding: 65px 0;
    }

    .amenities-wrapper {
      width: 94%;
    }

    .amenities-image-slider {
      min-height: 300px;
    }

    .amenities-content-area {
      padding: 40px 25px 40px;
    }

    .amenities-top-text {
      font-size: 13px;
      letter-spacing: 3px;
      margin-bottom: 28px;
    }

    .amenityTitle {
      font-size: 30px;
      margin-bottom: 18px;
    }

    .amenity-text-wrap p {
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .amenity-big-number {
      font-size: 110px;
      top: 38%;
      right: 5px;
    }

    .amenities-controls {
      margin-top: 35px;
      gap: 14px;
    }

    .amenity-btn {
      font-size: 34px;
    }

    .amenity-counter {
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    .amenity-text-wrap h2 {
      font-size: 26px;
    }

    .amenity-big-number {
      font-size: 90px;
    }
  }
 .gateway-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    overflow: hidden;
  }

  .gateway-section::before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(13,59,102,0.08) 0%, rgba(13,59,102,0) 70%);
    pointer-events: none;
  }

  .gateway-container {
    width: 92%;
    max-width: 1360px;
    margin: 0 auto;
  }

  /* Heading */
  .gateway-heading {
    text-align:left;
    max-width: 900px;
    margin: 0 auto 70px;
  }

  .gateway-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #009245;
    margin-bottom: 12px;
  }

  .gateway-heading-title, .gateway-heading-title a {
    font-size: 50px;
    line-height: 1.2;
    color: #0d3b66;
    font-weight: 400;
    font-family: Georgia, "Times New Roman", serif;
  }

  /* Main Row */
  .gateway-row {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    gap: 55px;
    align-items: center;
  }

  /* Left Content */
  .gateway-content {
    position: relative;
    padding-right: 35px;
  }

  .gateway-content::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    width: 3px;
    height: 120px;
    background: linear-gradient(180deg, #009245, #0d3b66);
    border-radius: 20px;
  }

  .gateway-content p {
    font-size: 18px;
    line-height: 1.95;
    color: #566270;
    margin-bottom: 22px;
  }

  .gateway-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #009245, #007a39);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(0, 146, 69, 0.22);
    position: relative;
    overflow: hidden;
  }

  .gateway-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.25) 50%,
      rgba(255,255,255,0) 100%
    );
    transition: all 0.6s ease;
  }

  .gateway-btn:hover::before {
    left: 100%;
  }

  .gateway-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0, 146, 69, 0.28);
  }

  /* Right Grid */
  .gateway-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 290px 290px;
    gap: 24px;
  }

  .gateway-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  }

  .gateway-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
  }

  .gateway-card:hover img {
    transform: scale(1.07);
  }

  .large-card {
    grid-row: 1 / span 2;
  }

  .gateway-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.08) 60%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
  }

  .gateway-overlay-title {
    color: #fff;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 400;
    font-family: Georgia, "Times New Roman", serif;
    text-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .gateway-heading h2 {
      font-size: 44px;
    }

    .gateway-content p {
      font-size: 17px;
    }

    .gateway-grid {
      grid-template-rows: 250px 250px;
    }
  }

  @media (max-width: 991px) {
    .gateway-section {
      padding: 85px 0;
    }

    .gateway-row {
      grid-template-columns: 1fr;
      gap: 45px;
    }

    .gateway-content {
      padding-right: 0;
    }

    .gateway-content::after {
      right: auto;
      left: 0;
      top: auto;
      bottom: -18px;
      width: 120px;
      height: 3px;
    }

    .gateway-heading {
      margin-bottom: 50px;
    }

    .gateway-heading h2 {
      font-size: 38px;
    }
  }

  @media (max-width: 767px) {
    .gateway-section {
      padding: 65px 0;
    }

    .gateway-heading h2 {
      font-size: 30px;
    }

    .gateway-content p {
      font-size: 15px;
      line-height: 1.85;
    }

    .gateway-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      gap: 18px;
    }

    .large-card {
      grid-row: auto;
      height: 280px;
    }

    .small-card {
      height: 240px;
    }

    .gateway-overlay h3 {
      font-size: 22px;
    }

    .gateway-btn {
      padding: 14px 26px;
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .gateway-heading h2 {
      font-size: 26px;
    }

    .large-card {
      height: 240px;
    }

    .small-card {
      height: 220px;
    }
  }
/* SECTION */
.room-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.room-hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* OVERLAY */
.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(15, 32, 39, 0.85),
    rgba(15, 32, 39, 0.6),
    rgba(15, 32, 39, 0)
  );
  z-index: 2;
}

/* CONTENT */
.room-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: 80px;
}

.room-content-heading {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.room-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e5e5e5;
}

/* BUTTONS */
.room-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.btn.primary {
  background: transparent;
}

.btn:hover {
  background: #fff;
  color: #000;
}

.btn.link {
  border: none;
  padding: 14px 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .room-overlay {
    width: 100%;
  }

  .room-content {
    padding: 50px 30px;
  }

  .room-content h1 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .room-content {
    padding: 40px 20px;
  }

  .room-content h1 {
    font-size: 26px;
  }

  .room-content p {
    font-size: 14px;
  }
}

.hotel-footer{
background:#214439;
color:#ddd;
padding:50px 20px;

}

.footer-container{
max-width:90%;
margin:auto;  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Top Columns */

.footer-top{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
margin-bottom:30px;
}

.footer-contact-title, .footer-contact-title a {
margin-bottom:10px;   font-family: Georgia, "Times New Roman", serif;
color:#fff; font-size:21px; text-transform:capitalize;
}

.footer-contact p, .footer-contact p a{
line-height:1.7;
font-size:16px; color:#fff; text-decoration:none;
}

/* Social Icons */

.footer-social a{
display:inline-block;
width:45px;
height:45px;
line-height:45px;
text-align:center;
border-radius:50%;
margin-left:10px;
background:#00723F;
color:#fff;
font-size:18px;

transition:all .7s ease;
}

/* Roll Hover Effect */

.footer-social a:hover{
transform:rotate(360deg);
background:#4b4e6f;
}

/* Links Row */

.footer-links{
display:flex;
flex-wrap:wrap;
gap:18px;
margin-bottom:30px;
border-top:1px solid #333;
border-bottom:1px solid #333;
padding:15px 0;
}

.footer-links a{
color:#ccc;
text-decoration:none;
font-size:16px;
transition:.3s;
}

.footer-links a:hover{
color:#fff;
}

/* Bottom */

.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.footer-text{
max-width:700px;
font-size:15px;
line-height:1.7;
}

.footer-text a{
color:#ddd;
text-decoration:none;
}

.footer-text a:hover{
text-decoration:underline;
}

.footer-logo img{
max-width:150px;
}

/* Mobile */

@media(max-width:768px){

.footer-top{
flex-direction:column;
align-items:flex-start;
gap:20px;
}

.footer-links{
justify-content:center;
text-align:center;
}

.footer-bottom{
flex-direction:column;
align-items:flex-start;
}

.footer-logo{
margin-top:10px;
}

}

  html {
    scroll-behavior: smooth;
  }

  #scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background: #009245;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
  }

  #scrollTopBtn:hover {
    background: #333;
    transform: translateY(-4px);
  }

  @media (max-width: 767px) {
    #scrollTopBtn {
      width: 45px;
      height: 45px;
      font-size: 20px;
      bottom: 20px;
      right: 20px;
    }
  }
  
 .amenity {
      width:40%; float:left; 
      margin: 10px 10px 0 20px;
      padding: 20px; 
      
    }
  
    .amenity ul {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px 30px;
    }
    .amenity li {
      font-size: 17px;
      color: #3f4a56; padding:8px 0;
      display: flex;
      align-items: center; text-align:left;
    }
    .amenity li i {
       color: #3f4a56;
      margin-right: 10px;
      font-size: 18px;
      min-width: 20px;
      text-align: center;
    }
.amenity-list li {
  position: relative;
  padding-left: 8px;
  margin-bottom: 10px;
}

.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
   color: #3f4a56; /* Blue checkmark */
  font-size: 17px;
}
.col1 { font-size:17px;  color: #3f4a56; width:40%; float:left; margin:0px 10px 0 20px; text-align:left;      padding: 20px; }
.col1 ul li {list-style:circle; line-height:28px;}
.col1 ul li a {color: #3f4a56; text-decoration:none; list-style:none;}	
 