* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;border:0;outline:none;
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  animation: slideDown 0.5s ease;
}

/* Animation */
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Top Bar */
.top-bar {
  background: #ffffff;
  border-bottom: 2px solid #ffd100;
}

.top-inner {
  max-width: 1140px;
  margin: auto;
  padding: 5px 0px;
  display: flex;
  align-items: center;
 /* justify-content: space-between;*/
  gap: 15px;
}

.logo {
  height:75px;
}

/* Reservation Box */
.reservation-box {
  display: flex;
  gap: 6px;
}

.reservation-box input,
.reservation-box select {
  padding: 7px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
}

/* Book Button */
.book-btn {
  background: #ffd100;
  color: #000;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}

.book-btn:hover {
  background: #e31837;
  color: #fff;
  transform: scale(1.05);
}

/* Phone */
.phone {
  text-decoration: none;
  color: #002b5c; font-size:16px;
}

/* Navigation */
.main-nav {
  background: #002b5c;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

.main-nav ul li a {
  display: block;
  padding: 10px 30px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s; text-transform:uppercase;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  background:#FFDD00; color:#000;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #002b5c;
}

@media (max-width: 992px) {

  .reservation-box {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    display: none;
  }

  .site-header:hover .main-nav ul {
    display: flex;
  }

}
/* Slideshow */

/* 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 Read more*/

    .read-more-btn{
      appearance:none;
      border: 1px solid #0b5ed7;
      background: #0b5ed7;
      color:#fff;
      padding:10px 18px;
      border-radius:8px;
      font-weight:700;
      cursor:pointer;
      display:inline-flex;
      align-items:center;
      gap:10px;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
      margin-top: 6px;
    }
    .read-more-btn:hover{
      background:#094db2;
      border-color:#094db2;
      transform: translateY(-1px);
    }

    /* ✅ Hidden/Show content using class (no display bug) */
    .extra-content{
      overflow:hidden;
      max-height:0;
      opacity:0;
      transform: translateY(-4px);
      transition: max-height .45s ease, opacity .35s ease, transform .35s ease;
    }
    .extra-content.is-open{
      max-height: 1200px; /* enough for all paragraphs */
      opacity:1;
      transform: translateY(0);
      margin-top: 6px;
    }
  /* Animations */
    @keyframes fadeInText{ from{opacity:0} to{opacity:1} }
    @keyframes slideInLeft{ from{transform:translateX(-35px);opacity:0} to{transform:translateX(0);opacity:1} }
    @keyframes slideInRight{ from{transform:translateX(25px);opacity:0} to{transform:translateX(0);opacity:1} }
    @keyframes fadeInImage{ from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

  @keyframes titlePulse {
    0%,100% { opacity: 0.9; }
    50% { opacity: 1; text-shadow: 0 0 60px #00ffff, 0 0 120px #ff00ff, 0 0 180px #ff00ff; }
  }
  
  
  /*amenitiies*/
.amenities {
    background: #2F466C;
    color: white;
    overflow-x: hidden; padding-bottom:60px;}
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 40px;
    max-width:1140px;
    margin: 0 auto; background:#2F466C; padding-top:40px;
  }

  .card {
    position: relative;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 50px 25px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.5s ease;
  }

  /* ANIMATED PULSING NEON BORDER */
  .card::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px; right: -8px; bottom: -8px;
    border-radius: 36px;
    background:/*linear-gradient(93deg, #56a5ff, #309aff)*/linear-gradient(
212deg, #56a5ff, #56a5ff, #fcff59);
    background-size: 400% 400%;
    z-index: -1;
    animation: borderPulse 6s linear infinite, rotate 20s linear infinite;
    filter: blur(8px);
    opacity: 0.8;
  }

  .card::after {
    content: '';
    position: absolute;
    top: 4px; left: 4px; right: 4px; bottom: 4px;
    background: rgba(0,0,0,0.7);
    border-radius: 28px;
    z-index: -1;
  }

  @keyframes borderPulse {
    0%   { background-position: 0% 50%;   box-shadow: 0 0 20px currentColor; }
    50%  { background-position: 100% 50%; box-shadow: 0 0 60px currentColor; }
    100% { background-position: 0% 50%;   box-shadow: 0 0 20px currentColor; }
  }

  @keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

  .card:hover {
    transform: translateY(-25px) scale(1.08);
  }

  .card:hover::before {
    animation-duration: 2s, 8s;
    filter: blur(12px);
    opacity: 1;
  }

  .icon {
    font-size: 4.8rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 30px currentColor);
    transition: all 0.5s;
  }

  .card:hover .icon {
    transform: scale(1.4);
    filter: drop-shadow(0 0 80px currentColor);
  }
  .text {
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 0 0 30px currentColor;
  }

  h3 {
    font-size:2.5rem;
    font-weight: 900; padding:40px 0 10px;
    margin-bottom: 14px; text-align:center; color:#30649F;

  }

  p {
    font-size: 1.05rem;
    opacity: 0.95;
  }

  /* Individual Neon Colors 

  .c4  { color: #ff2e63; }
  .c5  { color: #39ff14; }
  .c6  { color: #ff006e; }
  .c7  { color: #ffdd00; }*/
  .c9,.c10,.c7, .c6, .c5, .c4, .c10 { color: #ffdd00; }


  @media (max-width: 768px) {
    h1 { font-size: 3.4rem; }
    .icon { font-size: 3.8rem; }
    .card { padding: 40px 20px; }
  }
	
	
/*gallery*/
 gallery {
      text-align: center;
      padding: 45px 20px 25px;
    }

   h5 {
      font-size: 2.5rem;
      color: #1e3a5f;
      margin-bottom: 8px;
    }

    .subtitle {
      font-size: 1.15rem;
      color: #555;
      max-width: 720px;
      margin: 0 auto;
    }

    .media-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 30px 20px 60px;
    }

    .gallery-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .featured-photo, .small-photo {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: all 0.35s ease;
      aspect-ratio: 4 / 3;
    }

    .featured-photo:hover, .small-photo:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .featured-photo img, .small-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .featured-photo:hover img, .small-photo:hover img {
      transform: scale(1.04);
    }

    .small-photos {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    /* LIGHTBOX */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 20px;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-content {
      position: relative;
      max-width: 92vw;
      max-height: 88vh;
      text-align: center;
    }

    .lightbox img {
      max-width: 100%;
      max-height: 80vh;
      border-radius: 8px;
      box-shadow: 0 0 40px rgba(0,0,0,0.7);
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 48px;
      color: white;
      cursor: pointer;
      background: rgba(0,0,0,0.4);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .close-btn:hover { background: #c0392b; }

    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 28px;
      color: rgba(255,255,255,0.8);
      cursor: pointer;
      padding: 8px 12px;
      background: rgba(0,0,0,0.35);
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s;
    }

    .nav-arrow:hover { background: rgba(255,255,255,0.18); }

    .prev { left: 20px; }
    .next { right: 20px; }

    .lightbox-footer {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 1.1rem;
      background: rgba(0,0,0,0.6);
      padding: 8px 20px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      gap: 25px;
    }

    @media (max-width: 980px) {
      .gallery-layout { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      h1 { font-size: 2rem; }
      .small-photos { grid-template-columns: 1fr; }
      .nav-arrow {
        font-size: 24px;
        width: 40px;
        height: 40px;
      }
      .prev { left: 12px; }
      .next { right: 12px; }
    }

	
	
/* Rooms*/
 .rooms-section {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      padding-bottom: 20px;         
    }
    .rooms-section h4{
      font-size: 1.3rem;
      color: #1f2937;
      margin-bottom: 16px; 
    }

    .rooms-section .subtitle {
      font-size: 1.15rem;
      color: #6b7280;
      margin-bottom: 50px;
      max-width: 600px; text-align:center;
    }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 32px;
    }

    .room-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.07);
      transition: all 0.4s ease;
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .room-card:hover {
      transform: translateY(-14px);
      box-shadow: 0 22px 50px rgba(0,0,0,0.14); border:1px solid #e6b800;
    }

    .room-image {
      height: 310px;
      overflow: hidden;
    }

    .room-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .room-card:hover .room-image img {
      transform: scale(1.09);border:1px solid #e6b800;
    }

    .room-content {
      padding: 1px 24px 10px;       /* bottom padding ઘટાડ્યું */
    }

    .room-title {
      font-size: 1.65rem;
      margin: 16px 0 20px;
      color: #111827;
      text-align: center;
    }

    .room-desc {
      color: #4b5563;
      font-size: 0.98rem;
      line-height: 1.65;
      margin-bottom: 24px;           /* description ની નીચે થોડું space રાખ્યું */
      text-align: center; padding:0 15px;
    }

    .room-footer {
      display: flex;
      justify-content: center;
      padding: 16px 0 20px;          /* footer ની નીચે વ્હાઇટ સ્પેસ ઘટાડી */
      border-top: 1px solid #f3f4f6;
    }

    .btn-book {
      background: #2563eb;
      color: white;
      padding: 14px 48px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.05rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
      min-width: 170px;
      text-align: center;
    }

    .btn-book:hover {
      background:#e6b800;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35); border:1px solid ;
    }

    @media (max-width: 768px) {
      .rooms-section { padding-bottom: 10px; }
      .rooms-grid { gap: 24px; }
      .room-image { height: 240px; }
      .room-content { padding: 18px 24px 16px; }
      .room-desc { margin-bottom: 20px; }
      .room-footer { padding: 12px 0 16px; }
    }
	
/*reservation*/

.booking-box{
border-radius:8px;
display:flex;
flex-wrap:wrap;
gap:8px;
align-items:center;
justify-content:center;
}

.booking-box input,
.booking-box select{
padding:12px 8px;
border:1px solid #ccc;
border-radius:5px;
}

.book-btn{
background:#002B5C;
color:white;
border:none;
padding:14px 25px;
font-size:15px;
cursor:pointer;
border-radius:5px;
font-weight:bold;
}

.book-btn:hover{
background:#ffdd00;
}

@media(max-width:700px){

.booking-box{
flex-direction:column;
}

.booking-box input,
.booking-box select{
width:100%;
}

.book-btn{
width:100%;
}

}

/*FAQ*/

/*faq*/

    .faq-container {
        max-width: 960px;
        margin: 60px auto;
        padding: 0 20px;
    }
    .faq-main-title {
        text-align: center;
        color: #ffdd00;
        font-size: 2.6rem;
        margin-bottom: 55px;
        font-weight: bold;
    }
    .faq-block {
        margin-bottom: 40px;
        background: #002B5C;
        border-radius: 14px;
        padding: 32px 36px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.28);
        transition: all 0.35s ease;
    }

    /* Hover animation: lift + stronger shadow */
    .faq-block:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.38);
    }

    .faq-question {
        color: #ffdd00;
        font-size: 1.42rem;
        font-weight: 600;
        margin: 0 0 20px 0;
        line-height: 1.4;
    }
    .faq-answer {
        color: #e8f0f8;
        font-size: 1.14rem;
        line-height: 1.72;
        margin: 0;
    }
    .faq-answer a {
        color: #ffdd00;
        text-decoration: none;
        font-weight: 500;
    }
    .faq-answer a:hover {
        text-decoration: underline;
        color: #ffffff;
    }

    @media (max-width: 768px) {
        .faq-main-title {
            font-size: 2.2rem;
            margin-bottom: 45px;
        }
        .faq-block {
            padding: 26px 24px;
        }
        .faq-question {
            font-size: 1.32rem;
        }
        .faq-answer {
            font-size: 1.08rem;
        }
    }
	
/*Self Stylesheet	*/
body{font-family:Noto Sans,verdana,arial; font-size:17px;font-weight:normal;line-height:30px;color:#48494a; background:#E8F0F8;}
.main {width:1140px; margin:0 auto;}

#content {margin:0 auto; width:100%;}
#content p{font-size:18px;font-weight:normal;line-height:30px; animation: slideInRight 1.1s ease-out both;}
#video {float:right; margin:0px 0 30px 50px; box-shadow: 1px 1px 5px #999; animation: fadeInImage 1.1s ease-out both;border: 2px solid #fff;min-width:280px;  flex: 1 1 420px;}

.heading {text-decoration:none; padding:25px 10px;font-weight:bold;font-size:35px;text-align:center;text-transform: capitalize;line-height:35px; letter-spacing:1px;color:#fff;  animation: fadeInText 1.2s ease-out both;}
.heading a {text-decoration:none;color:#07458b; font-weight:700;}
.heading p {padding:10px; font-size:14px;line-height:24px;text-transform:capitalize;}

.topbk{ width:100%; margin:0 auto;padding:30px; background:#fff;border-top:3px solid #FFDD00;}
.acc {color:#07458b; font-size:25px; width:1120px; margin:0 auto; line-height:45px; letter-spacing:0.5px; text-align:center;}
.acc a{text-decoration:none;color:#07458b; font-weight:normal;}

.footer{width:100%;background:#002B5C; color:#fff; border-top:3px solid #FFDD00;}
.hotel {float:right;margin-top:15px; width:190px;}
.col-one {float:left; text-align:left;width:400px;color:#fff;margin:15px 0;}
.col-one ul{float:left; width:200px;}
.col-one li{list-style: inside; line-height:28px; }
.col-one ul li a{ font-weight:normal; color:#fff; text-decoration:none;}

#bottom{width:100%; color:#fff;}
.col-two {float:left;margin-left:30px;width:448px;margin-top:15px;}
.col-two ul li a{ font-weight:normal; color:#ED1A3B; text-decoration:none;}
.col-three {float:left;width:80%;padding-left:50px;}
.add {float:left;margin-top:15px;width:505px;}
.line {padding:5px; text-align:center; color:#000;}
.owner {margin:0 auto; text-align:center; font-size:17px; background:#444444;}
.owner p { padding:5px 0; color:#ffdd00;}
.title{font-size:24px; padding:20px 0 5px 0; text-transform:uppercase; margin-bottom:15px; color:#FFDD00; letter-spacing:1px;}
.title a{text-decoration:none; color:#FFDD00;}	

a.cgsl:link, a.cgsl:visited {color:#fff;font-weight:normal;text-decoration:none;}
a.cgsl:hover {color:#fff;}

a.cgs2:link, a.cgs2:visited {color:#ED1A3B;font-weight:normal;text-decoration:none;}
a.cgs2:hover {color:#ED1A3B;}

a.cgs:link, a.cgs:visited {color:#000;font-weight:normal;text-decoration:none;}
a.cgs:hover {color:#000;}

a.cgs3:link, a.cgs3:visited {color:#ffdd00;font-weight:normal;text-decoration:none;}
a.cgs3:hover {color:#ffdd00;}

.map1{ font-size:12px;padding:10px; width:50%;margin-right:15px; background:#fff;border: 1px double #929292;color:#444;float:left; border-radius:15px;}