:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --dark-color: #292F36;
    --light-color: #F7FFF7;
}

/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    background-color: #c77117;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 6px;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* DROPDOWN */
.dropdown-menu {
    background-color: var(--dark-color);
}

.dropdown-item {
    color: var(--light-color);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

/* HERO SECTION */
.hero-section {
    /*width: 100%;*/
    /*height: 520px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;

    /*background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),*/
    /*url('http://dekhobanaras.org.in/img/Dekho%20Banaras.png');*/

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3.3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #fff;
    opacity: .96;
    margin-bottom: 20px;
}

/* BUTTON */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
}

/* SECTION TITLE */
.section-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* CARDS */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    transition: .3s ease;
    overflow: hidden;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-8px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-weight: 600;
    color: var(--dark-color);
}

.card-text {
    color: #6c757d;
}

/* ICON FEATURES */
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* TESTIMONIAL */
.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    margin: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #6c757d;
}

.testimonial-author {
    font-weight: 600;
    margin-top: 20px;
    color: var(--dark-color);
}

/* FOOTER */
footer {
    background-color: #09316c;
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    color: #adb5bd;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    margin-right: 15px;
    color: white;
    font-size: 1.5rem;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    margin-top: 30px;
}

/* RESPONSIVE HERO FIX */
@media (max-width: 991px) {
    .hero-section {
        height: 72vh;
        min-height: 420px;
        padding: 0 14px;
    }
}

/* SMALL MOBILE */
@media (max-width: 420px) {
    .hero-section {
        height: 68vh;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* iPhone Notch / iOS Safari Safe Area */
@supports(padding:max(0px)) {
    body {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
}

/* CHAT WIDGET */
#chatWidget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
}

#chatToggle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg,#ff7a59,#ff5252);
  border-radius: 50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  cursor:pointer;
  font-size: 22px;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
}

#chatBox {
  display: none;
  flex-direction: column;
  width: 360px;
  max-width: calc(100vw - 24px);
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:0 10px 32px rgba(0,0,0,.18);
  background: #fff;
}

#chatHeader {
  background: linear-gradient(90deg,#ff7a59,#ff5252);
  padding: 12px 14px;
  color: #fff;
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

#chatMessages {
  padding: 12px;
  height: 220px;
  overflow-y: auto;
  background: #fbfbfb;
}

.msg {
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 14px;
  font-size: 14px;
  max-width: 80%;
  line-height: 1.3;
}

.msg.user {
  background: #ffedd9;
  margin-left: auto;
}

.msg.bot {
  background: #fff;
  border: 1px solid #eee;
}

#chatActions {
  padding: 12px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 8px;
}

#chatInput {
  flex: 1;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 8px 10px;
}

.btn-mini {
  background: linear-gradient(135deg,#ff7a59,#ff5252);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

/* CHAT FULL RESPONSIVE */
@media (max-width: 480px) {
  #chatBox {
    width: 92vw;
    right: 50%;
    transform: translateX(50%);
    bottom: 85px;
  }
  #chatWidget {
    right: 10px;
    bottom: 10px;
  }
}
  /* Hero Banner */
.hero-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Main Slider Images */
#placeCarousel .carousel-item img {
  height: 330px;         /* your required height */
  width: 100%;
  object-fit: cover;     /* crop extra & fit nicely */
  border-radius: 10px;
}

/* Thumbnails Fix */
.img-thumbnail {
  height: 65px;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  padding: 0;
}

/* For equal thumbnail width */
.d-flex.gap-2 img {
  flex: 1;
}

/* Amenities Card Style */
section.bg-light .p-3 {
  background: #fff;
  transition: 0.3s;
}
section.bg-light .p-3:hover {
  background: #f8ede3;
  transform: scale(1.05);
}

/* Mobile Responsive Fix */
@media(max-width: 768px) {
  #placeCarousel .carousel-item img {
    height: 220px;
  }
  .img-thumbnail {
    height: 55px;
  }
}
.provider-card {
  background: #fff;
  transition: 0.3s;
  border: 1px solid #eee;
}

.provider-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.provider-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
}
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.whatsapp-float i {
  line-height: 30px;
}
.whatsapp-float:hover {
  background: #1ebc57;
  color: #fff;
}
      .testimonial-card {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            padding: 30px;
            margin: 10px;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .testimonial-text {
            font-size: 18px;
            font-style: italic;
            color: #555;
            line-height: 1.6;
        }

        .testimonial-author {
            margin-top: 15px;
            font-weight: bold;
            color: #333;
            font-size: 16px;
        }

        .carousel-item {
            padding: 30px 0;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: rgba(0,0,0,0.5);
            border-radius: 50%;
            padding: 15px;
        }
        
        /* Slider indicators */
        .carousel-indicators {
            bottom: -50px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }
        
        .section-title {
            color: #2c3e50;
            margin-bottom: 40px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        