/* Hero Section */
*{
      font-family: "Montserrat", sans-serif;

}
.hero-subtitle {
    font-size: 1.7vw; /* or adjust as needed */
    font-weight: 500;
    letter-spacing: 1px;
    padding-bottom:2px ;
  background:transparent;
  font-family: "Montserrat", sans-serif;


  }
   h1::before {
    content: none !important;
    display: none !important;
    height: 0 !important;
    border: none !important;
   }
.highlight {
    font-weight: 700;
    line-height: 1.2;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: #3FA34D;
    background: transparent;
    display: inline;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
}

.events-hero {
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #001F54;
    background-image: url("/static/assets/bg-images/latestupdatesbg.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


.events-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 48, 135, 0.3) 25%,
        transparent 25%,
        transparent 50%,
        rgba(0, 48, 135, 0.3) 50%,
        rgba(0, 48, 135, 0.3) 75%,
        transparent 75%,
        transparent
    );
    background-size: 60px 60px;
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1350px;
    width: 100%;
    margin: 0 10px;
    padding: 0 20px;
}
.breadcrumb {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif !important;
    text-transform: uppercase;
    background: transparent !important;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #00cc00;
}

.breadcrumb span {
    color: #ffffff;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
    display: flex;
    align-items: baseline;
}


.banner-container {
    width: 80vw;
    margin: 0 auto;
    overflow: hidden;
    background-color: #fff;
    padding: 10px 0;
    text-align: center;
    position: relative;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.banner-text {
    font-family: "Montserrat", sans-serif;
    display: inline-block;
    white-space: nowrap;
    color: red;
    font-size: 20px;
    font-weight: bold;
    height: 50px;
    letter-spacing: 0.5px;
    word-spacing: 1px;
    animation: slideText 10s linear infinite;
    position: static;
    margin-left: 12px;
}

@keyframes slideText {
    0% {
        transform: translateX(100%);
    }
    30% {
        transform: translateX(0);
    }
    70% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* .highlight {
    
} */


/* Arrow Button */
.button-container {
    max-width: 1300px; 
    margin: 20px auto;
    padding: 0 15px;
    display: flex;
    justify-content: flex-start;
}

.arrow-button {
    background: linear-gradient(45deg, #3fa34d, #00487c);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top:40px;
}

.arrow-button:hover {
    background: linear-gradient(45deg, #00487c, #3fa34d);
}

.arrow-icon {
    width: 24px;
    height: 24px;
}

.card-grid-row {
  display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.event-card-container {
    width: 100%;
    max-width: 500px; /* Adjust to fit two cards comfortably */
    display: flex;
    justify-content: center;
    margin: 0 18px 12px 0;
}

.event-card {
width: 100%;
    max-width: 100%; /* Ensure the card takes full container width */
    min-width: 0;
    height: auto; /* Allow height to adjust based on content */
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #d1d5db !important;
    box-shadow: none !important;
    overflow: hidden;
}
.img-fluid{
    margin-top: 8px;
    width: 15px;
    height: 22px;
}
.hall-image{
    width:188px;
    height: 185px;
    border-radius: 6px;
}
.hall-card-head-text{
    font-size: 14px;
    color :#324D78;

}

.hall-card-sub-text.mob-location-font{
    color:#324D78;
     font-size: 12px;
     padding-left:8px;
     margin-bottom:0px;
     padding-top:12px;
}
.rental-info {
    margin-top: 10px;
    padding: 10px;
    /* border: 1px solid #e0e0e0; */
    border-radius: 5px;
    /* background-color: #f9f9f9; */
}

.rental-title {
    font-size: 12px;
    font-weight: bold;
    color: #666666;
    margin-bottom: 5px;
}

.rental-price {
    font-size: 12px;
    color: #8D8D8D;
    font-weight: 500;
    margin: 2px 0;
}

.contact-info {
    
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.contact-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #DCE4E9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.contact-icon {
    background: none;
    margin: 0;
    width: 14px;
    height: 14px;
}

.contact-name {
    font-size: 14px;
    color: #1a3c6e;
    margin: 0;
}
.hall-image-container {
    position: relative;
    display: inline-block;
}
.hall-type-label {
    position: absolute;
    top: 16px;
    left: -12px;
    z-index: 2;
}
.hall-type-text {
    background: #E4E4E4;
    color: #324D78;
    border-radius: 0 8px 8px 0;
    padding: 6px 24px;
    font-size: 12px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    display: inline-block;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    letter-spacing: 0.2px;
}

.month-circle {
    position: absolute;
    bottom: 42px;
    left: -6px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px; /* Adjust margin as needed */
}
.badge.text-wrap {
    background-color: #F0F0F0;
    border-radius: 50%; /* Creates a round circle */
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.badge.text-wrap img {
    width: 14px; /* Adjust size of the capacity.svg icon */
    height: 14px;
    margin-bottom: 5px; /* Space between icon and text */
}

.badge.text-wrap p {
    margin: 0;
    font-size: 8px;
    text-align: center;
}

.badge.text-wrap .capacity-text {
    font-size: 8px;
    color: #333;
}



.custom-button-row {
    margin-top: 20px; /* Space above the button row */
}
.button-wrapper {
    position: absolute;
    bottom: 20px;
    right: 10px;
    margin-top: 32px;
}

.custom-book-button .custom-book-link {
    background-color: #E6EDF2 !important; /* Force light gray background */
    color: #324D78 !important; /* Force dark blue text */
    border: 2px solid #d0d9e0 !important; /* Remove default border */
    border-radius: 8px; /* Rounded corners */
    padding: 10px 20px; /* Consistent padding */
    font-size: 16px; /* Readable text size */
    text-decoration: none !important; /* Remove underline */
    display: inline-block; /* Ensure proper rendering */
    transition: background-color 0.3s ease; /* Smooth hover effect */
    font-family: "Montserrat", sans-serif !important; /* Match font */
}

.custom-book-button .custom-book-link:hover {
    background-color: #d0d9e0 !important; /* Slightly darker shade on hover */
}

.card-detail-section {
    flex: 1;
    padding: 10px;
    position: relative;
    min-height: 260px;
}
.custom-book-button a {
   font-family: "Montserrat", sans-serif !important;

    background-color: #E6EDF2 !important; /* Force light gray background */
    color: #324D78 !important; /* Force dark blue text */
    border: none !important; /* Remove default border */
    border-radius: 8px; /* Rounded corners */
    padding: 10px 20px; /* Consistent padding */
    font-size: 16px; /* Readable text size */
    text-decoration: none !important; /* Remove underline */
    display: inline-block; /* Ensure proper rendering */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.custom-book-button:hover {
    text-decoration:none;
    /* background: linear-gradient(45deg, #00487c, #3fa34d); Reverse gradient on hover */
}

/* Dropdown Styles */
.category-dropdown {
  width: 220px;
  margin-bottom: 30px;
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
}
.dropdown-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #17406D;
  font-size: 1.15rem;
  margin-bottom: 10px;
  user-select: none;
  padding-left: 0;
  padding-right: 10px;
}
.dropdown-title {
  margin-right: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #00487C;
  padding-left: 0;
}
.dropdown-arrow-icon {
  margin-left: 4px;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  transition: transform 0.2s;
}
.dropdown-arrow-icon.expanded {
  transform: rotate(180deg);
}
.dropdown-arrow-icon.expanded {
  transform: rotate(180deg);
}
.dropdown-list {
  border-left: none;
  padding-left: 0;
  padding-right: 18px;
  margin-left: 0;
  margin-right: 7px;
  display: none;
  background: transparent;
  transition: all 0.2s;
}
.dropdown-list.show {
  display: block;
}
.category-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 24px;
  position: relative;
}
.category-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #BDBDBD;
  z-index: 0;
}
.category-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  cursor: pointer;
}
.category-item:last-child {
  margin-bottom: 0;
}
.dot {
  width: 7px;
  height: 7px;
  background: #A3A3A3;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: 7px;
  z-index: 1;
}
.category-label {
  margin-left: 18px;
  color: #888;
  font-size: 1.08rem;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  display: block;
  line-height: 1.2;
}
.category-item.active .category-label {
  color: #00487C;
}
.category-item.active .dot {
  background: #00487C;
}
.category-item.active {
  background-color: transparent;
  font-weight: 500;
}

.category-item.active .dot {
  background: #00487C;
}

.category-item.active .category-label {
  color: #00487C;
}
@media (max-width: 900px) {
.card-grid-row {
        flex-direction: column; /* Stack cards vertically on smaller screens */
        align-items: center;
    }
    .event-card-container {
        width: 100%;
        max-width: 100%;
        margin: 0 0 10px 0; /* Remove horizontal margin, keep vertical spacing */
    }
    .event-card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

/* Ensure card content is responsive */
.card-body {
    flex-direction: row;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.card-image-section {
    flex: 0 0 40%; /* Adjust image section width */
}

.card-detail-section {
    flex: 1;
    padding: 10px;
}

/* For studio type cards */
.card_studio {
    width: 100% !important; /* Override fixed width */
}

@media (min-width: 786px) {
    .card_studio {
        max-width: none !important; /* Remove fixed width for studio cards */
    }
}
.booked-avatars-row {
    display: flex;
    align-items: center;
    margin-top: 18px;
    margin-left: 4px;
    margin-bottom: 8px;
}
.avatar-group {
    display: flex;
    align-items: center;
    margin-right: 8px;
}
.avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #b0b0b0;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin-left: -10px;
    z-index: 1;
}
.avatar-circle:first-child {
    margin-left: 0;
    z-index: 4;
    background: #b0b0b0;
}
.avatar-circle:nth-child(2) { z-index: 3; background: #c4c4c4; }
.avatar-circle:nth-child(3) { z-index: 2; background: #d8d8d8; }
.avatar-circle:nth-child(4) { z-index: 1; background: #e0e0e0; }
.booked-text {
    font-size: 10px;
    color: #7a7a7a;
    font-weight: 500;
    margin-left: 8px;
    font-family: "Montserrat", sans-serif;
}

.custom-book-btn {
    display: inline-block;
    background: #e6edf2;
    color: #324d78;
    border: 1.5px solid #bfc9d5;
    border-radius: 10px;
    padding: 12px 38px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(50,77,120,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    padding: 8px 26px;
    font-size: 15px;
    border-radius: 8px;
}
.custom-book-btn:hover {
    background: #d0d9e0;
    color: #324d78;
    box-shadow: 0 4px 16px rgba(50,77,120,0.13);
}
/* .filter-div{
    padding-left:10px;
    padding-right: 0px;
} */

/* Removed custom dropdown-list styles for hall location filter to use consistent styling */
/* Dropdown styles from event-listing-new.html for hall location filter */
.category-dropdown {
  width: 220px;
  margin-bottom: 30px;
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
}
.dropdown-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #17406D;
  font-size: 1.15rem;
  margin-bottom: 10px;
  user-select: none;
  padding-left: 0;
  padding-right: 10px;
}
.dropdown-title {
  margin-right: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #00487C;
  padding-left: 0;
}
.dropdown-arrow-icon {
  margin-left: 4px;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  transition: transform 0.2s;
}
.dropdown-arrow-icon.expanded {
  transform: rotate(180deg);
}
.dropdown-list {
  border-left: none;
  padding-left: 0;
  padding-right: 18px;
  margin-left: 0;
  margin-right: 7px;
  display: none;
  background: transparent;
  transition: all 0.2s;
}
.dropdown-list.show {
  display: block;
}
.category-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 24px;
  position: relative;
}
.category-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #BDBDBD;
  z-index: 0;
}
.category-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}
.category-item:last-child {
  margin-bottom: 0;
}
.dot {
  width: 7px;
  height: 7px;
  background: #A3A3A3;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: 7px;
  z-index: 1;
}
.category-label {
  margin-left: 18px;
  color: #888;
  font-size: 1.08rem;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  display: block;
  line-height: 1.2;
}
.category-label input[type="checkbox"] {
  margin-right: 7px;
}
.category-item.active .category-label {
  color: #00487C;
  font-weight: 600;
}