body{
    font-family: 'Geologica', sans-serif;

  
}

header {
  position: sticky;
  top: 0;
  z-index: 1000; /* Higher than dropdowns or content */
  background-color: #fff; /* Ensures it doesn't go transparent */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Optional: adds depth */
}
.header-container {
  display: flex;
  align-items: center;
}

/* Logo stays on the left */
.header-logo-wrapper {
  flex: 0 0 auto;
}
   html,body{
       overflow-x: hidden;
    }

.header-nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: -5px;
  position: relative;
}

.header-nav {
  display: flex;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Geologica', sans-serif;
  font-size: 15px;
}

.header-nav li {
  display: flex;
  align-items: center;
}

.header-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #2e1a7c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Geologica', sans-serif;
  font-size: 15px;
  margin: 0;
}

/* Hide hamburger by default */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  font-family: 'Geologica', sans-serif;
  margin-right: 20px;
}

/* Responsive styles for screen <= 992px */
@media (max-width: 992px) {
  .header-nav {
    display: none;
    flex-direction: column;
     align-items: center;
    background: white;
    position: absolute;
    top: 57px;
    right: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 8px;
    z-index: 999;
    width: 100%;
  }

  .header-nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .header-nav-wrapper {
    justify-content: flex-end;
  }
}




/* banner */
     .about-banner {
  position: relative;
  background: url('./bookingimg/booking-banner.png') no-repeat center center / cover;
  min-height: 380px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.about-banner .overlay-box {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px 30px;
  max-width: 100%;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

.about-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
 
  clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
  z-index: 2;
}

.about-content {
  position: relative;
  z-index: 3;
}

.breadcrumb-custom {
  font-weight: 300;
  font-size: 1rem;
  color: white;
  background: transparent;
  padding: 0;
}

.breadcrumb-custom a {
  color: white;
  text-decoration: none;
}

.breadcrumb-custom .active {
  font-weight: bold;
  color: white; /* Light color for active item */
}

.breadcrumb-custom a:hover {
  text-decoration: none;
}
/* our booking */
   .section-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }

        .section-description {
            font-size: 18px;
            color: #777;
            line-height: 1.6;
        }

        .section-wrapper {
            padding: 60px 0;
        }

/*tab-list*/


        .nav-tabs {
            border-bottom: 2px solid #e9ecef;
            background: white;
            margin: 0;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 0;
            display: flex;
            justify-content: space-around;
           
        }
        
        .nav-tabs .nav-link {
            width: 100%;
            border: none;
            max-width: 500px;  
            color: #6c757d;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 15px 40px;
            background: transparent;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        
        .nav-tabs .nav-link:hover {
            border-color: transparent;
            color: #495057;
        }
        
        .nav-tabs .nav-link.active {
            color: #6f42c1;
            background: transparent;
            border-color: transparent;
            border-bottom: 3px solid #6f42c1;
            font-weight: 600;
        }
        
        .tab-content {
            margin-top: 30px;
            text-align: left;
        }
        
        .tab-pane {
            padding-top: 30px;
            background: white;
            
         
        }
        
        .booking-center-card {
             box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 25px;
            height: 100%;
            position: relative;
            border-radius: 8px;
        }
        
        .center-title {
            color: #495057;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .center-divider {
            width: 40px;
            height: 3px;
            background: #6f42c1;
            margin-bottom: 20px;
        }
        
        .section-label {
            color: #adb5bd;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: block;
            margin-bottom: 8px;
        }
        
     .address-text,
.phone-text {
  color: #495057;
  font-weight: 500;
  line-height: 1.5;
}

        
        .bottom-accent {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: #6f42c1;
               
            border-radius: 0 0 8px 8px;
        }