*{
  font-family:  'Josefin Sans', sans-serif;
  overflow: visible !important;
}

header, .hero, .top-bar, .navbar, .menu-container {
    overflow: visible !important;
}

.logoImg{
  width:50px; 
  height:50px; 
  object-fit:cover; 
  margin-right:10px;
}

.container-fluid{
  background-color: white;
  overflow: hidden;
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow:  0 4px 12px #000000;
}

#navbarSupportedContent{
  width: 100%;
  background-color: white;
}

#navbarSupportedContent ul li a{
  color: black;
  font-weight: bold;
}

#navbarSupportedContent ul li a:hover{
  font-size: 15px;
}

#bookNow{
  width: 100px;
  height: 95%;
  border-radius: 15px;
  padding-top: 11px;
  text-decoration: none;
  text-align: center;
  color:white;
  font-size: 16px;
  background-color: rgb(19, 19, 19);
}

#bookNow:hover{
  box-shadow:  0 4px 12px #000000;
  background-color: rgb(61, 61, 61);
  font-weight: bold;
}

/* MAIN DROPDOWN PARENT */
.dropdown {
    position: relative;
    overflow: visible;
    z-index: 9999;
    background: none;
}

/* FIRST LEVEL DROPDOWN */
.dropdown-menu {
    display: none;
    position: absolute;        /* ▼ IMPORTANT */
    top: 100%;                 /* Dropdown will open below */
    left: 0;
    width: 180px;
    background-color: rgba(0, 0, 0, 0.7);
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 99999;            /* Highest layer */
}

/* DROPDOWN LINKS */
.dropdown-menu li a {
  font-weight: bold;
    color: rgb(0, 0, 0);
    display: block;
    padding: 10px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.7);
}

.dropdown-menu li a:hover {
    background: white;
    color: rgb(26, 26, 26);
}

/* SHOW FIRST LEVEL ON HOVER */
.dropdown:hover > .dropdown-menu {
    display: block;
}

/* SUB-MENU (SECOND LEVEL) */
.dropdown-menu .dropdown-menu {
    position: absolute;       /* ▼ IMPORTANT */
    top: 0;
    left: 100%;               /* Open to the right */
    width: 180px;
    height: 65vh;
    z-index: 999999;
}

.dropdown-menu .dropdown-menu li a {
    font-weight: bold;
    color: black;
    background-color: rgba(0,0,0,0.7);
    z-index: 999999;
}

.dropdown-menu .dropdown-menu li a:hover{
    background: white;
    color: rgb(26, 26, 26);
}

/* SHOW SUB-MENU ON HOVER */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* PREVENT HIDING (GLOBAL FIX) */
header, 
nav, 
.top-bar, 
.menu-container, 
.hero, 
.container {
    overflow: visible !important;
    position: relative;
}

/* bottom ribbon */

  .InfoBlock{
    width: 100%;
    height: 70vh;
    margin-top: 8%;
    padding-left:10%;
    display: flex;
    background-color:white;
}

.infoblock{
  height: 75vh;
  width: 90%;
  display: flex;
}

#infoBlock{
  width: 30%;
}

#infoBlock h3 strong{
  color: rgb(12, 12, 70);
}

.Icon{
  width: 50%;
  border-radius: 50%;
  padding-top: 20px;
  text-decoration: none;
} 

#icon{
    width: 40%;
    border-radius: 50%;
}

#iconLink{
    color: rgb(51, 51, 51);
    padding-top: 15px;
    text-decoration: none;
}

#iconLink h5{
    color: rgb(32, 32, 32);
    padding-top: 15px;
    text-decoration: none;
}

#iconLink:hover h5{
    text-decoration: none;
    color: rgb(82, 81, 81);
}

.Logo{
  width: 20%;
  height: 13vh;
  margin-left: 80%;
  display: flex;
}

.SiteIcon{
  width: 100px;
}

.SiteIcon a img{
  width: 40px;
transition: transform 0.3s, opacity 0.3s;
}

.SiteIcon a img:hover{
  transform: scale(1.05);
  opacity: 0.9;
}

/* Scroll buttons */
.scroll-btn {
  position: fixed;
  right: 20px;
  width:65px;
  background-color: white;
  color: black;
  border: 3px solid black;
  border-radius: 50%;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px #000000;
  z-index: 1000;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  opacity: 0; /* Hidden by default */
  visibility: hidden;
}



/* Button visibility when active */
.scroll-btn.show {
  opacity: 1;
  visibility: visible;
}

/* Button hover effect */
.scroll-btn:hover {
  transform: scale(1.025);
}

/* Top button position */
#scrollTopBtn {
  bottom: 240px;
  margin-bottom: 20px;
}

/* whatsApp button position */
#whatsAppBtn{
    bottom: 160px;
  margin-bottom: 20px;
}

/* Review button position */
#ReviewBtn {
  bottom: 80px;
  margin-bottom: 20px;
}

/* Bottom button position */
#scrollBottomBtn {
  bottom: 20px;
}

/* review pannel */

#reviewPanel {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background: white;
  transition: 0.4s;
  box-shadow: -5px 0 15px rgba(0,0,0,0.3);
  z-index: 9999;
  padding: 20px;
  overflow: scroll !important;
  border-radius: 15px;
  border: 5px solid black;
  
  /* FLEXBOX */
  display: flex;
  flex-direction: column;
}

/* Reviews List Container */
#reviewsList {
  flex: 1; /* Yeh remaining space le lega */
  height: auto;
  overflow-y: auto !important;
  margin-top: 10%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  min-height: 200px; /* Minimum height ensure karega */
}

/* Review Item Styling */
.reviewItem {
  padding: 12px;
  margin-bottom: 12px;
  background: white;
  border-radius: 8px;
  border-left: 4px solid rgb(12, 12, 70);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#reviewPanel.open{ right:0; }

.reviewHeader{ display:flex; justify-content:space-between; font-weight:bolder; }
.reviewHeader h2{ color:rgb(12,12,70); font-weight:bold; }
#closeReview{ margin-left: 50%;cursor:pointer; color:rgb(83,4,4); }
#closeReview:hover{ transform: scale(1.025); }

#reviewName,#reviewEmail{ 
  width:100%; 
  padding:8px; 
  cursor: pointer;
  margin-bottom:8px; 
  border: none; 
  border-bottom:2px solid rgb(156, 156, 156); 
  transition: background-size 0.4s ease;
  border-bottom: 1px solid rgb(109, 109, 109);
  background-image: linear-gradient(#000, #000);
  background-size: 0% 2px;
  background-position: bottom center;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease;
}

/* Stars default - dark gray */
.stars span { 
    color: rgb(87,87,87); 
    font-size: 35px;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Active stars - force yellow */
.stars span.active {
    color: #ffd700 !important;  /* ⭐ Force yellow */
    font-weight: bold;
}

/* Hover effect */
.stars span:hover {
    color: #ffd700 !important;
    transform: scale(1.1);
}

#reviewText{ height:15vh; border-radius:12px; }
#submitReview{ width:50%; height:8vh; border:5px solid black; border-radius:15px;margin-top: 5%;}
#submitReview:hover{ transform:scale(1.025); }

#loadMoreBtn{ width:50%; height:8vh; border:5px solid black; border-radius:15px;margin-top: 5%;}
#loadMoreBtn{ transform: scale(1.025); }

/* .reviewItem{ border-bottom:1px solid rgb(12,12,70); padding:5px 0; } */

.Popup_dialogueBox{
  width: 30%;
 position:fixed;
 top:20px;
 right:20px;
 background:black;
 color:white;
 padding:12px 18px;
 border-radius:10px;
 font-weight:bold;
 opacity:0;
 pointer-events:none;
 transition:0.4s;
 z-index:99999;
}

.Popup_dialogueBox.show{ opacity:1; pointer-events:auto; display:block;}

@media screen and (max-width: 524px) and (min-width: 330px) {

  #navbar{
    display: flex;
    width: 53vh;
  }

  .navbar-toggler{
    width: 50px;
    padding-top: 0%;
  }

  #navbarSupportedContent{
    text-align:justify;
    padding-left: 70%;
  }

  #bookNow{
    margin-left: 0%;
  }

  /* Adjust dropdown menu width */
  .dropdown-menu {
    text-align: center;
    font-size: medium;
    padding-top: 10px;
    width: 53vh; /* Make it full-width for smaller screens */
    background-color: white;
  }

  /* Submenus */
  .dropdown-menu .dropdown-menu {
    margin-left: 30%;
    text-align: left;
    position: relative; /* Make submenus inline */
    left: 0;
    width: 50%;
    height: 100%;
    background-color: white;
  }

  /* bottom ribbon */

  .InfoBlock{
    width: 100%;
    height: 100%;
    padding-left:0%;
    display: flex;
}

.infoblock{
  height: 100%;
  width: 100%;
  display: flex;
  margin-left: 0%;
  flex-direction: column;
}

#infoBlock{
  width: 100%;
}

.Logo{
  width: 30%;
  height: 13vh;
  margin-left: 65%;
  padding-top: 5%;
  display: flex;
}

.SiteIcon a img{
  width: 20px;
  transition: transform 0.5s, opacity 0.5s;
}

.SiteIcon a img:hover{
  transform: scale(2);
  opacity: 1.5;
}

}

@media screen and (min-width: 525px) and (max-width: 786px) {

  #navbar{
    display: flex;
    width: 74vh;
  }

  .navbar-toggler{
    width: 50px;
    padding-top: 0%;
  }

  #navbarSupportedContent{
    text-align:justify;
    padding-left: 80%;
  }

  #bookNow{
    margin-left: 0%;
  }

  /* Adjust dropdown menu width */
  .dropdown-menu {
    font-size: medium;
    padding-top: 10px;
    width: 53vh; /* Make it full-width for smaller screens */
    background-color: white;
  }

  /* Submenus */
  .dropdown-menu .dropdown-menu {
    position: relative; /* Make submenus inline */
    left: 0;
    width: 100%;
    background-color: white;
  }
 
  /* bottom ribbon */

.InfoBlock{
    width: 100%;
    height: 100%;
    padding-left:0%;
    display: flex;
}

.infoblock{
  height: 100%;
  width: 100%;
  display: flex;
  margin-left: 0%;
  flex-direction: column;
}

#infoBlock{
  width: 100%;
}

.Logo{
  width: 30%;
  height: 13vh;
  margin-left: 65%;
  padding-top: 5%;
  display: flex;
}

.SiteIcon a img{
  width: 20px;
  transition: transform 0.5s, opacity 0.5s;
}

.SiteIcon a img:hover{
  transform: scale(2);
  opacity: 1.5;
}
}

@media screen and (min-width: 789px) and (max-width: 900px) {

  .navbar-toggler{
    float: right;
    width: 50px;
    padding-top: 0%;
  }

  #navbarSupportedContent{
    text-align:justify;
    padding-left: 85%;
  }

  #bookNow{
    margin-left: 0%;
  }

  /* Adjust dropdown menu width */
  .dropdown-menu {
    font-size: medium;
    padding-top: 10px;
    width: 53vh; /* Make it full-width for smaller screens */
    background-color: white;
  }

  /* Submenus */
  .dropdown-menu .dropdown-menu {
    position: relative; /* Make submenus inline */
    left: 0;
    width: 100%;
    background-color: white;
  }

  /* bottom ribbon */

.InfoBlock{
    width: 100%;
    height: 100%;
    padding-left:0%;
    display: flex;
}

.infoblock{
  height: 100%;
  width: 100%;
  display: flex;
  margin-left: 0%;
  flex-direction: column;
}

#infoBlock{
  width: 100%;
}

.Logo{
  width: 30%;
  height: 13vh;
  margin-left: 65%;
  padding-top: 5%;
  display: flex;
}

.SiteIcon a img{
  width: 20px;
  transition: transform 0.5s, opacity 0.5s;
}

.SiteIcon a img:hover{
  transform: scale(2);
  opacity: 1.5;
}
}

@media screen and(min-width: 901px) and (max-width: 1200px) {

  .navbar-toggler{
    float: right;
    width: 50px;
    padding-top: 0%;
  }

  #navbarSupportedContent{
    width: 100%;
    text-align:justify;
    padding-left: 85%;
  }

  #bookNow{
    margin-left: 0%;
  }

  /* Adjust dropdown menu width */
  .dropdown-menu {
    font-size: medium;
    padding-top: 10px;
    width: 53vh; /* Make it full-width for smaller screens */
    background-color: white;
  }

  /* Submenus */
  .dropdown-menu .dropdown-menu {
    position: relative; /* Make submenus inline */
    left: 0;
    width: 100%;
    background-color: white;
  }

  /* bottom ribbon */

.InfoBlock{
    width: 100%;
    height: 50%;
    padding-left:0%;
    display: flex;
}

.infoblock{
  height: 100%;
  width: 50%;
  display: flex;
  margin-left: 0%;
  flex-direction: column;
}

#infoBlock{
  width: 100%;
  height: 80%;
}

.Logo{
  width: 30%;
  height: 13vh;
  margin-left: 65%;
  padding-top: 5%;
  display: flex;
}

.SiteIcon a img{
  width: 20px;
  transition: transform 0.5s, opacity 0.5s;
}

.SiteIcon a img:hover{
  transform: scale(2);
  opacity: 1.5;
}
}

@media screen and(min-width: 1201px)  {
  .container-fluid{
    padding-top: 0px;
    width: 78vh;
}

.navbar-collapse {
    display: none; /* Initially hidden */
  }

  .navbar-toggler {
    margin-left: 50%;
    width: 10vh;
    height: 10vh;
    display: block; /* Show the toggler button */
  }

  .navbar-toggler-icon {
    padding-right: 90px;
    margin-right: 80%;
    font-size: 80px;
    font-weight: bolder;
    text-align: center;
    color: black;
 }

  .navbar-collapse.show {
    display: flex;
    flex-direction: column; /* Stack links vertically */
  }

  /* Adjust dropdown menu width */
  .dropdown-menu {
    font-size: medium;
    padding-top: 10px;
    width: 53vh; /* Make it full-width for smaller screens */
    background-color: white;
  }

  /* Submenus */
  .dropdown-menu .dropdown-menu {
    position: relative; /* Make submenus inline */
    left: 0;
    width: 100%;
    background-color: white;
  }

  /* Navbar supported content */
  #navbarSupportedContent {
    margin-bottom: 10px;
    width: 100%;
  }

  #bookNow{
  width: 100px;
  height: 8vh;
  border-radius: 15px;
  padding-top: 5px;
  text-align: center;
  font-size: 50%;
  background-color: rgb(19, 19, 19);
  border: 2px solid rgb(121, 117, 117);
}

#bookNow:hover{
  box-shadow:  0 4px 12px #000000;
  background-color: rgb(61, 61, 61);
  font-weight: bold;
}

  /* bottom ribbon */

  .InfoBlock{
    width: 90vh;
    height: 90vh;
  }

.infoblock{
  height: 100%;
  width: 90vh;
}

.Logo{
  width: 25%;
  height: 13vh;
  margin-left: 75%;
  display: flex;
}

.SiteIcon a img{
  width: 75px;
  transition: transform 0.3s, opacity 0.3s;
}

.SiteIcon a img:hover{
  transform: scale(1.05);
  opacity: 0.9;
}

.bar{
  width: 100%;
}
}