*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif; background:#f8f9fa;
}

.container{
max-width:1280px;
margin:auto;
padding:0 20px;
}
.more {display:none;}
a.showLink, a.hideLink { text-decoration: none;color: #000;padding:8px 10px;background:#FEF200;}
a.showLink:hover, a.hideLink:hover {color:#fff;background:#C81A21;}

/* HEADER */

.site-header{
position:sticky;
top:0;
z-index:1000;
background:#fff;
box-shadow:0 2px 12px rgba(0,0,0,0.08);position:relative;   /* ADD THIS */

}

.top-row{
display:flex;
align-items:center;
justify-content:space-between;
padding:5px 0 0;
}

/* LOGO */

.logo img{
height:65px;
}

/* NAVIGATION */

.main-nav{
flex:1;
display:flex;
justify-content:center;
}

.main-nav ul{
display:flex;
list-style:none;
gap:10px;
}

.main-nav ul li a{
text-decoration:none;
color:#002b5c;
font-weight:600;
font-size:16px;
padding:10px 14px;
border-radius:6px;
transition:0.3s;
text-transform:uppercase;
}

.main-nav ul li a:hover{

background:#ffdd00;
color:#000;
}
.main-nav ul li a.active{
background:#ffdd00;
color:#000;
}
/* PHONE */

.phone{
font-weight:600;
color:#002b5c;
text-decoration:none;
font-size:17px;
}

/* HAMBURGER */

.menu-toggle{
display:none;
border:none;
background:none;
cursor:pointer;
}

.hamburger{
width:28px;
height:22px;
display:flex; margin-right:20px;
flex-direction:column;
justify-content:space-between;
}

.bar{
height:3px;
background:#002b5c;
border-radius:2px;
}

/* RESERVATION BAR */

.reservation-bar{
background:#002b5c;
padding:14px 0;
border-bottom:3px solid #ffdd00;
}

.booking-form{
display:flex;
flex-wrap:wrap;
gap:12px;
justify-content:center;
}

.booking-form input,
.booking-form select{
padding:10px;
border:1px solid #ccc;
border-radius:6px;
min-width:140px;
}

.book-btn{
background:#ffdd00;
border:none;
padding:11px 30px;
font-weight:700;
cursor:pointer;
border-radius:6px; text-decoration:none;
}

.book-btn:hover{
background:#e31837;
color:#fff;
}

/* MOBILE */

@media (max-width:992px){

.top-row{
flex-wrap:wrap;
position:relative;
}

.main-nav{
display:none;
width:100%;
background:#002b5c;
position:absolute;
top:100%;
left:0;
z-index:9999;
padding:0;
}

.main-nav.active{
display:block;
}

.main-nav ul{
flex-direction:column;
align-items:flex-start;
padding:0;
margin:0;
width:100%;
}

.main-nav ul li{
width:100%;
border-bottom:1px solid rgba(255,255,255,0.1);
}

.main-nav ul li a{
display:block;
color:#fff;
padding:15px 20px;
width:100%;
}

.menu-toggle{
display:block;
border:none;
background:none;
cursor:pointer;
}

.phone{
display:none;
}

.logo{
order:1;
}

.menu-toggle{
order:2;
margin-left:auto;
}

}

@media (max-width:680px){

.logo img{
height:55px; margin-left:20px;
}

.booking-form input,
.booking-form select{
width:100%;
}

}

/* Slideshow */
.slider-container {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Overlay Text */
.text-overlay {
 position: absolute;
  top: 50%; /* Centers the text vertically */
  left: 50%; /* Centers the text horizontally */
  transform: translate(-50%, -50%); /* Adjust for exact centering */
  color: white;
  font-size:22px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  text-align: center;
  z-index: 10;
}

.book-now-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color:#ffdd00;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 15px;
  font-size: 18px;
  transition: background-color 0.3s, transform 0.3s;
  text-align: center;
}

.book-now-btn:hover {
  background-color:#2563eb; transform: scale(1.05);
}

/* Navigation Buttons */
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.prev-btn:hover, .next-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}






@media (max-width: 768px) {
  .slider-container {
    height: 300px; /* Adjusted height for mobile */
  }

  .text-overlay {
    font-size: 20px;
    bottom: 15px;
  }

  .book-now-btn {
    font-size: 16px;
    padding: 8px 15px;
  }

  .prev-btn, .next-btn {
    font-size: 24px;
    padding: 12px;
  }
}

.welcome {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      color:black;
      overflow: hidden;
    }

    .left {
      padding: 8vw 6vw;
      display: flex;
      flex-direction: column;
      justify-content: center;
      animation: fadeInLeft 1.2s ease-out;
    }
.welcome-small { font-size: clamp(0.95rem, 2.5vw, 1.1rem); text-transform: uppercase; letter-spacing: 3px; opacity: 0.9; margin-bottom: 0.8rem; }
h2 { font-size: 35px; font-weight: 900; line-height: 0.92; margin-bottom: 1.5rem; background: #002B5C; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
   .desc { font-size: 1.25rem; line-height: 1.6; max-width: 520px; opacity: 0.95; }
    .short { max-height: 4.8em; overflow: hidden; transition: max-height 0.4s ease; }
    .full  { max-height: 500px; }

    .read-more {
      color: #4da6ff;
      cursor: pointer;
      font-weight: 600;
      display: inline-block;
      margin-top: 0.6rem;
    }

    .right {
      background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover;
      position: relative;
      animation: slideInRight 1.4s ease-out;
    }
    .right::after { content:""; position:absolute; inset:0; background: linear-gradient(to right, rgba(15,32,39,0.6), transparent 60%); }

    @keyframes fadeInLeft { from { opacity:0; transform:translateX(-60px); } to { opacity:1; transform:translateX(0); } }
    @keyframes slideInRight { from { transform:translateX(30%); } to { transform:translateX(0); } }

    @media (max-width: 900px) {
      .welcome { grid-template-columns: 1fr; }
      .right   { min-height: 50vh; }
      .left    { padding: 10vh 5vw; text-align:center; }
      h2       { font-size: clamp(3.8rem, 12vw, 6rem); }
      .desc    { margin: 0 auto; }
    }
	.amen{background:#002B5C; width:100%;}
 .contain {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px 20px 60px 20px;
}
h3 {
            text-align: center;
            margin-bottom: 40px;
            color: #fff;
            font-size: 2.5rem;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .amenity-item {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        .amenity-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }

        .amenity-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #3498db;
        }

        .amenity-item h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: #2c3e50;
        }

        .amenity-item p {
            font-size:1.1rem;
            color: #7f8c8d;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            h3 {
                font-size: 2rem;
            }
            .amenity-icon {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 15px;
            }
            .amenity-item {
                padding: 20px;
            }
        }

/*footer*/


    footer {
      background:#002B5C;
      color: #e2e8f0;
      padding: 60px 20px 10px;   /* extra bottom padding so button doesn't overlap content */
      position: relative;font-size:17px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      padding-bottom: 40px;
    }

    .footer-section h5 {
      color: #f97316;
      font-size: 1.4rem;
      margin-bottom: 1.4rem;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-section h5::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 60px;
      height: 3px;
      background: #f97316;
      border-radius: 3px;
      transition: width 0.4s ease;
    }

    .footer-section:hover h5::after {
      width: 100px;
    }

    .quick-links ul {
      list-style: none;
    }

    .quick-links li {
      margin-bottom: 12px;
    }

    .quick-links a {
      color: #cbd5e1;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      position: relative;
      padding-left: 20px;
    }

    .quick-links a:hover {
      color: #f97316;
      transform: translateX(8px);
    }

    .quick-links a::before {
      content: "→";
      position: absolute;
      left: 0;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s ease;
    }

    .quick-links a:hover::before {
      opacity: 1;
      transform: translateX(0);
    }
.address a{color:#94a3b8;
text-decoration: none;}
.address a:hover{color: #f97316;}
    .address p {
      line-height: 1.7;
      color: #94a3b8;
      font-size:1rem;
    }

    .social-icons {
      margin-top: 1.5rem;
    }

    .social-icons a {
      color: #94a3b8;
      font-size: 1.5rem;
      margin-right: 18px;
      transition: all 0.35s ease;
      display: inline-block;
    }

    .social-icons a:hover {
      color: #f97316;
      transform: translateY(-6px) rotate(8deg);
      text-shadow: 0 8px 15px rgba(249, 115, 22, 0.35);
    }

    .footer-bottom {
      border-top: 1px solid #334155;
      padding-top: 30px;
      text-align: center;
      font-size: 0.92rem;
      color: #94a3b8;
    }

    .footer-bottom a {
      color: #cbd5e1;
      text-decoration: none;
      margin: 0 6px;
      transition: color 0.3s;
    }

    .footer-bottom a:hover {
      color: #f97316;
    }

    .credits {
      margin: 14px 0 8px;
      font-style: italic;
      opacity: 0.9;
    }

    /* ─── Back to Top Button ────────────────────────────────────────────── */
    #back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: #f97316;
      color: white;
      border: none;
      border-radius: 50%;
      font-size: 1.4rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #back-to-top.show {
      opacity: 1;
      visibility: visible;
    }

    #back-to-top:hover {
      background: #ea580c;
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
    }

    @media (max-width: 576px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }
     
      .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
      }
     
      .social-icons a {
        margin: 0 14px;
      }

      #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
      }
    }  
	/*ATTRACTION*/
.section {
    padding:0px 20px 40px 20px;
    text-align: center;
}

.section h2 {
    font-size: 34px;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* CAROUSEL */
.carousel {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

/* TRACK */
.track {
    display: flex;
    transition: transform 0.6s ease;
}

/* CARD */
.card {
    min-width: 300px;
    height: 380px;
    margin: 0 15px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease;
    
    transform: scale(0.8);
    opacity: 0.5;
    filter: blur(3px);
}

/* CENTER ACTIVE CARD */
.card.active {
    transform: scale(1.05);
    opacity: 1;
    filter: blur(0);
    z-index: 2;
}

/* OPTIONAL: add subtle glow for premium look */
.card.active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    pointer-events: none;
}
.track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* IMAGE */
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    text-align: left;
}

.overlay h3 {
    margin: 0;
    font-size: 20px;
}

/* BUTTONS */
.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.prev { left: -10px; }
.next { right: -10px; }

.btn:hover {
    background: rgba(255,255,255,0.3);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.attraction-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eef0f3;
}
.attraction-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,43,92,0.15); }
.attraction-img {
  height: 200px;
  background: linear-gradient(135deg, #002b5c, #0057b8);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: #ffdd00;
}
.attraction-body { padding: 24px; }
.attraction-body h3 {
  font-size: 1.25rem; color: #002b5c; margin-bottom: 10px; font-weight: 700;
  background: none; -webkit-text-fill-color: #002b5c; text-align: left;
}
.attraction-body p { color: #5a6a7e; font-size: 0.97rem; line-height: 1.65; }
.distance-badge {
  display: inline-block; background: #ffdd00; color: #002b5c;
  font-size: 0.78rem; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; margin-bottom: 10px; letter-spacing: 0.5px;
}
.things-section { padding: 70px 20px; background: #f8f9fa; }

/* MOBILE */
@media(max-width:768px){
    .card {
        min-width: 250px;
        height: 320px;
    }
}
/*Book Now*/
.cta-bar { background:#002b5c; color:white; text-align:center; padding:50px 0; } .book-btn.large { font-size:1.3rem; padding:15px 50px; }
/*review*/

.map1{ font-size:12px;padding:10px; width:50%;margin-right:15px; background:#fff;border: 1px double #929292;color:#444;float:left; border-radius: 10px; font-family:Quando,verdana,arial; margin-left:30px;}

.topbg{width:100%;margin:0 auto; border-top:1px solid #002B5C;}
.acc {text-align: center;  margin:0 auto; padding:25px 0; font-size:25px; line-height:45px; font-family:Quando, Verdana, Geneva, sans-serif; width:1140px;}
.acc a{color:#002B5C; text-decoration:none;}
.acc a:hover {color: #FFDD00;}
.c6

 {background-color: #FFDD00;
    border: none;
    color: #000;
    font-size: 14px;
    padding: 10px 30px;
    font-weight: bold;
    border-radius: 5px;
}


#content {margin:0 auto; width:}
#content p{font-size:15px;font-weight:normal;line-height:25px;text-align:justify;}
.heading {text-decoration:none; padding:25px 0 0 0px;font-weight:bold;font-size:30px;text-align:center;text-transform:uppercase;line-height:35px; letter-spacing:2px;color:#FFF; font-family:Quando, Verdana, Geneva, sans-serif;}
.heading a {text-decoration:none;color:#002B5C; font-weight:700;}
.heading p {padding:10px; font-size:14px;line-height:24px;text-transform:capitalize;}
.main{ width:1140px; margin:0 auto;}
.col-two {float:left;margin-left:130px;width:400px;margin-top:15px;}
a.cgs:link, a.cgs:visited {color:#000;font-weight:normal;text-decoration:none;}
a.cgs:hover {color:#000;}
@media only screen and (min-width:581px) and (max-width:768px) {
	
.main, .acc{ width:100%; margin:0 auto;}
.col-two {float: none;width: 80%; margin-top: 0; margin-left: 45px;}
#content p {padding:0 20px 0 20px; }
.c6{ margin:15px 30px;}
}

@media only screen and (max-width:580px) {
.main, .acc{ width:100%; margin:0 auto;}
.col-two {float: none;width: 80%; margin-top: 0; margin-left: 45px;}
#content p {padding:0 20px 0 20px; }
.c6{ margin:15px 30px;}
}

@media only screen and (min-width:769px) and (max-width:1200px) {
	
.main, .acc{ width:100%; margin:0 auto;}
.col-two {float: none;width: 80%; margin-top: 0; margin-left: 45px;}
#content p {padding:0 20px 0 20px; }
.c6{ margin:15px 30px;}
}