
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior:smooth;
        }

        .flipbook {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(to right, #f5f7fa, #eaeef3);
            display: flex;
            flex: 1 1;
            justify-content: center;
            align-items: center;
		margin-bottom:100px;
            overflow: auto;
            
        }
        
        @media screen and (max-width:1200px){
        .flipbook{
        flex-direction:column;
        }
        
        
        }
        

        .phone-container {
            width: 375px;
            height: 812px;
            background: #000;
            border-radius: 40px;
            padding: 8px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            display: flex;
          flex-direction: column;
            overflow: auto;
            
        }
        
             
 p.role-description{
width:300px;
margin-top:10px;


}
        
        @media screen and (max-width:400px){
                    .phone-container {width: 280px;
            
        }
                .phone-container {
            width: 335px;
            height: 812px;
            background: #000;
            border-radius: 40px;
            padding: 8px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            display: flex;
          flex-direction: column;
            overflow: auto;
            
        }
        
                
 p.role-description{
width:190px;
margin-top:10px;


}
        

.avatar-desc{
width:200px;
}

        
        .flipbook-text{
        margin:50px;
        max-width:150px;
        }
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: #fff;
            border-radius: 32px;
            overflow: hidden;
            position: relative;
                        overflow: auto;

        }

        .status-bar {
            height: 44px;
            background: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            position: relative;
        }

        .role-switcher {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size:25px;
            font-weight:bold;
        }

        .role-dropdown {
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 20px;
            padding: 8px 16px;
            color: white;
          font-size:25px;
            font-weight:bold;
            backdrop-filter: blur(10px);
        }

        .progress-bar {
            height: 4px;
            background: rgba(255,255,255,0.3);
            border-radius: 2px;
            margin-top: 15px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: white;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .step-indicator {
            font-size: 12px;
            opacity: 0.9;
            margin-bottom: 10px;
        }

        .screen-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .screen-subtitle {
            font-size: 14px;
            opacity: 0.9;
        }

        .content {
	  flex: 1 1 auto;
	    min-height:550px; 
            padding: 20px;
            /* overflow-y: auto; */
            /* overflow:auto; */
        }

        .screen {
            display: none;
            flex-direction: column;
            height: 100%;
        }

        .screen.active {
            display: flex;
                        overflow:auto;
        }

.navigation {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  position: sticky;
  bottom: 0;
}


        .nav-btn {
            background: #667eea;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: #5a6fd8;
            transform: translateY(-2px);
        }

        .nav-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .nav-btn.secondary {
            background: transparent;
            color: #667eea;
            border: 2px solid #667eea;
        }

        .nav-btn.secondary:hover {
            background: #667eea;
            color: white;
        }

        .card {
            background: white;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }

        .card h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #333;
        }

        .card p {
            color: #666;
            font-size: 14px;
            line-height: 1.4;
        }

        .venue-card {
            display: flex;
            background: white;
            border-radius: 16px;
            margin-bottom: 16px;
            /* overflow: hidden; */
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }

  
        .venue-info {
            flex: 1;
            padding: 16px;
        }

        .venue-info h4 {
            font-size: 16px;
            margin-bottom: 4px;
            color: #333;
        }

        .venue-info p {
            font-size: 12px;
            color: #666;
            margin-bottom: 8px;
        }

        .venue-price {
            font-size: 14px;
            font-weight: 600;
            color: #667eea;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
        }

        .package-card {
            border: 2px solid #e9ecef;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .package-card:hover {
            border-color: #667eea;
            transform: translateY(-2px);
        }

        .package-card.selected {
            border-color: #667eea;
            background: #f8f9ff;
        }

        .package-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .package-name {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .package-price {
            font-size: 20px;
            font-weight: 700;
            color: #667eea;
        }



        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .summary-row:last-child {
            border-bottom: none;
            font-weight: 600;
            font-size: 18px;
            color: #667eea;
        }

        .event-card {
            background: white;
            border-radius: 16px;
            /* overflow: hidden; */
            margin-bottom: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }

        .event-image {
            height: 120px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            text-align: center;
        }

        .event-info {
            padding: 16px;
        }

        .event-info h4 {
            font-size: 16px;
            margin-bottom: 8px;
            color: #333;
        }

        .event-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: #666;
            margin-bottom: 8px;
        }

        .event-price {
            font-size: 16px;
            font-weight: 600;
            color: #667eea;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        .stat-card {
            background: white;
            padding: 20px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }

        .stat-number {
            font-size: 28px;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 12px;
            color: #666;
        }

        .success-screen {
            text-align: center;
            padding: 40px 20px;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 40px;
            color: white;
        }

        .success-title {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 12px;
        }

        .success-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 24px;
        }

        .benefits-list {
            list-style: none;
            margin: 0;
            padding: 0;
            text-align: left;
        }

        .benefits-list li {
            padding: 8px 0;
            font-size: 14px;
            color: #666;
        }

        .benefits-list li:before {
            content: "✓";
            color: #28a745;
            font-weight: bold;
            margin-right: 12px;
        }

        .filter-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
        }

        .filter-tab {
            padding: 8px 16px;
            border: 1px solid #e9ecef;
            border-radius: 20px;
            font-size: 14px;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-tab.active {
            background: #667eea;
            color: white;
            border-color: #667eea;
        }

        .chat-message {
            background: white;
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }

        .chat-message.sent {
            background: #667eea;
            color: white;
            margin-left: 40px;
        }

        .chat-message.received {
            margin-right: 40px;
        }

        .message-time {
            font-size: 12px;
            opacity: 0.7;
            margin-top: 4px;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
            margin-bottom: 20px;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .calendar-day.booked {
            background: #667eea;
            color: white;
        }

        .calendar-day.available {
            background: #f8f9fa;
            color: #333;
        }

        .calendar-day.available:hover {
            background: #e9ecef;
        }

        .role-host .header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .role-organizer .header { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        .role-venue .header { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
        .role-attendee .header { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

        .role-host .nav-btn { background: #667eea; }
        .role-organizer .nav-btn { background: #f5576c; }
        .role-venue .nav-btn { background: #4facfe; }
        .role-attendee .nav-btn { background: #43e97b; }

        .fab {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            background: #667eea;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .fab:hover {
            transform: scale(1.1);
        }

        .floating-message {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 14px;
            z-index: 1000;
            display: none;
        }

        .floating-message.show {
            display: block;
            animation: fadeInOut 3s ease;
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
            10%, 90% { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        .demo-controls {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 1000;
        }

        .demo-btn {
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .demo-btn:hover {
            background: rgba(0,0,0,0.9);
        }

        .demo-btn.active {
            background: #667eea;
        }
        
        
        

header {
  background: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.role-switcher select {
  padding: 0.5rem;
  font-size: 1rem;
  color:black;
}

.progress-bar-container {
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

#step-label {
  font-weight: bold;
  margin-bottom: 5px;
}

.progress-bar {
  background: #eee;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  background: #4caf50;
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
}

main {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

.screen {
  animation: fadeIn 0.3s ease-in;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background: white;
  border-top: 1px solid #ddd;
}

button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  background: #4caf50;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}



    .card {
      padding: 20px;
      background: #fff;
      margin: 20px auto;
      max-width: 600px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 1rem;
    }
    .editable {
      padding: 0.5rem 1rem;
      background: #f5f5f5;

      margin: 5px 0 15px;
      outline: none;
      border: 1px solid #ddd;
    }
    
.description {
    width: 100%;
    height: 100px;
    display: grid;
    align-items: center;
    word-break: break-word;       /* Force word breaks even in long words */
    overflow-wrap: break-word;    /* Modern and consistent word wrapping */
    white-space: normal;          /* Allow text to wrap */
    overflow: auto;               /* Scroll if too much content */
    resize: none;                 /* Prevent manual resize if needed */
}

   
    .description{
    	width:100%;
    	height:100px;
    	display:grid;
    	align-items:center;
    	word-wrap:break-word;
    	overflow-wrap: break-word;
    }
    
    .form-section {
      margin-bottom: 1rem;
    }
    .form-section label {
      display: block;
      font-weight: bold;
      margin-bottom: 5px;
    }
    .venue-option,
    .organizer-option {
      background: #f1f1f1;
      padding: 0.8rem;
      border-radius: 8px;
      margin: 10px 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .venue-option:hover,
    .organizer-option:hover {
      background: #e0f7e9;
    }
    .venue-option.selected,
    .organizer-option.selected {
      background: #d0f0dd;
      font-weight: bold;
    }
    .selected-icon {
      color: green;
    }
    .checkbox {
      margin: 10px 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .total-cost .editable {
      font-size: 1.2rem;
      font-weight: bold;
      color: #4caf50;
    }
    iframe {
      border: none;
      width: 100%;
      height: 200px;
      border-radius: 8px;
    }
    .small {
      font-size: 0.9em;
      color: #555;
    }
    
    
    
    
  .venue-search-header {
  background: #f9fafb;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 30px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--primary-color);
}

.section-title i {
  margin-right: 8px;
  color: var(--primary-color);
}

.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 16px;
}

.search-bar i {
  color: #9ca3af;
  margin-right: 10px;
}

.search-bar input {
  border: none;
  flex: 1;
  font-size: 15px;
  outline: none;
  color: #111827;
}

.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.filter {
  background: #e0e7ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tag {
  background: #f3f4f6;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #374151;
}

.venue-count {
  font-weight: 500;
  color: #374151;
  font-size: 14px;
}







.venue-card {
  /* margin: 0.8rem; */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  overflow: auto;

  /* height: 4000px; */
  /* position: relative; */
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  flex-wrap:wrap;
}
.venue-card.selected {
  border: 2px solid #4caf50;
    height: 200px;

}

.venue-image img {
  width: 100%;
  height:150px;
  display: block;
  border-bottom: 1px solid #eee;
    object-fit: cover;
  object-position: center; 
  
}

.price-tag {

  background: rgba(0,0,0,0.75);
  color: white;
  padding: 6px 10px;
  font-size: 1rem;

}
.price-tag small {
  display: block;
  font-weight: normal;
}

.venue-meta {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  height: 100px;
}
.subtitle {
  font-size: 0.75rem;
  color: #888;
}
.title {
  font-weight: bold;
  font-size: 1rem;
  margin-top: 3px;
}
.location {
  font-size: 0.8rem;
  color: #666;
  margin-top: 4px;
}
.extras {
  display: flex;
  
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-size: 0.75rem;
}
.badge {
  background: #e0f7e9;
  color: #219653;
  padding: 2px 6px;
  border-radius: 5px;
}
.badge.hot {
  background: #ffe4e1;
  color: #d60000;
}
.people {
  color: #555;
}

.map-button {
  background: #ff0066;
  color: white;
  text-align: center;
  padding: 10px 18px;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 50px;
  width: 80px;
  margin: 1rem auto 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}





.intro-content {
  max-width: 400px;
  margin: 0 auto;
}


.tagline {
  font-size: 16px;
  font-weight: 600;

  margin-bottom: 20px;
}

.mission {
  font-size: 15px;
  color: #444;
  margin-bottom: 24px;
  line-height: 1.6;
}







    .slider-section {
      position: relative;
      width: 100%;
      height: 80vh;
      overflow: hidden;
    }

    .slide {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 100%;
      opacity: 0;
      transition: all 0.8s ease;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: flex-end;
      padding: 40px;
    }

    .slide.active {
      left: 0;
      opacity: 1;
    }

    .overlay-text {
      background: rgba(0, 0, 0, 0.6);
      color: white;
      padding: 20px;
      border-radius: 12px;
      max-width: 400px;
    }

    .overlay-text h1 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .overlay-text p {
      font-size: 16px;
      line-height: 1.5;
    }

    .slide-controls {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 12px;
      height: 12px;
      background: #ccc;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .dot.active {
      background: #667eea;
    }
























.flipbook-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.flipbook-text {
margin:80px;
max-width:50px:
}

.flipbook-text h2 {
  margin-top: 10px;
  font-size: 1.8rem;
  color: #111;
  
}

.flipbook-text p {
  font-size: 1rem;
  color: #555;
}


.hero{
  display: flex;
justify-content: center;
align-items: center;
}

.hero-overlay {
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  animation: fadeInUp 1s ease;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  font-size: 1.1rem;
}

.highlights li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.signup-box {
margin-top:200px;
margin-bottom:100px;
  padding: 1.5rem;
  
  width: 100%;
  opacity:90%;
}

.signup-box h3 {
  font-size: 2.7rem;
  margin-bottom: 1rem;
}

.signup-box span{
width:100%;

}


.signup-box form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signup-box input,
.signup-box select {
  padding: 0.75rem;
  font-size: 1rem;
  border: none;

}

.signup-box button {
            background: #667eea;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;

  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.signup-box button:hover {
  background: #e63946;
}

@media (max-width: 600px) {
  .hero-overlay h1 {
    font-size: 2.2rem;
  }

  .hero-overlay p,
  .highlights {
    font-size: 1rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.flipbook-heading{

text-align:center;
margin: 50px;
font-size:30px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

}


.feature-images{
  object-fit: contain; 
  width: 20px;
  height: 20px;
}





.avatars-grid {
  display: flex;
  justify-content: space-between;
  

}

@media screen and (max-width: 900px) {
.avatars-grid {
  display: flex;
  flex-direction:column;
  justify-content: space-between;

}

}

.avatar-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  color: #333;
  font-size:30px;
  margin:20px;
}

.avatar-label{
font-weight:bold;
}



.avatar-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #eee;
  object-fit: cover;
  margin-bottom: 8px;
}

.social-touch {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-top: 12px;
}

.community h2{
  font-size:60px;
  
}
.subtext{
margin:90px;
font-weight:bold;


}

.community{

  margin: 100px;
  text-align: center;
  display:flex;
  flex-direction:column;
}




/* Media query for responsiveness */
@media (max-width: 680px) {


  .community h2 {
  align-self: center; /* Ensure it's aligned to start */

  }

  .community .subtext {
  align-self: center; /* Ensure it's aligned to start */
  width:150px;
  }
	.hero-overlay{
	padding:0;
	margin:0;
	}
	
	.avatar-desc{
	font-size:20px;
	}

  }





.flip-intro{
margin-bottom:50px;
}

.role-label{
background-color:yellow;

}

.signup-box .sub-text{
margin: 20px 20px 20px 0px;

}










        .intro {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
            z-index: -2;
        }

        .animated-scene {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.3;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }

        .floating-element:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 40%;
            right: 30%;
            animation-delay: 1s;
        }

        .confetti {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #ffd700;
            animation: confetti-fall 3s linear infinite;
        }

        .confetti:nth-child(odd) {
            background: #ff6b6b;
        }

        .confetti:nth-child(even) {
            background: #4ecdc4;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @keyframes confetti-fall {
            0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
            100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
        }

        .intro-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .intro-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .intro-title-1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGlow 2s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            0% { text-shadow: 0 4px 20px rgba(255,255,255,0.3); }
            100% { text-shadow: 0 4px 30px rgba(255,255,255,0.6); }
        }

        .tagline {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0.9;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #ff6b6b, #ffd93d);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255,107,107,0.3);
            margin-bottom: 3rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,107,107,0.4);
        }

        .section {
            padding: 100px 50px;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section h2 {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
		color:black;
        }

        .subtext {
            font-size: 1.3rem;
            text-align: center;
            color: #666;
            margin-bottom: 4rem;
        }
        
        
        
        

        
        
        
        .card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.card p {
  margin: 6px 0 12px;
  font-size: 14px;
  color: #555;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  padding: 0;
  list-style: none;
}
.tag-cloud li {
  background: #f1f1f1;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 13px;
  color: #444;
}
.event-preview-grid {
  display: flex;
  overflow-x: auto;
  gap: 12px;
}
.event-tile {
  min-width: 110px;
  font-size: 13px;
}
.event-tile img {
  width: 100%;
  border-radius: 8px;
}
.event-title {
  font-weight: 600;
  display: block;
  margin-top: 4px;
}
.event-meta {
  font-size: 11px;
  color: #777;
}

.ticket-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.ticket-grid li {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
}
.ticket-grid strong {
  font-size: 16px;
  color: #333;
}
.ticket-grid span {
  display: block;
  margin: 4px 0;
}
.ticket-meta {
  font-size: 11px;
  color: #666;
}
.booking-note {
  background: #fff3cd;
  padding: 10px;
  font-size: 13px;
  color: #856404;
  border-radius: 6px;
  margin-top: 16px;
}





.card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin: 20px auto;
  max-width: 100%;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.card p {
  margin: 6px 0 16px;
  font-size: 14px;
  color: #555;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
}
.tag-cloud li {
  background: #f3f3f3;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  color: #444;
}
.category-heading {
  margin: 20px 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.event-preview-grid {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 8px;
  margin-bottom: 24px;
  scroll-snap-type: x mandatory;
}
.event-tile {
  width: 90px;
  scroll-snap-align: start;
  font-size: 13px;
  flex-shrink: 0;
  background: #fafafa;

  padding: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.event-tile img {
  width: 100%;
  height: auto;

}
.event-title {
  font-weight: 600;
  display: block;
  margin-top: 6px;
}
.event-meta {
  font-size: 11px;
  color: #777;
}




.booking-request-list {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.booking-request-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.preview-highlight div {
  margin-bottom: 0.5rem;
  font-size: 14px;
}



.dashboard-card {
  background: #f9fafc;
  border-radius: 14px;
  padding: 24px;
  margin: 24px auto;
  max-width: 760px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dashboard-header h3 {
  font-size: 22px;
  margin: 0 0 12px;
}
.dashboard-filters {
  display: flex;
  gap: 8px;
}
.filter-btn {
  border: none;
  background: #e5e7eb;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
}
.filter-btn.active {
  background: #4f46e5;
  color: #fff;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.stat-box {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: relative;
}
.stat-icon {
  font-size: 18px;
  margin-bottom: 6px;
}
.stat-info strong {
  font-size: 20px;
  display: block;
  color: #111827;
}
.stat-info span {
  font-size: 13px;
  color: #6b7280;
}
.sparkline {
  width: 100%;
  height: 32px;
  margin-top: 6px;
}



.dashboard-highlights {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.dashboard-highlights li {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 14px;
}
.portfolio-upload{
display:flex;
}
.upload-box {
text-align:center;


  width: 70px;
  height: 70px;
  opacity:80%;
  background: #eaeaea;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 10px;
  font-weight: bold;
  color: #666;
}


.event-benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  font-size: 15px;
  color: #374151;
}
.event-benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.event-benefits-list i {
  color: #4f46e5;
  font-size: 16px;
}
@media (max-width: 600px) {
  .event-benefits-list {
    grid-template-columns: 1fr;
  }
}


.organizer-card {
  font-family: 'Segoe UI', sans-serif;
}
.organizer-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.organizer-option {
  display: flex;
    flex-direction: column;
  align-items: center;
  background: #f9fafb;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease;
}
.organizer-option:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.organizer-option img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}
.organizer-info {
  flex: 1;
  font-size: 14px;
  color: #374151;
}
.organizer-info .price {
  color: #10b981;
  font-weight: 600;
}
.view-btn {
  background: #4f46e5;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.view-btn:hover {
  background: #4338ca;
}
.small {
  font-size: 13px;
  color: #6b7280;
}



.event-create-card {
  background: #ffffff;
  padding: 30px;
  max-width: 760px;
  margin: 40px auto;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
}
.event-header h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
}
.event-header p {
  margin-bottom: 24px;
  color: #6b7280;
  font-size: 14px;
}
.photo-upload-box {
  width: 100%;
  height: 180px;
  background: #f4f4f6;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.upload-label {
  color: #6b7280;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
}
.upload-label i {
  font-size: 20px;
  margin-right: 8px;
}
.event-form-field {
  margin-bottom: 20px;
}
.event-form-field label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #374151;
  font-size: 14px;
}
.editable {
  border: 1px solid #e5e7eb;
  background: #fafafa;
  padding: 12px 14px;
  border-radius: 8px;
  min-height: 44px;
  font-size: 15px;
  line-height: 1.5;
  color: #111827;
}
.editable:focus {
  outline: 2px solid #4f46e5;
  background: #fff;
}
.event-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  font-size: 15px;
  color: #111827;
}
.event-input:focus {
  outline: 2px solid #4f46e5;
  background: #fff;
}
.event-form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.map-container iframe {
  width: 100%;
  height: 220px;
  border-radius: 12px;
}

  .event-form-group {
    grid-template-columns: 1fr;
  }





.comparison-section {
  padding: 2rem;
  max-width: 960px;
  margin: auto;
  font-family: "Inter", sans-serif;
}

.comparison-section h3	 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.legend {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  vertical-align: middle;
}

.green {
  background-color: #4CAF50;
}
.yellow {
  background-color: #FFC107;
}
.red {
  background-color: #F44336;
}

.table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.comparison-table th {
  background-color: #f9f9f9;
  color: #333;
  font-weight: 600;
}

.comparison-table td:first-child {
  text-align: left;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.dot.green {
  background-color: #4CAF50;
}
.dot.yellow {
  background-color: #FFC107;
}
.dot.red {
  background-color: #F44336;
}

    
    @media (min-width: 769px) {
    .ecosystem-canvas {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        height: auto;
        padding: 2rem;
    }

    .ecosystem-node {
        position: static !important;
        transform: none !important;
        animation: float 6s ease-in-out infinite;
        flex: 1 1 300px;
        max-width: 350px;
    }

	

    .flow-indicator {
        display: none;
    }


}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .eco-eco {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: white;


        }


        .ecosystem-section {
            position: relative;
            height: 100%;

            padding: 4rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .ecosystem-header {
            text-align: center;
            margin-bottom: 4rem;
            z-index: 10;
        }

        .ecosystem-heading {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            background: linear-gradient(to left, #fff 0%, #a855f7 10%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .ecosystem-subtext {
            font-size: 1.25rem;
            color: black
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .ecosystem-canvas {
            position: relative;
            width: 100%;
            max-width: 1400px;
            height: 100%;

            margin: 2rem auto;
        }

        .ecosystem-node {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
	
        }

        .ecosystem-node:hover {
            transform: scale(1.05) translateZ(20px);
            background: rgba(168, 85, 247, 0.1);
            border-color: rgba(168, 85, 247, 0.3);
            box-shadow: 
                0 20px 40px rgba(168, 85, 247, 0.2),
                0 0 60px rgba(168, 85, 247, 0.1);
        }

        .node-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: black
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .node-description {
            font-size: 1rem;
            color: black
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .node-earn {
            font-size: 0.9rem;
            color: #10b981;
            font-weight: 600;
            background: rgba(16, 185, 129, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
        }

        .connection-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
            height: 2px;
            border-radius: 1px;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .ecosystem-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 100px;
            border: 2px solid rgba(168, 85, 247, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: ecosystemPulse 4s ease-in-out infinite;
        }

        .ecosystem-pulse::before,
        .ecosystem-pulse::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .ecosystem-pulse::before {
            width: 150px;
            height: 150px;
            animation: ecosystemPulse 4s ease-in-out infinite 1s;
        }

        .ecosystem-pulse::after {
            width: 200px;
            height: 200px;
            animation: ecosystemPulse 4s ease-in-out infinite 2s;
        }

        @keyframes ecosystemPulse {
            0%, 100% {
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(0.8);
            }
            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }

        .flow-indicator {
            position: absolute;
            width: 30px;
            height: 30px;
            background: linear-gradient(45deg, #a855f7, #3b82f6);
            border-radius: 50%;
            animation: flowMove 8s linear infinite;
        }

        @keyframes flowMove {
            0% { 
                transform: translateX(0) translateY(0) scale(0.5);
                opacity: 0;
            }
            10% {
                opacity: 1;
                transform: scale(1);
            }
            90% {
                opacity: 1;
                transform: scale(1);
            }
            100% { 
                opacity: 0;
                transform: scale(0.5);
            }
        }

        /* Node positioning */
        .node-create { 
            top: 10%; 
            left: 5%; 
            width: 280px;
            animation: float 6s ease-in-out infinite;
        }

        .node-discover { 
            top: 15%; 
            right: 15%; 
            width: 300px;
            animation: float 6s ease-in-out infinite 1s;
        }

        .node-monetize { 
            bottom: 25%; 
            left: 10%; 
            width: 290px;
            animation: float 6s ease-in-out infinite 2s;
        }

        .node-grow { 
            bottom: 20%; 
            right: 10%; 
            width: 285px;
            animation: float 6s ease-in-out infinite 3s;
        }

        .node-connect { 
            top: 45%; 
            left: 50%; 
            transform: translateX(-50%);
            width: 320px;
            background: rgba(168, 85, 247, 0.1);
            border-color: rgba(168, 85, 247, 0.2);
            animation: float 6s ease-in-out infinite 0.5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .ecosystem-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .stat-item:nth-child(2) { animation-delay: 0.2s; }
        .stat-item:nth-child(3) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .ecosystem-canvas {
                height: 100%;
                position: relative;
            }
            
            .ecosystem-node {
                position: relative !important;
                width: 100% !important;
                margin-bottom: 2rem;
                transform: none !important;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                bottom: auto !important;
            }
            
            .node-connect {
                transform: none !important;
            }
            
            .ecosystem-pulse,
            .connection-line,
            .flow-indicator {
                display: none;
            }
            
            
            
            
            .ecosystem-stats {
                gap: 2rem;
            }
        }

        .icon {
            width: 24px;
            height: 24px;
            opacity: 0.8;
        }







.site-footer {
  background: #111;
  color: #eee;
  padding: 40px 20px 20px;
  font-family: sans-serif;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-brand {
  flex: 1;
  min-width: 220px;
}

.footer-brand h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.footer-links,
.footer-social {
  flex: 1;
  min-width: 150px;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 12px;

  text-decoration: none;

}

.social-icons a {
  color: #ccc;
  font-size: 18px;
    display: flex;
  text-decoration: none;

}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #333;
  margin-top: 40px;
}
.social-icons i {
display:flex;
  position: static !important;
  align-self:center;
  
}

:root {
  --primary-color: #6c63ff;
  --accent-color: #a58fff;
}
.dashboard-container {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9fb;
}

 h2 {
  font-size: 20px;
  color: var(--primary-color);
}
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}
.quick-actions button {
  padding: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #374151;
}
.quick-actions i {
  font-size: 20px;
  margin-bottom: 4px;
}
.message-organizer {
  display: flex;
  align-items: center;
gap:20px;

  background: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.message-organizer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
      justify-self: center; /* <-- This centers the grid as a block */
  
}
.organizer-info .name {
  font-weight: bold;
  margin-bottom: 4px;
  text-align:center;

}
.organizer-info button {

  padding: 6px 12px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 12px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat-item {
  background: var(--accent-color);
  color: white;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-item i {
  font-size: 20px;
}
.finish-event-container {
  text-align: center;
}
.finish-event-btn {
  padding: 14px 28px;
  background: var(--primary-color);
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 12px;
}
.review-card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.review-header {
  font-weight: bold;
  margin-bottom: 8px;
  color: #374151;
}
.stars i {
  font-size: 22px;
  margin-right: 6px;
  color: #d1d5db;
  cursor: pointer;
}
.stars i.active {
  color: #fbbf24;
}
.review-text {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  min-height: 60px;
  background: #f9fafb;
}




.share-preview {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px;
  gap: 10px;
  margin-top: 12px;
}
.link-info {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 8px;
}
.link-info i {
  font-size: 16px;
  color: #6c63ff;
}
.link-info input {
  border: none;
  background: transparent;
  font-size: 14px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.copy-btn {
  background: var(--primary-color, #6c63ff);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}



.venue-summary {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #f3f4f6;
  padding: 12px;
  border-radius: 12px;
}
.venue-summary img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}
.venue-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.venue-title {
  font-weight: bold;
  font-size: 16px;
}
.venue-location, .venue-capacity {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}
.venue-price {
  font-size: 14px;
  color: #111827;
  font-weight: bold;
}

.extras-card {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.extras-header h3 {
  font-size: 18px;
  margin-bottom: 4px;

}
.extras-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.extra-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  background: #f9fafb;
  padding: 12px;
  border-radius: 10px;
}
.extra-item input {
  transform: scale(1.2);
}
.extra-item i {
  margin-right: 6px;
  color: #6366f1;
}
.extra-item small {
  display: block;
  font-size: 12px;
  color: #6b7280;
}

.cost-summary {
  background: #f3f4f6;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
}
.line-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.line-item.total {
  font-weight: bold;
  font-size: 16px;
  color: #111827;
}
.pay-now-btn {
  background: #4f46e5;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.view-invoice-btn {
  background: transparent;
  color: #4f46e5;
  padding: 12px;
  border: 1px solid #4f46e5;
  border-radius: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}



.organizer-services {
  background: #f9fafb;
  padding: 12px;
  border-radius: 12px;
  margin-top: 16px;
}
.organizer-services h4 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #4f46e5;
}
.organizer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align:center;
}
.organizer-profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.organizer-info {
  display: flex;
  flex-direction: column;
}


.organizer-info .name {
  font-weight: bold;
  text-align:center
  font-size: 14px;
}
.organizer-name {
  font-weight: bold;
  text-align:center
  font-size: 14px;
}
.organizer-role {
  font-size: 13px;
  color: #6b7280;
}



