 body{background:#ebdfdb}
    .top-bar {
      background-color: #d11919; /* Red bar */

      font-size: 14px;
    }
    .main-navbar {
      background-color: #16182c; /* Dark navy */

    }
    .main-navbar a,
    .main-navbar button {
      color: white;
    }
	
	  .main-navbar a:hover{color:#ff0000}
	

    .brand-title {
      font-size: 1.5rem;
      font-weight: bold;
    }
    .brand-subtitle {
      font-size: 0.8rem;
      color: #ccc;
      margin-top: -6px;
    }
	
	/* banner-section*/
	
.banner-content {
    background: linear-gradient(145deg, #1b1f3db5, #ce1212a8, hsl(232.94deg 38.64% 17.25% / 61%));
	    text-align: justify;
    text-transform: uppercase;

}
	
	.banner-section {
  height: auto;
  overflow: hidden;
}

.banner-image {
  object-fit: cover;
  height: 100%;
  max-height: 500px;
}

.banner-section {
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.banner-content {
  color: #fff;
}

@media (max-width: 768px) {
  .banner-section {
    height: auto;
    padding: 40px 20px;
  }
  
  .banner-content {
    margin-left: 0;
  }
}

.ad-btn {
  background-color: #1b1f3d;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(27, 31, 61, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ad-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #ce1212, #1b1f3d);
  transition: width 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.ad-btn:hover::before {
  width: 100%;
}

.ad-btn:hover {
  color: #fff;
  box-shadow: 0 6px 16px rgba(206, 18, 18, 0.4);
}

/* search */


 .search-bar {
      background-color: #640000; /* Dark Red */
      padding: 10px 0;
    }
    .search-label {
      color: white;
      font-weight: bold;
      margin-right: 15px;
      white-space: nowrap;
    }
.search-bar select {
    background-color: #f4f4f4;
    color: #ff0000;
    border: none;
    padding: 8px;
    border-radius: 4px;
}
    .search-bar select:focus {
      outline: none;
      box-shadow: none;
    }
.search-bar .btn-go {
    background-color: #ffe5e5;
    color: #ff0000;
    font-weight: bold;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
}
    .search-bar .btn-go:hover {
      background-color: #666;
    }

/* search end*/

/*profile-card sectio start*/
.sidebar {
      background-color: #fff;
      padding: 20px;
      border-radius: 5px;

    }
   
   /*sidebar*/

.sidebar {
  border: 1px solid #f5c2c2; /* soft red border */
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
}

.filter-title {
  font-size: 16px;
  font-weight: 600;
  color: #cc4b4b; /* soft red text */
  border-bottom: 1px solid #f5c2c2;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

.filter-section .form-check {
  margin-bottom: 10px;
}

/* ✅ Checkbox: Soft Red Theme */
.form-check-input {
  width: 1.2em;
  height: 1.2em;
  border: 2px solid #cc4b4b;
  cursor: pointer;
  margin-top: 3px;
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background-color: #cc4b4b;
  border-color: #cc4b4b;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 75, 75, 0.25);
}

/* ✅ Label styling */
.form-check-label {
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}

.form-check-label:hover {
  color: #cc4b4b;
}

/* ✅ Checked label */
.form-check-input:checked + .form-check-label {
  background-color: #ffecec;
  color: #cc4b4b;
  border-radius: 4px;
  padding: 2px 6px;
  font-weight: 500;
}


   .city-link {
  display: block;
  padding: 6px 10px;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.city-link:hover {
  background-color: #ffecec;
  color: #cc4b4b;
  padding-left: 14px;
}

   
   /*sidebar end*/
   
 .profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.profile-card {
  background-color: white;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* ✅ Zoom effect on image only */
.profile-img {
  overflow: hidden; /* Important for image zoom cropping */
  position: relative;
}

.profile-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.profile-card:hover .profile-img img {
  transform: scale(1.08);
}

.featured-ribbon {
  position: absolute;
  top: 15px;
  left: -40px;
  width: 150px;
  background: black;
  color: white;
  text-align: center;
  transform: rotate(-45deg);
  font-size: 13px;
  font-weight: bold;
  padding: 3px 0;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.photo-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: black;
  color: white;
  padding: 5px;
  border-radius: 3px;
}

.profile-content {
  position: relative;
}

.profile-content p {
  margin-bottom: 2px;
}

.availability {
  background-color: #f8f1ec;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 0px;
  font-size: 12px;
  letter-spacing: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  text-align: center;
}
 
/*profile-card sectio end*/	

.content-section h4 {
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
  font-size: 1.25rem;
}

.content-section p {
  line-height: 1.8;
  font-size: 1rem;
}


.review-section h5 {
  font-weight: bold;
  margin-bottom: 0;
}

.review-section h6 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.bio-text{text-align:justify;}


/* profile page */

.main-slider {
    width: 86%;
    margin: 15px auto 0px auto;
    max-width: 100%;
}
.main-slider img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  cursor: pointer;
}
.slick-slide {
  padding: 5px;
}


/* ext section of profile */

  /* Profile Card */
    .esc-profile-card {
      background: #1a1a1a;
      border-radius: 12px;
      padding: 20px; color:#fff;
      margin-bottom: 20px;
    }

    /* Rates Card */
    .esc-rates-card {
      background: #1a1a1a;
      border-radius: 12px;
      padding: 20px;
	      color: #fff;
    }

    /* Avatar */
    .esc-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
    }

    /* Top Badge */
    .esc-top-badge {
      background: #222;
      border-radius: 12px;
      padding: 12px;
      margin-top: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .esc-top-badge i {
      color: crimson;
    }

    /* Details Section */
    .esc-details p {
      margin-bottom: 6px;      /* spacing between rows */
      font-size: 0.95rem;      /* font size */
      display: flex;           /* keep label and value in line */
      color: #fff;             /* text color */
    }
    .esc-details p strong {
      min-width: 120px;        /* fixed width for labels */
      font-weight: 600;        /* bold labels */
      color: #fff;             /* white labels */
    }

    /* Divider */
    .esc-divider {
      border-top: 1px solid #333;
      margin: 20px 0;
    }

    /* Rating */
    .esc-rating {
      font-size: 1rem;
      color: gold;
    }

    /* Rates List (ul-li instead of table) */
    .esc-rates-list {
      list-style: none;
      margin: 0;
      padding: 0;
      border-radius: 8px;
      overflow: hidden;
    }
    .esc-rates-list li {
      display: flex;
      justify-content: space-between;
      padding: 10px;
      border-top: 1px solid #333;
      color: #ddd;
    }
    .esc-rates-list li span {
      flex: 1;
      text-align: center;
    }
    .esc-rates-list .esc-rates-header {
      background: #222;
      font-weight: 600;
      color: #fff;
    }

    /* Book Button */
    .esc-btn-book {
      background: #8b3a3a;
      border: none;
      padding: 12px;
      border-radius: 8px;
      color: #fff;
      width: 100%;
      font-size: 1rem;
    }
    .esc-btn-book:hover {
      background: #a44a4a;
    }

/* text section of profile */







/* profile page end*/


/* blog */

   /* Blog Card */
    .blog-card {
      background: #1a1a1a;
      border: 1px solid #333;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 4px 15px rgba(0,0,0,0.6);
    }
    .blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .blog-card-body {
      padding: 15px;
    }
    .blog-card-body h5 {
      color: #fff;
      margin-bottom: 8px;
    }
    .blog-card-body p {
      color: #aaa;
      font-size: 0.9rem;
    }
    .blog-btn {
      display: inline-block;
      margin-top: 10px;
      background: #8b3a3a;
      color: #fff;
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 0.9rem;
      text-decoration: none;
      transition: background 0.3s;
    }
    .blog-btn:hover {
      background: #a44a4a;
    }

/* blog */

/* blog-detaisl */

   /* Blog Content */
    .blog-details-card {
      background: #1a1a1a;
      border: 1px solid #333;
      border-radius: 12px;
      padding: 20px; text-align:justify;
    }
    .blog-details-card img {
      border-radius: 10px;
      margin-bottom: 20px;
      width: 100%;
      height: auto;
    }
    .blog-details-card h1 {
      color: #fff;
      margin-bottom: 15px;
    }
    .blog-details-card p {
      color: #aaa;
      line-height: 1.7;
    }

    /* Sidebar */
    .sidebar-box {
      background: #1a1a1a;
      border: 1px solid #333;
      border-radius: 12px;
      padding: 15px;
      margin-bottom: 20px;
    }
    .sidebar-box h5 {
      color: #fff;
      border-bottom: 1px solid #333;
      padding-bottom: 8px;
      margin-bottom: 15px;
    }
    .sidebar-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .sidebar-box ul li {
      padding: 8px 0;
      border-bottom: 1px solid #222;
      font-size: 0.95rem;
      color: #aaa;
      transition: color 0.3s;
    }
    .sidebar-box ul li:last-child {
      border-bottom: none;
    }
    .sidebar-box ul li:hover {
      color: #fff;
      cursor: pointer;
    }

    /* Tags or Meta Info */
    .blog-meta {
      font-size: 0.85rem;
      color: #999;
      margin-bottom: 15px;
    }

/* blog-detaisl */


/*footer css start*/
.footer-link {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #0d6efd; /* Bootstrap primary blue */
  padding-left: 6px;
}

.social-icon {
  font-size: 1.2rem;
  color: #ddd;
  transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
  transform: scale(1.3);
  color: #0d6efd; /* Blue on hover */
}

.footer input::placeholder {
  color: #999;
}

.tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.tag:hover {
  background: red; /* Blue background on hover */
  color: #fff;
}

/* login */

   .login-card {
      background: #1a1a1a;
      border: 1px solid #333;
      border-radius: 12px;
      padding: 30px;
      width: 100%;
      max-width: 400px;
      box-shadow: 0 0 15px rgba(0,0,0,0.6);
    }

    .login-card h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #fff;
    }

    .form-control {
      background: #111;
      border: 1px solid #333;
      color: #fff;
    }

    /* ✅ White placeholder */
    .form-control::placeholder {
      color: #fff;
      opacity: 0.7; /* हल्का सा transparency */
    }

    .form-control:focus {
      background: #111;
      border-color: #555;
      color: #fff;
      box-shadow: none;
    }

    .btn-login {
      background: #d11919;
      color: #fff;
      border: none;
      padding: 10px;
      border-radius: 8px;
      width: 100%;
      transition: 0.3s;
    }
    .btn-login:hover {
      background: #e6006e;
    }

    .login-links {
      text-align: center;
      margin-top: 15px;
      font-size: 0.9rem;
    }

    .login-links a {
      color: #aaa;
      text-decoration: none;
    }
    .login-links a:hover {
      color: #fff;
    }
	
	
	
	 .register-card {
      background: #1a1a1a;
      border: 1px solid #333;
      border-radius: 12px; color:#fff;
      padding: 30px;
      width: 100%;
      max-width: 450px;
      box-shadow: 0 0 15px rgba(0,0,0,0.6);
    }

   .register-card {
      background: #1a1a1a;
      border: 1px solid #333;
      border-radius: 12px;
      padding: 40px;
      width: 100%;
      max-width: 700px; /* ✅ wider */
      box-shadow: 0 0 15px rgba(0,0,0,0.6);
    }

    .register-card h2 {
      text-align: center;
      margin-bottom: 30px;
      color: #fff;
    }

    .form-control {
      background: #111;
      border: 1px solid #333;
      color: #fff;
      padding: 14px; /* ✅ bigger input height */
      font-size: 1rem;
    }

    /* ✅ White placeholder */
    .form-control::placeholder {
      color: #fff;
      opacity: 0.7;
    }

    .form-control:focus {
      background: #111;
      border-color: #555;
      color: #fff;
      box-shadow: none;
    }

.btn-register {
    background: #d11919;
    color: #fff;
    border: none;
    padding: 10px 10px;
    font-size: 1.1rem;
    border-radius: 8px;
    width: 100%;
    transition: 0.3s;
}
    .btn-register:hover {
      background: #e6006e;
    }

    .register-links {
      text-align: center;
      margin-top: 20px;
      font-size: 0.95rem;
    }

    .register-links a {
      color: #aaa;
      text-decoration: none;
    }
    .register-links a:hover {
      color: #fff;
    }
	
/* Breadcrumb */
    .breadcrumb {
      background: transparent;
      padding: 0;
      margin: 20px 0;
    }
    .breadcrumb-item a {
      color: #aaa;
      text-decoration: none;
    }
    .breadcrumb-item a:hover {
      color: #fff;
    }
    .breadcrumb-item.active {
      color: #fff;
    }

/*footer css end*/


.navbar-toggler-icon {
  background-image: none; 
  width: 24px;
  height: 2px;
  background-color: red; 
  position: relative;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: red;
  position: absolute;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -6px;
}
.navbar-toggler-icon::after {
  top: 6px;
}


	.brand-title img{max-width:140px; padding:1px 0;}

/* 0px – 576px (Extra small devices = mobiles) */
@media (max-width: 576px) {
	.brand-title img{max-width:110px;}
	
	    .m-none, .top-bar {
        display: none;
    }
	
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 577px – 768px (Small devices = landscape phones) */
@media (min-width: 577px) and (max-width: 768px) {
	
	 .m-none, .top-bar {
        display: none;
    }
	
	
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 769px – 992px (Medium devices = tablets) */
@media (min-width: 769px) and (max-width: 992px) {
  .profile-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 993px – 1200px (Large devices = desktops) */
@media (min-width: 993px) and (max-width: 1200px) {
  .profile-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 1201px+ (Extra large devices = big desktops) */
@media (min-width: 1201px) {
  .profile-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}