
/* PREMIUM GLASS + SMOOTH HOLOGRAPHIC */

.icon_box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 35px 25px;
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  backdrop-filter: blur(6px);
}

/* ultra smooth light sweep */
.icon_box::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 250%;
  height: 250%;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 163, 123, 0.15),
    rgba(255, 255, 255, 0.25),
    rgba(255, 163, 123, 0.15),
    transparent 80%
  );
  transform: rotate(25deg);
  opacity: 0;
  transition: all 0.9s ease;
}

/* hover shine */
.icon_box:hover::before {
  opacity: 1;
  transform: rotate(25deg) translateY(120%);
}

/* main hover */
.icon_box:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.08),
    0 5px 15px rgba(255,163,123,0.25);
}


/* title animation */
.icon_box_title h2 {
  transition: all 0.3s ease;
}

.icon_box:hover .icon_box_title h2 {
  color: #ffa37b;
  letter-spacing: 0.5px;
}

/* text smooth fade */
.icon_box_text p {
  transition: all 0.3s ease;
}

.icon_box:hover .icon_box_text p {
  color: #444;
}





.main_nav ul li a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding-bottom: 5px;
}

/* underline create */
.main_nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #ffa37b;
  transition: width 0.3s ease;
}

/* hover effect */
.main_nav ul li a:hover::after {
  width: 100%;
}

/* active link underline */
.main_nav ul li.active a::after {
  width: 100%;
}

/* hover text color */
.main_nav ul li a:hover {
  color: #ffa37b;
}

/* Scroll Animation Base */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* जब दिखे */
.reveal.active {
  opacity: 1;
  transform: translateY(0px);
}


.btn_style{
  background: linear-gradient(135deg,#ffa37b,#ff7f50);
  box-shadow: 0 0 15px rgba(255,163,123,0.6);

  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

/* hover */
.btn_style:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

/* click */
.btn_style:active{
  transform: scale(0.95);
}

/* shine effect */
.btn_style::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.btn_style:hover::before{
  left: 100%;
}


/*************
    form
*************/  

.booking_modal{
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.booking_box{
  background:#fff;
  padding:30px;
  width:400px;
  border-radius:15px;
  position:relative;
  animation:pop 0.3s ease;
}

@keyframes pop{
  from{transform:scale(0.8);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

.booking_box h2{
  text-align:center;
  margin-bottom:20px;
}

.booking_box input,
.booking_box select{
  width:100%;
  padding:10px;
  margin:8px 0;
  border:1px solid #ddd;
  border-radius:8px;
}

.booking_box button{
  width:100%;
  padding:12px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}

.close_btn{
  position:absolute;
  right:15px;
  top:10px;
  font-size:22px;
  cursor:pointer;
}