
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/


.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1, h2, h3, .h1, .h2, .h3 {
    font-weight: 400 !important;
    font-family: 'Playball', cursive !important;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 600 !important;
    font-family: 'Open Sans', sans-serif !important;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.wow,
.animated {
    animation-duration: 2s !important;
}


/*** Button Start ***/
.btn.btn-primary {
    border: 0;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*** Button End ***/


/*** Navbar Start ***/
 /* Top Bar */
  .top-bar {
    background-color: #64032d;
    color: white;
    padding: 10px 0;
  }

  .top-bar span {
    font-size: 12px;
    font-weight: 600;
    margin-right: 20px;
  }

  .search-box input {
    border-radius: 5px;
    padding: 8px 10px;
    width: 100%;
    border: 1px solid #ccc;
    margin-bottom: 20px;
  }

  .mega-menu h6 {
    color: #e91e63;
    font-weight: bold;
  }

  .custom-city-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    border-radius: 4px;
    padding: 2px 5px;
    background-color: #f8f9fa;
    cursor: pointer;
    user-select: none;
  }

  .mega-dropdown {
    position: static;
  }

  .mega-dropdown .mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 60vw;
    background-color: #fff;
    z-index: 1000;
    padding: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  /* Show mega menu on hover - Desktop only */
  @media (min-width: 992px) {
    .mega-dropdown:hover > .mega-menu {
      display: block;
    }
  }

  .dropdown-item {
   font-size: 13px;
    padding: 4px 5px;
    color: #333;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
    display: block;
    text-decoration: none;
    font-weight: 600;
    font-size: smaller;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background-color: #f8f9fa;
    color: #000;
    border-radius: 4px;
  }

  .nav-item .dropdown-toggle::after {
    display: none;
  }

  .nav-bar {
    background: var(--bs-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-weight: 600;
    font-size: 17px;
    transition: 0.5s;
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
  }

  .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
  }

.venues-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
}

.venues-content a {
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  margin: 10px auto;
  color: #000; /* Optional: make it more readable */
  text-decoration: none;
}

.venues-content a:hover {
  color: #007bff;
  text-decoration: underline;
}


  /* Dropdown animation desktop */
  @media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
      display: block;
      visibility: hidden;
      top: 100%;
      transform: rotateX(-75deg);
      transform-origin: 0% 0%;
      transition: 0.5s;
      opacity: 0;
      pointer-events: none;
    }

    .navbar .nav-item:hover .dropdown-menu {
      transform: rotateX(0deg);
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
    }
  }

  /* Dropdown hover color */
  .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
  }

  /* Search modal style */
  #searchModal .modal-content {
    background-color: rgba(255, 255, 255, 0.95);
  }

  /* Responsive Styles */
  @media (max-width: 991.98px) {
    /* Top bar span smaller */
    .top-bar span {
      display: block;
      margin: 5px 0;
      font-size: 11px;
    }

    .custom-city-btn {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    /* Mega menu dropdown positioning for mobile */
    .mega-menu {
      position: static !important;
      box-shadow: none;
      padding: 15px 10px;
      width: 100% !important;
    }

    /* Allow rows inside mega menu to wrap and stack nicely */
    .mega-menu .row {
      flex-wrap: wrap !important;
    }

    .dropdown-item {
      font-size: 14px;
      padding: 10px 10px;
    }

    /* Disable desktop hover effect for mega menu dropdown */
    .mega-dropdown .mega-menu {
      display: none !important;
    }

    /* Show mega-menu only when active */
    .mega-dropdown.active > .mega-menu {
      display: block !important;
    }

    /* Navbar dropdown menus should behave as accordions */
    .navbar .nav-item .dropdown-menu {
      display: none !important;
      position: static !important;
      opacity: 1 !important;
      visibility: visible !important;
      transform: none !important;
      box-shadow: none !important;
      border: none !important;
      padding-left: 15px;
      margin-top: 0;
    }

    .navbar .nav-item.active > .dropdown-menu {
      display: block !important;
    }

    /* Navbar toggler style */
    .navbar-collapse {
      background: var(--bs-light);
      padding: 10px 15px;
      border-radius: 6px;
    }

    /* Make nav links full width on mobile */
    .navbar-nav .nav-link {
      padding-left: 0;
      padding-right: 0;
      font-size: 16px;
      width: 100%;
      border-bottom: 1px solid #ddd;
    }

    /* Remove border from last nav-link */
    .navbar-nav .nav-link:last-child {
      border-bottom: none;
    }
  }
/*** Navbar End ***/
/***Hero Start ***/
    .hero-section {
       background: linear-gradient(to top, rgba(15, 15, 15, 0.758), rgba(253, 253, 253, 0.553)), 
            url("../../front-end/imges/main.jpg") no-repeat center center;
        background-size: cover;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }

    .main-text-hero {
        width: 100%;
        bottom: 0px;
    }

    .hero-search-box{
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        padding: 15px;
        display: flex;
        gap: 10px;
        align-items: center;
        max-width: 900px;
        margin: 20px auto;
        flex-wrap: wrap;
    }

    .hero-search-box select,
    .hero-search-box button {
        height: 50px;
        border: none;
        padding: 0 15px;
        border-radius: 5px;
        font-size: 16px;
    }

    .hero-search-box select {
        flex: 1;
        background: #f1f1f1;
        color: #333;
    }

    .hero-search-box button {
        background-color: #f50057;
        color: white;
        font-weight: bold;
        padding: 0 25px;
        transition: background 0.3s;
    }

    .hero-search-box button:hover {
        background-color: #c51162;
    }

    .popular-searches {
        margin-top: 15px;
        color: #fff;
        font-size: 16px;
    }

    .popular-searches b {
        font-weight: bold;
    }

    .popular-searches a {
       color: #fff;
    text-decoration: none;
    margin: 0 0px;
    font-size: 13px;
    line-height: normal;
    letter-spacing: 0px;
    font-weight: 600;

    }

    @media (max-width: 768px) {
        .search-box {
            flex-direction: column;
        }

        .search-box select,
        .search-box button {
            width: 100%;
        }
    }
/***Hero End ***/
/* --- Carousel Arrows --- */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-prev-btn,
.owl-next-btn {
  font-size: 14px;
  color: #09090a;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 50%;
  padding: 4px 7px;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.owl-prev-btn:hover,
.owl-next-btn:hover {
  color: rgb(18, 18, 18);
}

/* --- Fixed Image Size --- */
.popular-item {
  overflow: hidden;
  position: relative;
}

.popular-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease-in-out; /* smooth animation */
}

.popular-item:hover img {
  transform: scale(2.1); /* zoom in */
}
/* Optional: Constrain overall carousel height */
.popular-item {
  height: 100%;
}

.popular-content a{
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}
/* --- Carousel Arrows  end--- */


/*** start Start ***/

  .category-card {
    position: relative;
    color: #333;
    overflow: hidden;
    padding: 20px;
    min-height: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.096);
  }
  .category-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: ellipse(50% 100% at 100% 50%);
  }
  .category-title {
    font-size: 19px;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-style: normal;
  }
  .category-sub {
    font-size: 1rem;
    color: #555;
  }

  /* Icon styling */
  .toggle-icon {
    cursor: pointer;
    font-size: 19px;
    transition: transform 0.6s ease;
    display: inline-block;
    font-weight: bold;
  }
  /* Add class for 360 rotation */
  .rotate-360 {
    animation: rotate180 0.6s linear forwards;
  }
  @keyframes rotate180 {
    from {transform: rotate(0deg);}
    to {transform: rotate(180deg);}
  }

  /* Background colors */
  .bg-blue { background-color: #dee3ff; }
  .bg-peach { background-color: #fbe0cd; }
  .bg-pink { background-color: #e5b4b0; }
  .bg-lightblue { background-color: #dfe6ff; }
  .bg-orange { background-color: #ffc49b; }
  .bg-beige { background-color: #dcd9c3; }
  

  /* Hidden section styling */
.hide-section {
  margin-top: 10px;
  padding: 15px 20px;
  background: #f9f9f9;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  color: #444;
  width: 100%;
  font-family: Arial, sans-serif; 
}

/* Remove bullets and set grid */
.hide-section ul {
  list-style: none;         
  padding-left: 0;           
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px;            
}

.hide-section ul li {
  padding: 5px 0;
}
.hide-section ul li a{
  font-size: 14px;
    font-weight: 500;
    color: #000;
    font-style: normal;
}

/* Responsive: on small screens show 2 columns */
@media (max-width: 576px) {
  .hide-section ul {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on phones */
  }
}

/* Make sure hidden section is full width and aligned */
.col-md-6 {
  position: relative;
}

.hide-section.col-md-12 {
  position: relative;
  left: 0;
  right: 0;
}

/*** faq end ***/
/*** Services start ***/
.service-card {
     border: 17px solid #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      height: 100%;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .service-content {
      padding: 25px;
      text-align: center;
    }

    .service-title {
      font-weight: bold;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .service-desc {
      color: #555;
      margin-bottom: 20px;
    }

    .know-more-btn {
    background-color: #ffffff;
    color: #191717;
    border: 1px solid;
    padding: 10px 30px;
    transition: background-color 0.3s ease;
    }

    .know-more-btn:hover {
      background-color: #e91e63;
      color: #fff;
    }
/*** Services end ***/
/*** Stories start ***/
.Stories-item{
    border: 17px solid #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}
.Stories-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease; /* Smooth zoom effect */
}

/* Responsive height for smaller screens */
@media (max-width: 768px) {
    .Stories-item img {
        height: 30vh;
    }
}

/* Zoom on hover */
.Stories-item:hover img {
    transform: scale(2.1); /* Zoom in */
}

/*** Stories end ***/


/***gallery  Events Start ***/
 .event-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.event-img img:hover {
    transform: scale(1.1);
}
.event .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(212, 167, 98, 0.7);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}
/*** gallery Events End ***/


/*** service start ***/
.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: var(--bs-primary);
    border-radius: 8px;
    transition: 1s;
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-item:hover .service-content-icon i {
    color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}
  .venue-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: repeat(2, 1fr);
        gap: 8px;
    }

    .venue-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .grid-large {
        grid-row: span 2;
    }

    .grid-overlay-btn {
        position: relative;
    }

    .grid-overlay-btn a {
        position: absolute;
        bottom: 11px;
        left: 38%;
        transform: translateX(-50%);
        background: #aca4a4;
        border: none;
        padding: 4px 11px;
        font-weight: 100;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgb(0 0 0 / 6%);
        color: #fff;
        font-size: 13px;
        font-style: oblique;
    }

    .venue-info-box {
        background: #fff;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .info-pill {
        padding: 10px 14px;
        border: 1px solid #eee;
        border-radius: 12px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .btn-action {
        background: #b91c1c;
        color: #fff;
        font-weight: 600;
        border-radius: 8px;
        padding: 10px 18px;
        border: none;
        width: 100%;
    }

    .tag-new {
        background-color: #cce5ff;
        color: #004085;
        font-size: 12px;
        padding: 3px 10px;
        border-radius: 8px;
    }

    .promo-text {
        color: red;
        font-weight: 500;
        font-size: 0.9rem;
    }

    .btn-icon {
        border: 1px solid #ccc;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #b91c1c;
    }

    .nav-tab-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 24px;
    }

    .nav-tab-buttons a {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 20px;
        padding: 6px 16px;
        font-weight: 500;
    }

    .about-content {
        font-size: 16px;
        line-height: 24px;
        text-align: justify;
        color: #757272;
        max-height: 200px;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .about-content.expanded {
        max-height: 1000px;
    }

    .toggle-button {
        margin-top: 10px;
        display: inline-block;
        cursor: pointer;
        color: blue;
        text-decoration: underline;
    }
/*** servies end ***/
/*** venues start ***/
 .city-circle img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        transition: transform 0.3s;
    }

    .city-circle img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .vendor-card {
        border: 1px solid #eee;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
        overflow: hidden;
        background: #fff;
    }

    .vendor-card:hover {
        transform: translateY(-5px);
    }

    .vendor-img {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }

    .tag-handpicked {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: #ec4899;
        color: #fff;
        padding: 4px 10px;
        font-size: 12px;
        border-radius: 3px;
        font-weight: bold;
        z-index: 1;
    }

    .icon-text {
        font-size: 14px;
        color: #6c757d;
    }

    .thumbnail-img {
        width: 60px;
        height: 50px;
        object-fit: cover;
        cursor: pointer;
        border-radius: 5px;
        margin-right: 10px;
        transition: transform 0.2s;
    }

    .thumbnail-img:hover {
        transform: scale(1.05);
        border: 2px solid #ec4899;
    }

    .thumbnail-scroll {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .thumbnail-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .thumbnail-scroll::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }
  
.venues-type-section{
border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 10px;
}
.venues-type {
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.city-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ddd;
    margin-bottom: 10px;
}

.venues-type a {
    text-decoration: none;
     color: #0f1010;
    font-weight: 600;
    font-size: 12px;
    font-style: normal;
}

.venues-type a:hover {
    text-decoration: underline;
}

/*** venues End ***/


/*** Menu Start ***/
.menu .nav-item a.active {
    background: var(--bs-primary) !important;
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}
/*** Menu End ***/


/*** trending vendoers start ***/
 /* Container styling */
.trending-item {
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image wrapper */
.trending-item .overflow-hidden {
    width: 100%;
    height: 250px; /* Adjust as needed */
    overflow: hidden;
    border-radius: 10px;
}

/* Image styling */
.trending-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Hover effects */
.trending-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(227, 219, 219, 0.1);
    text-decoration: none;
}

.trending-item:hover img {
    transform: scale(1.05);
}

/* Content styling */
.trending-content {
    padding: 7px;
    text-align: left;
}

.trending-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.trending-content p {
  font-size: 13px;
    font-weight: 600;
    color: #978d8d;
}
.trending-content span {
     font-size: 14px;
    font-weight: 900;
    color: #ec3e3e;
}
/*** trending vendoers End ***/


/*** Blog Start ***/
.blogs-item {
    position: relative;
}

.blogs-item img {
    transition: 0.5s;
}

.blogs-item:hover img {
    transform: scale(1.3)
}

.blogs-item{
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}
.blogs-item .blogs-content{
    padding: 15px;
}
 .blog-post-title {
        font-weight: 500;
        color: #444;
        margin-bottom: 0.3rem;
    }

    .blog-main-Images {
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        transition: transform 0.5s ease;
    }

    .blog-main-Images:hover {
        transform: scale(1.03);
    }

    .blog-grid {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    .blog-column {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .blog-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.4s, background-color 0.4s;
    }

    .blog-card:hover {
        background: #fce4ec;
        transform: scale(1.02);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

    .blog-card a {
        color: inherit;
        text-decoration: none;
        display: block;
    }

    .blog-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border: 4px solid #f3f3f3;
        padding: 8px;
        transition: transform 0.5s;
    }

    .blog-card:hover img {
        transform: scale(1.05);
    }

    .blog-content {
        padding: 15px;
    }

    .blog-title022 {
        font-size: 16px;
        font-weight: 600;
        color: #d51258;
        margin-bottom: 8px;
    }

    .blog-desc {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
    }

    .blog-date {
        font-size: 13px;
        color: #999;
        margin-top: 10px;
    }

    .featured-blog img {
        height: 450px;
    }

    .featured-blog .blog-title022 {
        font-size: 20px;
    }

    .featured-blog .blog-desc {
        font-size: 15px;
    }

    hr {
        border: none;
        border-top: 1px solid #ddd;
    }


/*** Blog End ***/
/*** Blogs start ***/
 .blog-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #2c2c2c;
    }

    .blog-image {
        width: 100%;
        height: auto;
        margin: 1rem 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .blog-section {
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
    color: #757272;  
    }
    .blods-mainctact p{
        color:#000;
    }

    .sticky-sidebar {
        position: sticky;
        top: 80px;
    }

    .sidebar-box {
        background: #f8f9fa;
        padding: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .sidebar-title {
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        border-bottom: 1px solid #ddd;
        padding-bottom: 0.5rem;
        text-transform: uppercase;
        color: #333;
    }

    .popular-post .post-thumb {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 4px;
        flex-shrink: 0;
    }

    .popular-post .post-title {
        font-size: 0.85rem;
        font-weight: 600;
        color: #d50000;
        line-height: 1.3;
        text-decoration: none;
    }

   
    .popular-post .post-meta {
        font-size: 0.75rem;
        color: #666;
        margin-top: 4px;
        line-height: 1.2;
    }
    .sidebar-box ul li a {
        color: #5a5d60;;
        text-decoration: none;
        font-size: 0.9rem;
    }
    @media (max-width: 768px) {
        .blog-content, .sticky-sidebar {
            padding: 0 1rem;
        }
    }
/*** Blogs End ***/


/*** venues view detils Start ***/
 /* General Layout */
  .main-wrapper002 {
    background-color: #f8f9fa;
    padding-top: 20px;
  }

  /* Image Section */
  .view-content002 {
    border-right: 1px solid #dee2e6;
    padding-right: 15px;
  }

  .header002 h4 {
    margin: 0;
    font-weight: 600;
  }

  .scroll-section002 {
    max-height: 700px;
    overflow-y: auto;
    margin-top: 15px;
    padding-right: 10px;
  }

  .scroll-images-box002 img {
    width: 100%;
    object-fit: cover;
    cursor: pointer; /* indicate clickable */
  }

  /* Highlight and thumbnail images */
  .highlight-img002 {
    height: 300px;
    object-fit: cover;
  }

  .thumb-img002 {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .thumb-img002:hover {
    transform: scale(1.05);
  }

  /* Form Sidebar */
  .form-sidebar002 {
    padding-left: 20px;
  }

  .last0012002 {
    background-color: #fff;
    border-radius: 8px;
  }

  .request-form textarea,
  .request-form input,
  .request-form select {
    border-radius: 6px;
  }

  .request-form .form-select {
    padding: 8px;
  }

  .request-form button {
    font-weight: bold;
  }

  .badge.bg-primary002 {
    background-color: #007bff !important;
  }

  .text-muted.small002 {
    font-size: 0.85rem;
    color: #6c757d !important;
  }

  /* Responsive Behavior */
  @media (max-width: 767.98px) {
    .view-content002 {
      border-right: none;
      padding-right: 0;
      margin-bottom: 20px;
    }

    .form-sidebar002 {
      padding-left: 0;
    }

    .scroll-section002 {
      max-height: unset;
    }
  }

  /* Close button for carousel */
  #closeCarousel002 {
    display: inline-block;
    margin-bottom: 8px;
  }
/*** venues view detils End ***/


/*** testimonial Start ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}
/*** testimonial End ***/


/*** Contact start ***/
.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #222;
}

h4{
     font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #222;
}

.footer p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.footer a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--bs-primary);
    text-decoration: underline;
}

.footer .footer-item a.text-body {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer .footer-item a.text-body:hover {
    color: var(--bs-primary) !important;
}

.footer .border-top {
    border-top: 1px solid #ddd;
    margin: 40px 0 20px;
}

/* Contact Section */
.footer .vr {
    border-left: 1px solid #ccc;
    height: auto;
    margin: 0 15px;
}

.footer .form-control {
    border-radius: 0px;   
    padding: 8px 12px;
}
 .vendor-btn {
      position: relative;
      display: inline-block;
      padding: 12px 20px;
      border: 1px solid #007bff;
      border-radius: 5px;
      color: #007bff;
      background-color: #fff;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .vendor-btn::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 0;
      height: 0;
      border-bottom: 20px solid #007bff;
      border-left: 20px solid transparent;
      transition: 0.3s ease;
    }

    .vendor-btn:hover {
      background-color: #007bff;
      color: #fff !important;
      text-decoration: none !important;
    }

    .vendor-btn:hover::after {
      border-bottom-color: #0056b3;
    }

    /* Submit button */
    .btn-submit {
      background-color: #ee3b77;
      color: #fff;
      border: none;
    border-radius: 0px;
    }

    .btn-submit:hover {
      background-color: #c92b63;
      color: #fff;
    }
.footer .btn-danger {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 0.25rem;
}

.footer .btn-outline-primary {
    padding: 8px 16px;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 5px;
}

/* Footer Columns */
.footer-item {
    padding: 10px 0;
    margin-bottom: 20px;
}

.footer-item h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-item a {
    font-size: 14px;
    margin-bottom: 8px;
}

/* Social Icons */
.footer .fab {
    margin-right: 10px;
    font-size: 16px;
}

/* App Download Section */
.footer img {
    max-width: 140px;
    transition: transform 0.3s ease;
}

.footer img:hover {
    transform: scale(1.05);
}
/* Social Icon Brand Colors */
.social-icon {
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon.facebook {
    color: #1877f2;
}

.social-icon.twitter {
    color: #1da1f2;
}

.social-icon.pinterest {
    color: #e60023;
}

.social-icon.instagram {
    color: #e1306c;
}

.social-icon.youtube {
    color: #ff0000;
}

/* Optional: Add hover effects */
.social-icon:hover {
    transform: scale(1.2);
}


/* Responsive Fixes */
@media (max-width: 768px) {
    .footer .d-flex.justify-content-between {
        flex-direction: column;
        gap: 15px;
    }

    .footer .vr {
        display: none;
    }

    .footer .col-md-3,
    .footer .col-md-4,
    .footer .col-md-5 {
        text-align: center;
    }

    .footer .d-flex.flex-column.align-items-center {
        align-items: center !important;
    }
}
/*** Footer End ***/





