
/* Base Styles */
:root {
    --primary: #555;
    --secondary: #E63946;
    --accent: #cd7700;
    --light: #F8F9FA;
    --dark: #212529;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    font-weight: normal;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    color: inherit;
}

body {
    background-color: #f8f7fa;
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #555;
    max-width: 1200px;
    margin: auto;
}


/* Navigation Bar (Desktop) start */
.main-header {
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background-color: rgba(18, 18, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: .3rem .5rem;
  position: sticky;
  top: 10px;
  color: white;
  margin-bottom: 20px;
  z-index: 1000;
  border-radius: 30px;
  max-width: 1200px;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
    width: 40px;
    height: 40px
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  color: white;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #111827;
}

.nav-links .signup-btn {
  background: transparent;
  color: white;
  border: 1.5px solid #cd7700;
  padding: 0 0.5rem;
  border-radius: 20px;
}

.nav-links .signup-btn:hover {
  border: 1.5px solid var(--accent);
  background: var(--accent);
  color: white;
}

.nav-links .login-btn {
  background: var(--accent);
  color: white;
  border: 1.5px solid var(--accent);
  padding: 0 0.5rem;
  border-radius: 20px;
}

.nav-links .login-btn:hover {
  border: 1.5px solid var(--accent);
  background: transparent;
  color: white;
}


/* Top Search Bar */
.search-wrapper {
  display: flex;
  align-items: center;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 0px 12px;
  max-width: 400px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  font-family: sans-serif;
  margin-right: 30px
}

.search-box {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 6px;
}

.search-box i {
  color: #cd7700;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: white;
  margin-left: -10px;
}

.divider {
  width: 1px;
  height: 24px;
  background-color: #ccc;
  margin: 0 10px;
}

.location-box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  margin-left: 10px;
}

.location-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: white;
  width: 100%
}


input::placeholder {
  color: white;
  opacity: 1;
}

.location-box i {
  color: #cd7700;
}

.search-btn {
  background-color: #cd7700;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -8px;
  margin-top: -1px
}

.search-btn i {
  font-size: 14px;
}



/*mobile nav*/
.mobile-search {
  position: fixed;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 30px;
  padding: 5px 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 95%;
  margin-top: -3px;
  z-index: 999999
}

.mobile-search input {
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  flex: none;
  height: 20px;
  line-height: 20px;
  padding: 0;
  margin: 0;
}

.mobile-search .search-texts {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 40px;
  overflow: hidden;
}

.mobile-search .search-icon {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  opacity: 0.6;
}



.mobile-search .search-texts {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.search-line1 {
  color: #cd7700;
  font-size: 14px;
  margin-top: -7px
}

.search-line2 {
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.filter-btn {
  background: #cd7700;
  border: none;
  border-radius: 50%;
  padding: 5px;
  width: 35px;
  color: white;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 5px;
  left: 0;
  width: 95%;
  background: #fff;
  padding: 15px 0;
  margin: 5px 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  z-index: 999999;
}

.nav-item {
  font-size: 28px;
  color: #999;
  transition: all 0.3s ease;
}

.nav-item.active {
  color: #4a90e2;
}

.nav-item:hover {
  transform: scale(1.2);
}

/* Modal */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999
}

.modal-content {
  background: white;
  padding: 20px;
  margin-top: 70px;
  border-radius: 8px;
  width: 300px;
}

.modal-content h3{
  margin-top: -12px;
  margin-bottom: 12px;
}

.mobile-search, .bottom-nav {
  display: none;
}

/* Navigation Bar (Desktop) End */


/* slides Section start*/
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 20px
}

.caption {
  position: absolute;
  bottom: 40px;
  left: 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 5px;
}

.caption h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.caption p {
  font-size: 16px;
  margin-top: 10px
}

.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.prev, .next {
  background: #cd7700;
  color: #fff;
  border: 1.5px solid #cd7700;
  border-radius: 50%;
  padding: 6px 15px;
  cursor: pointer;
}

.prev:hover, .next:hover {
  background: transparent;
  color: #cd7700;
  border: 1.5px solid #cd7700;
  border-radius: 50%;
  padding: 6px 15px;
  cursor: pointer;
}

.indicators {
  text-align: center;
  margin-top: -30px;
  position: relative;
  margin-bottom: 30px
}

.dot {
  height: 14px;
  width: 14px;
  margin: 0 5px;
  border: 1.5px solid #cd7700;
  background-color: transparent;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot:hover{
  cursor: pointer;
}

.active-dot {
  background-color: #cd7700;
}


.btns {
  margin-top: 20px;
}

.btns button {
  padding: 10px 10px;
  font-size: 1em;
  margin: 10px;
  border: none;
  border: 1.5px solid #cd7700;
  border-radius: 30px;
  cursor: pointer;
}

.btn-find {
  background-color: transparent;
  border: 1.5px solid #cd7700;
  color: white;
}

.btn-find:hover {
  background-color: #cd7700;
  color: white;
}

.btn-create {
  background-color: #cd7700;
  color: white;
}

.btn-create:hover {
  background-color: transparent;
  color: white;
}

/* slides Section End*/



/* filter Section start*/
.filter-section {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.filter-title {
  font-size: 17px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #333;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
}

select, input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 13px;
}

.filter-actions {
  margin-top: 20px;
  text-align: right;
}

.filter-actions {
  position: relative;
  width: 100%;
}

.filter-actions button {
  padding: 10px 20px;
  font-size: 14px;
  margin-top: -5px;
  background-color: #cd7700;
  color: white;
  border: 1.5px solid #cd7700;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  position: absolute;
  top: 0;
  right: 0; /* ✅ this aligns the button to the right */
  z-index: 10;
}

.filter-actions button:hover {
  background-color: transparent;
  color: #cd7700;
}

.controller{
  display: flex;
  position: relative;
  overflow-x: auto;
}

.controller-item{
  margin: 0 10px;
  background-color: #E9ECEF;
  border-radius: 20px;
  padding: 2px 10px;
  cursor: grabbing;
}

.controller-item:hover{
  cursor: pointer;
}

.controller-item.active {
  border-bottom: 4px solid #4a90e2;
  background-color: #f0f4ff;
}

.controller-item.active {
  display: block;
}

.hidden {
  display: none;
}

/* filter Section end*/



/* card Section start*/
.scroll-button {
  position: absolute;
  margin-top: -300px;
  color: white;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #cd7700, #ffb84d);
  border: 1.5px solid #cd7700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  font-size: 30px;
  font-weight: bold;
}

.scroll-button.left {
  left: 10px;
}

.scroll-button.right {
  right: 10px;
}

.scroll-button:hover {
  background: transparent;
    color: #cd7700;
}

.scroll-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.section h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}
.events-section {
  margin: 2rem 0;
  overflow: hidden;
}

.events {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-columns: 27%;
  gap: 15px;
  margin-left: -15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 1rem 1rem;
  scroll-padding: 0 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.events::-webkit-scrollbar {
  display: none;
}

.card {
  box-sizing: border-box;
  background-color: white;
  color: black;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  scroll-snap-align: start;
  display: flex;
  margin-top: 10px;
  flex-direction: column;
}

.button-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  max-width: 500px;
  position: relative;
  margin-top: -50px
}

/* Profile image */
.profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right icons */
.right-buttons {
  display: flex;
  gap: 20px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.stat-count {
  font-weight: bold;
  font-size: 13px;
  color: #000;
}

.stat-icon {
  font-size: 20px;
  color: #555; /* Default icon color */
  transition: color 0.3s;
}

.stat-icon.heart.liked {
  color: red;
}

.stat:hover .stat-icon {
  color: #cd7700;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}


.trending-events{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}

.trending-card {
  background-color: white;
  color: black;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.trending-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: -6px
}


.card-body {
  padding: 10px;
  margin-top: -15px
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.section-header h2 {
  margin: 0;
}

.section-header i {
  font-size: 30px;
  margin-right: 20px
}

.section-header i:hover {
  font-size: 30px;
  margin-right: 20px;
  color: #555
}

.section-header a {
  text-decoration: none;
  color: #cd7700;
  font-weight: bold;
}

.card-body h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
  color: #555;
}

.card-body p {
  margin-bottom: 5px;
  font-size: 0.7em;
}

.actionbtn{
  margin-bottom: 5px;
  margin-top: 15px;
}

.bookingbtn{
  background: transparent;
  color: #cd7700;
  border: 1.5px solid #cd7700;
  border-radius: 20px;
  margin-right: 20px;
  padding: 6px 15px;
}

.bookingbtn:hover{
  background: #cd7700;
  border: 1.5px solid #cd7700;
  color: white;
  border-radius: 20px;
  margin-right: 20px;
  padding: 6px 15px;
}

.detailsbtn{
  background: #cd7700;
  color: white;
  border: 1.5px solid #cd7700;
  border-radius: 20px;
  padding: 6px 10px;
}

.detailsbtn:hover{
  background: transparent;
  border: 1.5px solid #cd7700;
  color: #cd7700;
  border-radius: 20px;
  padding: 6px 10px;
}


.card-body {
  padding: 10px;
  margin-top: -15px
}
.card-body h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.card-body p {
  margin-bottom: 5px;
}

.card-body p {
  font-size: 0.9em;
  color: #333;
}

.carousel-2row-container {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  margin: 10px 0;
  position: relative;
  background: none;
  padding: 0;
}

.carousel-2row-row {
  display: flex;
  flex-direction: row;
  width: 100%;

}

.carousel-2row-row.bottom {
  flex-direction: row-reverse;
  margin-top: 20px;
}

.carousel-2row-track {
  display: flex;
  flex-direction: inherit;
  width: max-content;
  transition: none;
  position: relative;
}

.carousel-2row-card {
  margin-right: 14px;
  flex-shrink: 0;
  width: 280px;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  transition: transform 0.5s cubic-bezier(.4,1.6,.4,1), opacity 0.5s;
  will-change: transform, opacity;
  position: relative;
  z-index: 1;
}

.carousel-2row-row.bottom .carousel-2row-card {
  margin-right: 0;
  margin-left: 14px;
}

/* card Section end*/


/*promoters and blogs start*/
.music-container {
  width: 100%;
  box-sizing: border-box;
}

.music-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.music-column {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.music-box {
  margin-top: 10px;
  overflow-x: auto;
  max-width: 100%;
}

.music-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 15px;
  /*padding: 10px 0;*/
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}


.music-grid::-webkit-scrollbar {
  display: none;
}

/* Promoter cards */
.music-card {
  flex: 0 0 auto;
  width: 130px;
  border-radius: 8px;
  text-align: center;
}

.music-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.section-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: -5px;
  margin-top: -12px;
}

.music-card p {
  font-size: 14px;
  color: #94a3b8;
}

.blog-column {
  flex: 1;
  min-width: 300px;
  max-width: 100%;
}

.blog-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 15px;
  padding: 10px 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;

}

.blog-grid::-webkit-scrollbar {
  display: none;
}

.blog-card {
  background-color: white;
  border-radius: 8px;
  text-align: center;
  min-width: 240px;
  box-sizing: border-box;
}

.blog-card img {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

.blog-card h4 {
  margin: 0px 5px;
  font-size: 18px;
  text-align: left;
  color: #000;
  font-weight: bold;
}

.blog-card p {
  font-size: 14px;
  color: #94a3b8;
}

.follow-btn {
  margin-top: 10px;
  padding: 6px 10px;
  margin-bottom: 20px;
  border: 1.5px solid #cd7700;
  background: #cd7700;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  margin-left: 5px
}

.follow-btn:hover {
  color: #cd7700;
  background: transparent;
  border: 1.5px solid #cd7700;
}

.followed {
  background-color: #10b981;
}

.blog-box {
  border-radius: 12px;
  margin-bottom: 20px;
}

.music-column .box {
  background-color: #1e293b;
  padding: 10px;
  border-radius: 12px;
}

.radio-box {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #0b1117;
}

.radio-box-title {
  font-size: 25px;
  font-weight: 600;
}

.radio-box img {
  width: 100px;
  color: white
}

/*promoters and blogs end*/


/*organizers and popular start*/
.view-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  margin-top: -20px;
  background: white;
  padding: 10px;
  border-radius: 20px
}

.organizers-section {
  flex: 1;
  min-width: 320px;
}

.organizers-section h3 {
  font-size: 20px;
  color: black
}


.events-section {
  flex: 1;
  min-width: 320px;
}

.events-section h3 {
  font-size: 20px;
  color: black
}

.card-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}


.card-row::-webkit-scrollbar {
  display: none;
}

.event-card {
  width: 220px;
  flex-shrink: 0;
  padding: 5px
}

.event-card:hover {
  box-sizing: border-box;
  background-color: white;
  color: black;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 5px;
  cursor: pointer;
}

.popular_card {
  width: 225px;
  flex-shrink: 0;
  padding: 5px;
}

.popular_card:hover {
  box-sizing: border-box;
  background-color: white;
  color: black;
  border-radius: 10px;
  width: 225px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 5px;
  cursor: pointer;
}

.popular_card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 8px;
}

.popular_card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
  color: black
}

.popular_card span {
  display: block;
  font-size: 13px;
  color: #555;
}

.popular_card a {
  text-decoration: none;
  color: blue;
  font-size: 13px;
}

.event-card img {
  width: 100%;
  height: 130px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 8px;
}

.event-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
  color: black
}

.event-card span {
  display: block;
  font-size: 13px;
  color: #555;
  color: black
}

.event-card a {
  text-decoration: none;
  color: blue;
  font-size: 13px;
}

/*organizers and popular end*/



/*services*/

.services-wrapper {
  padding: 10px 0;
  background: #f9fafb;
}


.services-scroll {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 7px 0;
}

.service-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  width: 280px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.service-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: #1f2937;
}

.service-content p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

.rating {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 10px;
}

.service-link {
  background: transparent;
  color: #cd7700;
  border: 1.5px solid #cd7700;
  padding: 8px 12px;
  text-align: center;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-link:hover {
  background: #cd7700;
  color: white;
}

/* Optional: Hide scrollbar for Webkit */
.services-scroll::-webkit-scrollbar {
  height: 8px;
}
.services-scroll::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}


/*services*/


/*service creation start */
/* Container Styling */
.svc-form-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-family: Arial, sans-serif;
}

.svc-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* Grid Form Layout */
.svc-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.svc-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #444;
}

.svc-form input,
.svc-form select,
.svc-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  transition: border 0.3s ease;
}

.svc-form input:focus,
.svc-form select:focus,
.svc-form textarea:focus {
  border-color: #4a90e2;
}

/* Extra Fields (Hidden by Default) */
.svc-extra-group {
  display: none;
  grid-column: 1 / -1;
  background: #f9fafb;
  padding: 20px;
  border-radius: 20px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
}

/* Two Columns Inside Extra Fields */
.svc-extra-group .svc-extra-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Submit Button */
.svc-submit-btn {
  padding: 14px 24px; /* More horizontal padding for nice spacing */
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
  width: auto; /* Let the text decide the width */
  display: inline-block; /* Shrinks to fit content */
}

.svc-submit-btn:hover {
  background-color: #357ab7;
}
/*service creation end*/


/*profile edit start*/
.profile-form {
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.profile-col {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
}

.profile-col label {
  margin-top: 10px;
  font-weight: bold;
}

.profile-col input,
.profile-col textarea {
  padding: 8px;
  margin-top: 5px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.profile-col textarea {
  resize: vertical;
}

.profile-img-preview {
  width: 150px;
  height: 150px;
  margin-top: 10px;
  border-radius: 10px;
  object-fit: cover;
}

.submit-btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #45a049;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .profile-container {
    flex-direction: column;
  }
}
/*profile end*/

/*show start*/

.hero {
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
  border-radius: 20px;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px
}
.hero h1 {
  position: absolute;
  bottom: 5px;
  left: 5px;
  color: #cd7700;
  font-size: 2rem;
}
.container {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }

  .profile-stats {
    justify-content: center;
  }

  .social-links {
    text-align: center;
  }

  .hero {
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
    border-radius: 20px;
    margin-top: 4.5rem
  }



}
.info {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.info h2 {
  margin: 0;
}

.info p {
  margin: 3px 0;
}

.tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 10px
}

.tag {
  background: #cd7700;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
}
.ticket-section {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.ticket {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}
.actions {
  margin-top: .5rem;
  display: flex;
  gap: 1rem;
}
.actions button {
  padding: 0.6rem 1.2rem;
  border: none;
  background: #cd7700;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
.countdown {
  font-weight: bold;
  font-size: 1.2rem;
  color: #d9534f;
  margin-top: 20px
}


.profile-grid {
  display: flex;
  gap: 8px;
  margin-top: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  max-width: 580px
}

.profile-grid-events {
  display: flex;
  gap: 8px;
  margin-top: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  max-width: 550px
}

.profile-card {
  background: white;
  /*padding: .4rem;*/
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  flex: 0 0 calc(60% - 0.5rem); /* 2 cards on desktop */
  scroll-snap-align: start;
}

.event-header{
  margin-bottom: -15px;
  margin-top: 20px
}

@media (max-width: 480px) {
  .profile-grid {
    overflow-x: auto;
    box-sizing: border-box;
    max-width: 360px
  }

  .profile-grid-events{
    overflow-x: auto;
    box-sizing: border-box;
    max-width: 340px
  }

  .profile-card {
    flex: 0 0 90%; /* 1.5 cards on mobile */
  }

  .hero h1 {
    position: absolute;
    bottom: 5px;
    left: 5px;
    color: #cd7700;
    font-size: 1.5rem;
  }

}


.profile-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

.profile-stats {
  display: flex;
  gap: 25px;
  font-size: 14px;
  margin-top: -20px;
  margin-bottom: 6px;
  margin-left: 10px;
}

.stat {
  font-weight: bold;
  font-size: 15px
}

.insider{
  margin-left: 10px;
}

.social-links a {
  color: #cd7700;
  margin-right: 15px;
  font-size: 25px;
  text-decoration: none;
  text-align: left;
}

.faq {
  margin-top: 2rem;
}
.faq h3 {
  margin-bottom: 0.5rem;
}
.map {
  margin-top: 2rem;
}



.rating-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.rating-card h2 {
  margin-top: 0;
}

.stars {
  display: flex;
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
}

.stars .star.selected,
.stars .star.hover {
  color: #f5a623;
}

textarea {
  width: 100%;
  /*padding: 10px;*/
  margin-top: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: vertical;
}

.btn {
  background-color: #cd7700;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  margin-top: 15px;
  cursor: pointer;
}

.review-list {
  list-style: none;
  padding: 0;
}

.review-item {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.review-item .name {
  font-weight: bold;
}

.average-rating {
  display: flex;
  align-items: center;
  font-size: 20px;
  margin-bottom: 15px;
}

.average-rating span {
  margin-left: 10px;
  font-weight: bold;
  color: #333;
}


/*show end*/


/*booking start*/
.booking-container {
  max-width: 1200px;
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
}
.left, .right {
  flex: 1;
  padding: 2rem;
  min-width: 300px;
}
.right {
  background: #f0f0f0;
}
.booking-container h2 {
  text-align: center;
}
.booking-container label {
  font-weight: bold;
  margin-top: 1rem;
  display: block;
}
.booking-container input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 20px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.booking-container select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 20px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.summary {
  margin-top: 1rem;
  background: #e1e1e1;
  padding: 1rem;
  border-radius: 20px;
}

.summary h4, strong{
  font-weight: bold;
  line-height: 2;
}

.payment-option {
  display: none;
}
.success, .error {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
}
.success {
  background: #d4edda;
  color: #155724;
}
.error {
  background: #f8d7da;
  color: #721c24;
}
.booking-container  button {
  margin-top: 2rem;
  width: 100%;
  padding: .7rem;
  background: #cd7700;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .booking-container {
    margin-top: 70px;
    flex-direction: column;
    border-radius: 20px
  }

  .left, .right {
    flex: 1;
    padding: 1rem;
    min-width: 300px;
  }
}
/*booking end*/


/*ticket start*/
.ticket-container {
  background: #fff url('https://i.ibb.co/bvJ6snV/watermark.png') no-repeat center;
  background-size: 70%;
  background-blend-mode: lighten;
  opacity: 0.98;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
}
.ticket-container .banner {
  background: #cd7700;
  color: white;
  padding: 20px;
  text-align: center;
}
.ticket-container .banner img {
  max-height: 50px;
}
.ticket-container .content {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}
.ticket-container .left, .right {
  /*flex: 1 1 300px;
  padding: 15px;*/
  border-radius: 20px
}
.ticket-container .section-title {
  font-size: 18px;
  color: #cd7700;
  margin-bottom: 10px;
  margin-top: 10px
}
.ticket-container .info p {
  margin: 4px 0;
  font-size: 15px;
  /*padding: 5px 0;*/
}
.qr-code {
  /*text-align: center;*/
  margin-top: 20px;
}
.qr-code img {
  border: 6px solid #cd7700;
  border-radius: 10px;
}
.security-note {
  background: #eaf4ff;
  padding: 10px;
  margin: 10px 20px;
  font-size: 14px;
  border-left: 4px solid #4a90e2;
}
.download-btn {
  text-align: center;
  margin: 20px;
}
.download-btn button {
  background-color: #cd7700;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin: 5px;
  border: 1.5px solid #cd7700;
}
.download-btn button:hover {
  background-color: transparent;
  border: 1.5px solid #cd7700;
  color: #cd7700;
}
.share-options {
  text-align: center;
  margin-top: 10px;
}
.share-options a {
  margin: 0 10px;
  color: #cd7700;
  text-decoration: none;
}
@media (max-width: 480px) {
  .download-btn, .share-options {
    display: none;
  }

  .ticket-container{
    margin-top: 70px
  }
}
/*ticket end*/


/*edit start*/
.event-edit-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}

.event-edit-section {
  flex: 1 1 45%;
  min-width: 300px;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.event-edit-label {
  display: block;
  margin-top: 1rem;
}
.event-edit-input, .event-edit-textarea, .event-edit-select {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  font-size: 15px;
  border-radius: 20px;
  border: 1px solid #ccc;
}
.ticket-fields input[disabled] {
  background: #eee;
  color: #aaa;
}
.event-edit-submit-btn {
  display: block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #cd7700;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .event-edit-form-wrapper {
    flex-direction: column;
    margin-top: 20px;
  }
}
/*edit end*/


/*profile show start*/

.profile-header-box {
  display: flex;
  align-items: center;
  gap: 25px;
  background: var(--profile-card);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  flex-wrap: wrap;
  transition: transform 0.3s ease;
}
.profile-header-box:hover {
  transform: translateY(-2px);
}
.profile-header-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--profile-primary);
}

/* Info Section */
.profile-main-info {
  flex: 1;
}
.profile-main-info h2 {
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  color: var(--profile-text-dark);
}
.profile-verified-badge {
  color: var(--profile-primary);
  font-size: 18px;
}
.profile-bio-text {
  margin: 10px 0;
  color: var(--profile-text-light);
  font-size: 14px;
}

/* Stats */
.profile-stats-box {
  display: flex;
  gap: 25px;
  font-size: 15px;
  margin-bottom: 15px;
}
.profile-stat-value {
  font-weight: bold;
  color: var(--profile-primary);
}

/* Social Links */
.profile-social-links a {
  color: var(--profile-primary);
  margin-right: 15px;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.profile-social-links a:hover {
  color: #a35600;
}

/* Events Section */
.profile-events-section {
  margin-top: 40px;
}
.profile-events-section h3 {
  margin-bottom: 15px;
  color: var(--profile-text-dark);
}
.profile-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
}

/* Event Card */
.profile-event-card {
  background: var(--profile-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.profile-event-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}
.profile-event-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.profile-event-details {
  padding: 15px;
}
.profile-event-details h4 {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--profile-primary);
}
.profile-event-details p {
  font-size: 14px;
  color: var(--profile-text-light);
  margin-bottom: 12px;
}

/* Buttons */
.profile-view-btn {
  background-color: transparent;
  border: 1.5px solid var(--profile-primary);
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  font-size: 13px;
  color: var(--profile-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
.profile-view-btn:hover {
  background-color: var(--profile-primary);
  color: white;
}

/* Responsive */
@media (max-width: 600px) {
  .profile-header-box {
    text-align: center;
    flex-direction: column;
    margin-top: 70px
  }
  .profile-main-info h2 {
    justify-content: center;
  }
  .profile-stats-box {
    justify-content: center;
  }
  .profile-social-links {
    text-align: center;
  }
}


/*profile show end*/

/* Scroll to Top Button */
#toTopBtn {
  position: fixed;
  bottom: 100px;
  right: 10px;
  background-color: #cd7700;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
  transition: background 0.3s, transform 0.3s;
}

#toTopBtn:hover {
  background-color: #2e2e2e;
  transform: scale(1.1);
}



/*Floating button*/

.fab-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  user-select: "none";
  position: fixed;
  bottom: 200px;
  right: 5px;
}

.whatsapp-icon {
  transition: fill 0.3s ease;
  cursor: pointer;
}
.whatsapp-icon:hover {
  fill: #2e2e2e;
}

.fab-container:hover {
  height: 100%;
}
.fab-container:hover .sub-button:nth-child(2) {
  transform: translateY(-80px);
}
.fab-container .fab .fab-content .material-icons {
  color: white;
  font-size: 48px;
}
.fab-container .sub-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  /*bottom: 10px;
  right: 10px;*/
  height: 50px;
  width: 50px;
  background-color: #cd7700;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.fab-container .sub-button:hover {
  cursor: pointer;
}
.fab-container .sub-button .material-icons {
  color: #FEFEFE;
  padding-top: 6px;
}
.fab-container .sub-button .material-icons:hover {
  color: #2e2e2e;
  padding-top: 6px;
}
.fab-container:hover .sub-button:nth-child(3) {
  transform: translateY(-140px);
}
.fab-container:hover .sub-button:nth-child(4) {
  transform: translateY(-200px);
}
.fab-container:hover .sub-button:nth-child(5) {
  transform: translateY(-260px);
}
.fab-container:hover .sub-button:nth-child(6) {
  transform: translateY(-320px);
}
.fab-container .fab {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: #cd7700;
  border-radius: 50%;
  z-index: 2;
}
.fab-container .fab:before {
  content: " ";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 35px;
  width: 35px;
  background-color: inherit;
  border-radius: 0 0 10px 0;
  z-index: -1;
}
.fab-container .fab .fab-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
}

/*support end*/


/*footer start*/
footer{
  position: relative;
  background: #555;
  width: 100%;
  margin: 20px 0px;
  border-radius: 20px
}
footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;
  background: #cd7700;
}
footer .content{
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}
footer .content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.content .top .logo-details{
  color: #fff;
  font-size: 30px;
}
.content .top .media-icons{
  display: flex;
}
.content .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1){
  background: #4267B2;
}
.top .media-icons a:nth-child(1):hover{
  color: #4267B2;
  background: #fff;
}
.top .media-icons a:nth-child(2){
  background: #1DA1F2;
}
.top .media-icons a:nth-child(2):hover{
  color: #1DA1F2;
  background: #fff;
}
.top .media-icons a:nth-child(3){
  background: #E1306C;
}
.top .media-icons a:nth-child(3):hover{
  color: #E1306C;
  background: #fff;
}
.top .media-icons a:nth-child(4){
  background: #0077B5;
}
.top .media-icons a:nth-child(4):hover{
  color: #0077B5;
  background: #fff;
}
.top .media-icons a:nth-child(5){
  background: #FF0000;
}
.top .media-icons a:nth-child(5):hover{
  color: #FF0000;
  background: #fff;
}
footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
footer .content .link-boxes .box{
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #fff;
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
}
.content .link-boxes .box li a:hover{
  opacity: 1;
  text-decoration: underline;
}
.content .link-boxes .input-box{
  margin-right: 55px;
}
.link-boxes .input-box input{
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background: #555;
  border-radius: 20px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
  color: #AFAFB6;
  font-size: 16px;
}
.link-boxes .input-box input[type="submit"]{
  background: #fff;
  color: #555;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="submit"]:hover{
  opacity: 1;
}
footer .bottom-details{
  width: 100%;
  background: #cd7700;
  border-radius: 20px
}
footer .bottom-details .bottom_text{
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 700px){
  footer{
    position: relative;
  }
  .content .top .logo-details{
    font-size: 26px;
  }
  .content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 3 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }
}
@media (max-width: 520px){
  footer::before{
    top: 145px;
  }

  footer .content .top{
    flex-direction: column;
  }
  footer {
    width: 100%
  }
  .content .top .media-icons{
    margin-top: 16px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 100%;
  }
}

/*footer end*/



/* Universal Soft UI Touch */
.card, .services-card, .blog-card, .music-card {
  transition: all 0.3s ease-in-out;
}

.card:hover, .services-card:hover, .blog-card:hover, .music-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Animate fade-up on load */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Clean Button Style */
button, .follow-btn {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover, .follow-btn:hover {
  transform: scale(1.05);

}

.toggle-btn {
  background: #4a90e2;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.organizers-list,
.organizers-grid {
  display: none;
}

.organizers-list.active,
.organizers-grid.active {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.organizers-grid.active {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

/* Bar/List layout */
.organizer-bar {
  background: white;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.organizer-bar img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.organizer-details {
  flex: 1;
}

.organizer-details h3 {
  margin: 0;
  font-size: 1.2rem;
}

.organizer-details p {
  margin: 4px 0;
  font-size: 0.9rem;
  color: #666;
}

.stats {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #555;
}

.view-btn {
  background-color: #4a90e2;
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* Card/Grid layout */
.organizer-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  width: calc(25.4% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5px;
}

.organizer-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.organizer-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.organizer-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 4px 0;
}

.organizer-card .stats {
  font-size: 0.85rem;
  color: #444;
  margin: 4px 0;
}

.organizer-card .view-btn {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .organizer-card {
    width: 100%;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.header h1 {
  font-size: 1.8rem;
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-input {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.toggle-btn {
  background: #4a90e2;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.organizers-list,
.organizers-grid {
  display: none;
}

.organizers-list.active,
.organizers-grid.active {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.organizers-grid.active {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}










@media (max-width: 480px) {

  body{
    margin: 0 10px;
  }

  .mobile-search, .bottom-nav {
    display: flex;
  }

  .mobile-search {
    margin-top: 10px;
    position: relative;
    position: fixed;
  }

  .search-results{
    padding-top: 70px;
    margin-bottom: -70px
  }

  .featured{
    padding-top: 75px
  }


  .slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 20px
  }

  .caption {
    margin-left: -20px
  }

  .btns button {
    width: 45%;
    margin-right: 5px;
  }


  .main-header {
    display: none;
  }


  /* filter Section start*/
  .filter-section {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
  }

  .filter-title {
    font-size: 25px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #333;
  }

  label {
    font-size: 16px;
    margin-bottom: 6px;
    color: #555;
  }

  select, input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }

  .filter-actions {
    margin-top: 20px;
    text-align: right;
  }

  .filter-actions button {
    padding: 15px 30px;
    margin-top: -65px;
    right: 15px;
    font-size: 14px;
    border: 1.5px solid #cd7700;
    background-color: #cd7700;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;

  }

  .filter-actions button:hover {
    background-color: transparent;
    border: 1.5px solid #cd7700;
    color: #cd7700;
  }

  .controller {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px;
    scroll-snap-type: x mandatory;
    max-width: 100%;
    box-sizing: border-box;
  }

  .controller-item {
    flex: 0 0 auto;
    min-width: auto;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
  }

/* filter Section end*/


.events {
  grid-auto-columns: 300px;
  height: auto;
  margin-left: -15px
}

.actionbtn{
  margin-bottom: 5px;
  margin-top: 20px;
}

.bookingbtn{
  background: transparent;
  color: #cd7700;
  border: 1.5px solid #cd7700;
  border-radius: 20px;
  margin-right: 20px;
  padding: 6px 15px;
}

.bookingbtn:hover{
  background: #cd7700;
  border: 1.5px solid #cd7700;
  color: white;
  border-radius: 20px;
  margin-right: 20px;
  padding: 6px 15px;
}

.detailsbtn{
  background: #cd7700;
  color: white;
  border: 1.5px solid #cd7700;
  border-radius: 20px;
  padding: 6px 10px;
}

.detailsbtn:hover{
  background: transparent;
  border: 1.5px solid #cd7700;
  color: #cd7700;
  border-radius: 20px;
  padding: 6px 10px;
}


.card-body {
  padding: 10px;
  margin-top: -15px
}
.card-body h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
}


.card-body p {
  font-size: 0.9em;
  color: #333;
  margin: 15px 0;
}


.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 15px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 600px;
}

.blog-grid::-webkit-scrollbar {
  display: none;
}

.blog-card {
  width: 240px;
  min-width: 240px;
}


.view-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -20px;
  background: white;
  border-radius: 20px
}

.events-section {
  margin-top: -50px;
  margin-bottom: 5px
}



}
